From f2a71081064aeba4ef8afddef5a5e4acebf29cb4 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Mon, 6 Jan 2025 14:17:46 +0800 Subject: [PATCH] =?UTF-8?q?1/6=20=E4=BA=A7=E5=93=81=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E5=B1=9E=E4=BA=8E=E5=8D=95=E4=BA=A7=E5=93=81=E6=A7=BD=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../workplace/addWorkplaceFreightDialog.vue | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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){