This commit is contained in:
姚宇浩 2024-06-12 09:02:50 +08:00
parent 56eea01e9e
commit 3a58e67845
1 changed files with 3 additions and 2 deletions

View File

@ -755,7 +755,7 @@ const showDialog = (title, url) => {
tableType.title = title; tableType.title = title;
tableType.url = url; tableType.url = url;
tableType.columns = columnss[title]; tableType.columns = columnss[title];
getTable(url, pagination.currentPage); getTable(url, pagination.currentPage);
}; };
@ -764,7 +764,8 @@ const close = () => {
dialogShowEc.value = false; dialogShowEc.value = false;
dialogShowTab.value = false; dialogShowTab.value = false;
pagination.currentPage = 1; pagination.currentPage = 1;
pagination.total=100; pagination.total = 100;
tableType.title = "";
}; };
// //
const showDialog2 = (title, url) => { const showDialog2 = (title, url) => {