fix: 优化标签保存ico回显

This commit is contained in:
XieYongHong 2023-06-09 17:51:55 +08:00
parent 3e6eac1bfa
commit 16a748b67c
1 changed files with 3 additions and 2 deletions

View File

@ -424,10 +424,11 @@ const form = reactive<formType>({
];
save_api(params)
.then((resp) => {
.then(async (resp) => {
if (resp.status === 200) {
message.success('保存成功');
form.getDetails();
await system.getSystemConfig()
await form.getDetails();
}
})
.finally(() => (form.saveLoading = false));