2/27 界面 优化1.3

20240912_adapter
wangwei 1 month ago
parent c1723588e6
commit c6be3d3ec0

@ -1746,19 +1746,28 @@ export default {
} }
this.saveLoading = true this.saveLoading = true
if (this.orderFormData.billNo != null) { if (this.orderFormData.billNo != null) {
deleteByOrderId(tQuery).then((response) => { this.$confirm('是否确定取消此次上货?', '提示', {
this.saveLoading = false confirmButtonText: '确定',
if (response.code === 20000) { cancelButtonText: '取消',
this.$message.success('放弃成功') type: 'warning'
this.successCloseData() }).then(() => {
this.result = '' deleteByOrderId(tQuery).then((response) => {
this.$refs.inputRef.focus() this.saveLoading = false
} else { if (response.code === 20000) {
this.$message.error(response.message) this.$message.success('取消上货成功')
} this.successCloseData()
this.loading = false this.result = ''
this.saveLoading = false this.$refs.inputRef.focus()
} else {
this.$message.error(response.message)
}
this.loading = false
this.saveLoading = false
})
}).catch(() => {
}) })
} else { } else {
this.successCloseData() this.successCloseData()
this.result = '' this.result = ''

@ -585,7 +585,6 @@ export default {
selectPrescribeDialog, selectPrescribeDialog,
prescribeCodePanel, prescribeCodePanel,
PanelOrderManuTagCode, prescribeOriginPanel, PanelOrderManuTagCode, prescribeOriginPanel,
PannelOrderBiz,
DialogCreateOrderSelect, DialogCreateOrderSelect,
PanelOrderAllDetail PanelOrderAllDetail
}, },

@ -47,7 +47,7 @@
<el-button size="mini" type="primary" @click.native="delOrder()" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="delOrder()" :loading="submitLoading"
style="margin-right: 8px;border-radius: 5%;" v-show="isLinkDisabled" style="margin-right: 8px;border-radius: 5%;" v-show="isLinkDisabled"
:disabled="orderFormData.billNo == null && curQueueName == '' " :disabled="orderFormData.billNo == null && curQueueName == '' "
>放弃 >取消上货
</el-button> </el-button>
<!--<el-button size="mini" type="primary" @click.native="draftOrder()" :loading="submitLoading"--> <!--<el-button size="mini" type="primary" @click.native="draftOrder()" :loading="submitLoading"-->
<!-- v-show="isLinkDisabled" style="margin-right: 8px;border-radius: 5%;"--> <!-- v-show="isLinkDisabled" style="margin-right: 8px;border-radius: 5%;"-->
@ -1746,25 +1746,36 @@ export default {
} }
this.saveLoading = true this.saveLoading = true
if (this.orderFormData.billNo != null) { if (this.orderFormData.billNo != null) {
deleteByOrderId(tQuery).then((response) => { this.$confirm('是否确定取消此次上货?', '提示', {
this.saveLoading = false confirmButtonText: '确定',
if (response.code === 20000) { cancelButtonText: '取消',
this.$message.success('放弃成功') type: 'warning'
this.successCloseData() }).then(() => {
this.result = '' deleteByOrderId(tQuery).then((response) => {
this.$refs.inputRef.focus() this.saveLoading = false
} else { if (response.code === 20000) {
this.$message.error(response.message) this.$message.success('取消上货成功')
} this.successCloseData()
this.loading = false this.result = ''
this.saveLoading = false this.$refs.inputRef.focus()
} else {
this.$message.error(response.message)
}
this.loading = false
this.saveLoading = false
})
}).catch(() => {
}) })
} else { } else {
this.successCloseData() this.successCloseData()
this.result = '' this.result = ''
this.$refs.inputRef.focus() this.$refs.inputRef.focus()
} }
this.sharedData = 'over'
// over tabs
EventBus.$emit('update-data', { message: this.sharedData });
}, },
// //
resetForm() { resetForm() {

Loading…
Cancel
Save