diff --git a/src/views/basic/workplace/addWorkplaceFreightDialog.vue b/src/views/basic/workplace/addWorkplaceFreightDialog.vue index 085a8f48..f6059de4 100644 --- a/src/views/basic/workplace/addWorkplaceFreightDialog.vue +++ b/src/views/basic/workplace/addWorkplaceFreightDialog.vue @@ -17,7 +17,7 @@ @@ -190,7 +190,7 @@ export default { formData: { code: '', name: '', - remark: '', + remark: null, workPlaceIdFk: '', freightRow: null, isSingQueue: 1 @@ -343,8 +343,9 @@ export default { } row.freightCode = this.formData.code row.workPlaceIdFk = this.formData.workPlaceIdFk - row.remark = this.formData.remark + row.name = this.formData.name row.isSingQueue = this.formData.isSingQueue + row.freightRow = this.formData.freightRow this.remarkStatus = true saveLayer(row).then(res => { if (res.code == 20000){ diff --git a/src/views/basic/workplace/editWorkPlaceQueueDialog.vue b/src/views/basic/workplace/editWorkPlaceQueueDialog.vue index a1418ef4..0c391ef6 100644 --- a/src/views/basic/workplace/editWorkPlaceQueueDialog.vue +++ b/src/views/basic/workplace/editWorkPlaceQueueDialog.vue @@ -265,6 +265,7 @@ export default { mac:"", isBind: 0, }, + ledList:[] } }, methods: { diff --git a/src/views/basic/workplace/freightManage.vue b/src/views/basic/workplace/freightManage.vue index f778a72e..f27b0adf 100644 --- a/src/views/basic/workplace/freightManage.vue +++ b/src/views/basic/workplace/freightManage.vue @@ -34,7 +34,7 @@ > @@ -272,7 +272,8 @@ export default { page: 1, limit: 5, workPlaceIdFk: '', - key: '' + key: '', + code: null, // code: null, // workplaceStatus: 1, // workPlaceClass: 2, @@ -300,6 +301,8 @@ export default { queueTotal: 0, WorkplaceFreightDialogVisible: false, WorkplaceQueueDialogVisible: false, + freightCode: null, + layerCode: null, } }, methods: { @@ -368,10 +371,14 @@ export default { }, handChangeFreight(row) { this.LayerQuery.freightCode = row.code + this.freightCode = row.code + this.queueQuery.layerCode = null + this.layerCode = null this.getLayers() }, handChangeLayer(row) { this.queueQuery.layerCode = row.code + this.layerCode = row.code this.getQueues() }, handleEdit(row) { @@ -464,9 +471,7 @@ export default { }).then(() => { deleteQueue(row).then(res => { if (res.code == 20000){ - this.getList() - this.getLayers() - this.getQueues() + this.getFreightList() this.$message.success("删除成功") }else { this.$message.error("删除失败") @@ -491,7 +496,7 @@ export default { }).then(() => { deleteLayer(query).then(res => { if (res.code == 20000){ - this.getList() + this.getFreightList() this.$message.success("删除成功") }else { this.$message.error(res.message) @@ -500,8 +505,35 @@ export default { }).catch(() => { }) - - + }, + getFreightList(){ + getWorkplaceFreightList(this.query).then(res => { + if (res.code == 20000) { + this.freightList = res.data.list || [] + this.total = res.data.total || 0 + this.LayerQuery.freightCode = this.freightCode + this.getLayerList() + } else { + this.total = 0 + this.freightList = [] + } + }) + }, + getLayerList(){ + getLayerList(this.LayerQuery).then(res => { + if (res.code == 20000) { + this.layerList = res.data.list || [] + this.LayerTotal = res.data.total + console.log("shsjhshshs",this.layerCode) + if (this.layerCode != null){ + this.queueQuery.layerCode = this.layerCode + } + this.getQueues() + } else { + this.LayerTotal = 0 + this.layerList = [] + } + }) } }, created() { diff --git a/src/views/collect/ioSplitFifoCodeRemindSetDialog.vue b/src/views/collect/ioSplitFifoCodeRemindSetDialog.vue index cb8a84b0..091a8912 100644 --- a/src/views/collect/ioSplitFifoCodeRemindSetDialog.vue +++ b/src/views/collect/ioSplitFifoCodeRemindSetDialog.vue @@ -55,10 +55,10 @@ @@ -135,5 +135,11 @@ export default {