This commit is contained in:
jiang 2025-07-13 21:50:36 +08:00
parent 8925513019
commit 4e3b4d8eec
2 changed files with 29 additions and 24 deletions

View File

@ -32,6 +32,11 @@ function queryTable(type) {
}
}
function reloadData2() {
table.reload("currentTableId", {})
}
// 刷新页面数据
function reloadData() {
reloadTable(1);

View File

@ -524,6 +524,6 @@ function check() {
function closePage() {
let index = parent.layer.getFrameIndex(window.name); // 先得到当前 iframe层的索引
window.parent.queryTable(1);
window.parent.reloadData2();
parent.layer.close(index); // 再执行关闭
}