Browse Source

HL-5891@王宇飞 报错提示时 loading 取消

hella_online_20240911
yufei_wang 2 months ago
parent
commit
122150dc5d
  1. 3
      src/views/wms/basicDataManage/supplierManage/supplieritem/index.vue

3
src/views/wms/basicDataManage/supplierManage/supplieritem/index.vue

@ -196,6 +196,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') {
if(routeName.value.includes('SCP')){
await SupplieritemApi.createSupplieritemSCP(data)
@ -211,7 +212,9 @@ const formsSuccess = async (formType,data) => {
}
message.success(t('common.updateSuccess'))
}
} finally {
basicFormRef.value.formLoading = false
}
basicFormRef.value.dialogVisible = false
if (formType === 'create') {
getList()

Loading…
Cancel
Save