-
提交
@@ -149,7 +149,8 @@ export default {
let nowDate = new Date(time).getTime();
return (nowDate > endDate);
}
- }
+ },
+ updateOrderInfoLoading: false
};
},
components: {},
@@ -207,13 +208,16 @@ export default {
auditTime: this.auditTime,
orderIds: [this.filterQuery.orderId]
};
+ this.updateOrderInfoLoading = true
updateOrderInfo(params).then((res) => {
+ this.updateOrderInfoLoading = false
if (res.code === 20000) {
this.$message.success("修改成功");
this.getList();
this.getOrderList();
}
}).catch((error) => {
+ this.updateOrderInfoLoading = false
this.$message.error(error.message);
})
},
diff --git a/src/views/inout/muti/ioOrderMutiAuditDialog.vue b/src/views/inout/muti/ioOrderMutiAuditDialog.vue
index 9dae2d6e..6f79fbd3 100644
--- a/src/views/inout/muti/ioOrderMutiAuditDialog.vue
+++ b/src/views/inout/muti/ioOrderMutiAuditDialog.vue
@@ -3,8 +3,8 @@
- 审核通过
- 审核拒绝
+ 审核通过
+ 审核拒绝
@@ -130,6 +130,8 @@ export default {
fromInvOptions: [],
busTypes: [],
detailList: [],
+ passLoading: false,
+ noPassLoading: false,
}
},
methods: {
@@ -182,7 +184,17 @@ export default {
id:this.pId,
status:status
}
+ if (status === 2){
+ this.passLoading = true
+ }else {
+ this.noPassLoading = true
+ }
auditMuti(query).then((response) => {
+ if (status === 2){
+ this.passLoading = false
+ }else {
+ this.noPassLoading = false
+ }
if (response.code == 20000) {
this.closeDialog()
} else {
diff --git a/src/views/inout/muti/ioOrderMutiEditDialog.vue b/src/views/inout/muti/ioOrderMutiEditDialog.vue
index 99b8af44..6512d204 100644
--- a/src/views/inout/muti/ioOrderMutiEditDialog.vue
+++ b/src/views/inout/muti/ioOrderMutiEditDialog.vue
@@ -3,8 +3,8 @@
- 草稿保存
- 立即提交
+ 草稿保存
+ 立即提交
@@ -166,6 +166,8 @@ export default {
nextTime: '',// 上次时间、最新时间
lastCode: '',
nextCode: '',// 上次按键、最新按键
+ draftLoading: false,
+ submitLoading: false,
}
},
mounted() {
@@ -403,7 +405,17 @@ export default {
totalCount: this.inputQuery.totalCount,
status: status
}
+ if (status === 0){
+ this.draftLoading = true
+ }else {
+ this.submitLoading = true
+ }
updateOrderMuti(query).then((response) => {
+ if (status == 0){
+ this.draftLoading = false
+ }else {
+ this.submitLoading = false
+ }
if (response.code == 20000) {
this.closeDialog()
} else {
diff --git a/src/views/inout/muti/ioOrderMutiSetDialog.vue b/src/views/inout/muti/ioOrderMutiSetDialog.vue
index cec6134d..077be564 100644
--- a/src/views/inout/muti/ioOrderMutiSetDialog.vue
+++ b/src/views/inout/muti/ioOrderMutiSetDialog.vue
@@ -174,7 +174,7 @@
取消
- 提交
+ 提交
@@ -220,6 +220,7 @@ export default {
},
fromInvOptions: [],
busTypes: [],
+ submitLoading: false,
}
},
methods: {
@@ -267,8 +268,10 @@ export default {
this.$message.error("生成单据类型不能为空!");
return
}
+ this.submitLoading = true
if(this.formName==1){
addMuti(this.inputQuery).then((response) => {
+ this.submitLoading = false
if(response.code == 20000){
this.closeDialog();
}else{
@@ -277,10 +280,12 @@ export default {
})
.catch(() => {
+ this.submitLoading = false
this.$message.error("添加失败");
});
}else{
updateMuti(this.inputQuery).then((response) => {
+ this.submitLoading = false
if(response.code == 20000){
this.closeDialog();
}else{
@@ -289,6 +294,7 @@ export default {
})
.catch(() => {
+ this.submitLoading = false
this.$message.error("添加失败");
});
}