Browse Source

客户月台

hella_online_20250109
王宇飞 1 month ago
parent
commit
7bb1225933
  1. 3
      src/views/wms/basicDataManage/customerManage/customerdock/index.vue

3
src/views/wms/basicDataManage/customerManage/customerdock/index.vue

@ -191,6 +191,7 @@ const formsSuccess = async (formType,data) => {
if(data.activeTime==0)data.activeTime = null;
if(data.expireTime==0)data.expireTime = null;
basicFormRef.value.formLoading = true
try {
if (formType === 'create') {
await CustomerdockApi.createCustomerdock(data)
message.success(t('common.createSuccess'))
@ -198,7 +199,9 @@ const formsSuccess = async (formType,data) => {
await CustomerdockApi.updateCustomerdock(data)
message.success(t('common.updateSuccess'))
}
} finally {
basicFormRef.value.formLoading = false
}
basicFormRef.value.dialogVisible = false
if (formType === 'create') {
getList()

Loading…
Cancel
Save