全部清空仍可提交bug

20240912_adapter
zane 6 months ago
parent 3fe00231f8
commit 7c69829a27

@ -266,6 +266,7 @@
:refreshPanel="refreshCodesPanel"
:viewType="viewType"
v-if="isCodeDetailAlive"
@clearBillNo="clearBillNo"
></codeDetailPanel>
</el-tab-pane>
<el-tab-pane label="扫码明细" v-if="viewCodeDetailVisible">
@ -1345,7 +1346,6 @@ export default {
this.isBizDetailAlive = false;
this.isCodeDetailAlive = false;
this.isSickerAlive = false;
this.$nextTick(() => {
//
this.isCodeAlive = true;
@ -1364,6 +1364,12 @@ export default {
});
}
},
// billNo
clearBillNo(data) {
if(data){
this.orderFormData.billNo = null;
}
},
refreshOrder(orderQuery) {
this.orderFormData = orderQuery;
@ -1667,19 +1673,19 @@ export default {
}else {
tQuery.inoutType = 1
}
saveOrderWeb(tQuery).then((response) => {
this.saveLoading = false
if (response.code === 20000) {
this.$message.success("保存成功")
this.successCloseData()
this.result = ""
this.$refs.inputRef.focus();
} else {
this.$message.error(response.message);
}
this.loading = false;
this.saveLoading = false
});
// saveOrderWeb(tQuery).then((response) => {
// this.saveLoading = false
// if (response.code === 20000) {
// this.$message.success("")
// this.successCloseData()
// this.result = ""
// this.$refs.inputRef.focus();
// } else {
// this.$message.error(response.message);
// }
// this.loading = false;
// this.saveLoading = false
// });
},
//
resetForm() {

@ -99,6 +99,7 @@ export default {
this.detailList = response.data.list || [];
this.total = response.data.total || 0;
this.loading = false;
this.$emit('clearBillNo', this.detailList.length > 0? false : true);
})
.catch(() => {
this.loading = false;

Loading…
Cancel
Save