From 7b17415516e9a840b60f6076cb742d51140dac08 Mon Sep 17 00:00:00 2001 From: PigBaoBei <2739175034@qq.com> Date: Mon, 18 Dec 2023 16:06:06 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=BE=85=E7=AD=BE=E6=94=B6=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E5=A2=9E=E5=8A=A0=E6=9C=AA=E8=A3=85=E8=BD=A6=E3=80=81?= =?UTF-8?q?=E6=9C=AA=E7=AD=BE=E6=94=B6=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../signfor/distributionSignfortreat.vue | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/views/distribution/signfor/distributionSignfortreat.vue b/src/views/distribution/signfor/distributionSignfortreat.vue index b3dd590c..c7a8eead 100644 --- a/src/views/distribution/signfor/distributionSignfortreat.vue +++ b/src/views/distribution/signfor/distributionSignfortreat.vue @@ -814,9 +814,29 @@ export default { fixed: false, sortable: true, }, + { + prop: 'unloadedNumber', + label: '未装车件数', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'receivedQuantity', - label: '司机签收数', + label: '签收件数', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'unreceivedQuantity', + label: '未签收件数', type: 1, values: '', width: '130', From f82627b16ed5b267ee62c98560f9ada220bc8a43 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Mon, 18 Dec 2023 17:42:21 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/distribution/artery/AddVehicleStowage.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/distribution/artery/AddVehicleStowage.vue b/src/views/distribution/artery/AddVehicleStowage.vue index 9eb6aa70..620308b9 100644 --- a/src/views/distribution/artery/AddVehicleStowage.vue +++ b/src/views/distribution/artery/AddVehicleStowage.vue @@ -947,7 +947,7 @@ onLoad(); /** 查询仓库 */ const remoteMethod = async val => { - if (!val) return; + // if (!val) return; const res = await postFindWarehouseListByName({ warehouseName: val }); const { code, data } = res.data; if (code !== 200) return; @@ -955,6 +955,8 @@ const remoteMethod = async val => { console.log('res :>> ', res); }; +remoteMethod(''); + /** 目的仓选择时给目的仓名称赋值 */ const destinationWarehouseNameChange = (val, index) => { const _value = details.options.find(value => value.warehouseId === val); @@ -1287,7 +1289,7 @@ const remoteMethodCar = async val => { if (code !== 200) return; details.carListByName = data; }; -remoteMethodCar('') +remoteMethodCar(''); /** 修改计划数 */ const handleEditplanNum = ({ row }, item) => {