diff --git a/src/views/basic/workplace/addWorkplaceFreightDialog.vue b/src/views/basic/workplace/addWorkplaceFreightDialog.vue index a4a499af..98802588 100644 --- a/src/views/basic/workplace/addWorkplaceFreightDialog.vue +++ b/src/views/basic/workplace/addWorkplaceFreightDialog.vue @@ -44,6 +44,15 @@ + + + + + + + + @@ -171,7 +180,8 @@ export default { code: '', name: '', remark: '', - workPlaceIdFk: '' + workPlaceIdFk: '', + isSingQueue: 1 }, freightData: null, workPlaces: [], @@ -226,6 +236,9 @@ export default { }) }, formSubmit() { + if (this.layerList.length == 0){ + return this.$message.error("请增加摆货层") + } if(this.layerList.length > 0){ let layerData = this.layerList[this.layerList.length - 1] if (layerData.queueNum == null || layerData.queueNum == 0){ @@ -319,6 +332,7 @@ export default { row.freightCode = this.formData.code row.workPlaceIdFk = this.formData.workPlaceIdFk row.remark = this.formData.remark + row.isSingQueue = this.formData.isSingQueue this.remarkStatus = true saveLayer(row).then(res => { if (res.code == 20000){