diff --git a/src/views/system/Basis/index.vue b/src/views/system/Basis/index.vue index 0a5b541b..19b12fee 100644 --- a/src/views/system/Basis/index.vue +++ b/src/views/system/Basis/index.vue @@ -424,10 +424,11 @@ const form = reactive({ ]; 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));