1、修复基础配置

2、修复业务模块
3、拆分页面代码
This commit is contained in:
2026-09-03 03:31:30 +08:00
parent 008ec7a6a8
commit 6f0f1842cb
25 changed files with 22346 additions and 192 deletions
+3 -3
View File
@@ -201,7 +201,7 @@ export default {
},
onLoad() {
this.loading = true;
getList(this.page.currentPage, this.page.pageSize, this.query)
return getList(this.page.currentPage, this.page.pageSize, this.query)
.then(res => {
const pageData = res.data.data || {};
this.data = pageData.records || [];
@@ -268,10 +268,10 @@ export default {
this.mappingRows.map(item => ({ key: item.key, value: String(item.value || '').trim() }))
),
})
.then(() => {
.then(async () => {
this.$message.success('操作成功');
this.dialogVisible = false;
this.onLoad();
await this.onLoad();
})
.finally(() => {
this.submitLoading = false;