fix: 优化标签保存ico回显
This commit is contained in:
parent
3e6eac1bfa
commit
16a748b67c
|
@ -424,10 +424,11 @@ const form = reactive<formType>({
|
||||||
];
|
];
|
||||||
|
|
||||||
save_api(params)
|
save_api(params)
|
||||||
.then((resp) => {
|
.then(async (resp) => {
|
||||||
if (resp.status === 200) {
|
if (resp.status === 200) {
|
||||||
message.success('保存成功');
|
message.success('保存成功');
|
||||||
form.getDetails();
|
await system.getSystemConfig()
|
||||||
|
await form.getDetails();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.finally(() => (form.saveLoading = false));
|
.finally(() => (form.saveLoading = false));
|
||||||
|
|
Loading…
Reference in New Issue