From 91b29346f4e60d23467563ace7145ca4ac031477 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Thu, 7 Mar 2024 19:20:58 +0800 Subject: [PATCH] =?UTF-8?q?=E9=83=A8=E5=88=86=E8=A1=A8=E6=A0=BC=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E8=A1=A8=E6=A0=BC=E5=88=B7=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SelectBox/SelectBox.vue | 5 - src/components/tablecmt/tablecmt.vue | 25 ++++ src/utils/util.js | 18 ++- src/views/aftersales/aftersalesWorkOrder.vue | 112 ++++++++--------- src/views/basic/coderule/basicTenantCode.vue | 72 ++++++----- src/views/basic/forklift/basicForklift.vue | 114 ++++++++++-------- .../distribution/artery/AddVehicleStowage.vue | 93 ++++++-------- .../artery/TripartiteTransfer.vue | 7 +- .../artery/TripartiteTransferDetails.vue | 5 +- .../artery/VehicleArrivalManagement.vue | 22 ++-- .../distribution/artery/VehicleStowage.vue | 70 ++++++----- .../artery/VehicleStowageDetails.vue | 1 + .../artery/addTripartiteTransfer.vue | 22 ++-- .../distribution/artery/directGoMarket.vue | 44 +++---- .../artery/directGoMarketDetails.vue | 8 +- .../artery/handleLoadingDestination.vue | 1 + .../artery/truckLoadingDetails.vue | 8 +- .../artery/zeroAdditionalRecording.vue | 27 +---- .../distribution/inventory/CreateOrder.vue | 45 +------ .../addArteryDistrilbutionBillLadingList.vue | 4 +- .../arteryDistrilbutionBillLadingList.vue | 57 ++++----- 21 files changed, 364 insertions(+), 396 deletions(-) diff --git a/src/components/SelectBox/SelectBox.vue b/src/components/SelectBox/SelectBox.vue index c695fd6d..76e9deda 100644 --- a/src/components/SelectBox/SelectBox.vue +++ b/src/components/SelectBox/SelectBox.vue @@ -21,9 +21,6 @@ " v-if="isShowBox" > -
> ', props); - className.value = props.className || ''; const selectBox = ref(null); diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 0a07c08f..a2e3fce2 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -44,6 +44,12 @@ class="mx-1" > + + , + required: false, + default: true, + }, }); /** 勾选数据统计 */ const selectCount = ref([]); @@ -491,6 +502,8 @@ function makeCargo(value, column: TableColumnType) { emit('makeCargo', value, column); } function inputchange(value, column: TableColumnType) { + console.log('value :>> ', value); + console.log('column :>> ', column); if (typeof value == 'string') { emit('inputTxt', value, column); } @@ -673,6 +686,18 @@ function copyContent(content: string) { } } +const handleRefresh = () => { + for (let i = 0; i < newcolumnList.value.length; i++) { + const item = newcolumnList.value[i]; + + item.values = ''; + + if (item.type === 2 || item.type === 13) emit('inputTxt', item.values, item); + else if (item.type === 3) emit('selectCheck', item.values, item); + else if (item.type === 4) emit('timeCheck', item.values, item); + } +}; + defineExpose({ handleCheckSelect, handleClearSelect });