{
+ this.onAddLoading = false
if (response.code == 20000) {
this.getList();
this.cancelDialog();
@@ -2524,6 +2528,7 @@ export default {
}
})
.catch(() => {
+ this.onAddLoading = false
this.cancelDialog();
});
},
diff --git a/src/views/basic/product/productAdd.vue b/src/views/basic/product/productAdd.vue
index f28f6c81..16483883 100644
--- a/src/views/basic/product/productAdd.vue
+++ b/src/views/basic/product/productAdd.vue
@@ -162,7 +162,7 @@
- 提交
+ 提交
取消
@@ -205,6 +205,7 @@ export default {
},
thirdSys: [],
classifyList: [],
+ saveLoading: false,
}
},
@@ -279,8 +280,9 @@ export default {
this.$message.warning('产品属性不能为空!')
return
}
-
+ this.saveLoading = true
addProduct(this.newProductData).then((res) => {
+ this.saveLoading = false
if (res.code == 20000) {
this.$message.success('添加成功')
//清空弹窗数据
@@ -289,6 +291,7 @@ export default {
this.$message.error(res.message)
}
}).catch((error) => {
+ this.saveLoading = false
this.$message.error(error.message)
})
},
diff --git a/src/views/basic/product/productCategory.vue b/src/views/basic/product/productCategory.vue
index cd5b1030..1a159f6f 100644
--- a/src/views/basic/product/productCategory.vue
+++ b/src/views/basic/product/productCategory.vue
@@ -519,6 +519,7 @@
提交
@@ -1574,6 +1575,7 @@ export default {
limit: 20,
zczbhhzbapzbh: null,
},
+ subLoading: false,
};
},
filters: {},
@@ -1797,8 +1799,10 @@ export default {
this.$message.error("名称不能为空!");
return
}
+ this.subLoading = true
if (this.subData.id != null) {
uodateBasicHospType(this.subData).then((response) => {
+ this.subLoading = false
if (response.code == 20000) {
this.subFormVisible = false;
this.getTerrList();
@@ -1806,10 +1810,12 @@ export default {
this.$message.error(response.message);
}
}).catch(() => {
+ this.subLoading = false
this.subFormVisible = false;
});
} else {
saveBasicHospType(this.subData).then((response) => {
+ this.subLoading = false
if (response.code == 20000) {
this.subFormVisible = false;
this.getTerrList();
@@ -1817,6 +1823,7 @@ export default {
this.$message.error(response.message);
}
}).catch(() => {
+ this.subLoading = false
this.subFormVisible = false;
});
}
diff --git a/src/views/basic/product/productEdit.vue b/src/views/basic/product/productEdit.vue
index 5f453366..5b2d8ea2 100644
--- a/src/views/basic/product/productEdit.vue
+++ b/src/views/basic/product/productEdit.vue
@@ -739,7 +739,7 @@
>
- 提交
{
+ this.addLoading = false
if (response.code == 20000) {
let ttquery = {
id: this.relevanceEdit.id
@@ -983,6 +986,7 @@ export default {
}
})
.catch(() => {
+ this.addLoading = false
this.cancelDialog();
});
},
diff --git a/src/views/basic/product/productUdiType.vue b/src/views/basic/product/productUdiType.vue
index 37f54eda..ac7e713f 100644
--- a/src/views/basic/product/productUdiType.vue
+++ b/src/views/basic/product/productUdiType.vue
@@ -92,6 +92,7 @@
提交
@@ -193,6 +194,7 @@ export default {
subTotal: 0,
sysList: [],
sysSubList: [],
+ submitLoading: false,
};
},
methods: {
@@ -266,7 +268,9 @@ export default {
return
}
if(this.subData.id!=null){
+ this.submitLoading = true
uodateBasicHospType(this.subData).then((response) => {
+ this.submitLoading = false
if (response.code == 20000) {
this.subFormVisible = false;
this.getList();
@@ -274,6 +278,7 @@ export default {
this.$message.error(response.message);
}
}).catch(() => {
+ this.submitLoading = false
this.subFormVisible = false;
});
}else{
diff --git a/src/views/inventory/inner/innerOrderEditDialog.vue b/src/views/inventory/inner/innerOrderEditDialog.vue
index 0d7636b7..2fd6d654 100644
--- a/src/views/inventory/inner/innerOrderEditDialog.vue
+++ b/src/views/inventory/inner/innerOrderEditDialog.vue
@@ -6,7 +6,7 @@
提交单据
@@ -184,6 +184,7 @@ export default {
pId:null,
billNo:null,
loading: false,
+ saveLoading: false,
index: null,
formLoading: false,
formVisible: false,
@@ -236,6 +237,7 @@ export default {
}
}
if (status == "1") {
+ this.saveLoading = true
this.submitFunction(status);
} else {
if (this.codeArray.length < 1) {
@@ -271,6 +273,9 @@ export default {
}
inserThrOrderWeb(tQuery)
.then(response => {
+ if (status == '1'){
+ this.saveLoading = false
+ }
this.loading = false;
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
@@ -280,6 +285,9 @@ export default {
}
})
.catch(() => {
+ if (status == '1'){
+ this.saveLoading = false
+ }
this.loading = false;
})
},
diff --git a/src/views/inventory/inner/innerOrderSelectProduct.vue b/src/views/inventory/inner/innerOrderSelectProduct.vue
index ba209aea..8b8db378 100644
--- a/src/views/inventory/inner/innerOrderSelectProduct.vue
+++ b/src/views/inventory/inner/innerOrderSelectProduct.vue
@@ -54,7 +54,7 @@
显示/隐藏搜索栏
重置
查询
- 确定
+ 确定
@@ -114,7 +114,7 @@
@@ -225,6 +225,7 @@ export default {
dialogFormVisible: false,
multipleSelection: null,
nameCode:null,
+ commitLoding:false
};
},
@@ -347,7 +348,9 @@ export default {
supId: this.multipleSelection.customerId,
zczbhhzbapzbh: this.multipleSelection.zczbhhzbapzbh
};
+ this.commitLoding = true
addOrderDetail(tQuery).then((response) => {
+ this.commitLoding = false
this.loading = false;
if (response.code === 20000) {
this.closeDialog(response.data);
@@ -360,6 +363,7 @@ export default {
this.$message.error(response.message);
}
}).catch(() => {
+ this.commitLoding = false
this.loading = false;
});
diff --git a/src/views/thirdSys/busType/index.vue b/src/views/thirdSys/busType/index.vue
index d223b1cc..6b4191f4 100644
--- a/src/views/thirdSys/busType/index.vue
+++ b/src/views/thirdSys/busType/index.vue
@@ -80,7 +80,7 @@
>