From 2c5e31d16b00f56f28c8be410994e783653d51fb Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Mon, 29 Apr 2024 18:31:38 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E7=9B=98=E7=82=B9=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../distribution/checkInventoryTask/createTask.vue | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/views/distribution/checkInventoryTask/createTask.vue b/src/views/distribution/checkInventoryTask/createTask.vue index 4375aa07..19a120a4 100644 --- a/src/views/distribution/checkInventoryTask/createTask.vue +++ b/src/views/distribution/checkInventoryTask/createTask.vue @@ -715,7 +715,6 @@ import { downloadXls } from '@/utils/util'; import { getDictionaryBiz } from '@/api/system/dict'; import { ref, reactive } from 'vue'; import { off } from 'dom7'; -import { template } from '@antfu/utils'; const wLinput = ref(null); //物料编码搜索框 const wLinputState = ref(false); //标记是否显示下拉框 const SoInfoData = ref({}); //搜索框参数 @@ -771,7 +770,6 @@ const Statusjudgment = ref(false); //新增按钮 const DbEx = ref(null); //对比明细导出 const fullScreen = ref(false); //是否全屏 const BatchAbandonment = ref([]); //首页废弃 -const templateRwo = ref() /** loading */ const loadingObj = reactive({ /** 页面loading */ @@ -1592,16 +1590,16 @@ const InInputSo = (values, val) => { // 搜索框 const InputSo = val => { - console.log(val,'val==>'); TcPdloading.value = true; + console.log(val, '搜索框接收的值'); let data = {}; console.log(row.value, 'row.value'); data.current = TccurrentPage.value; data.size = TcpageSize.value; let dataS = { - questNum: templateRwo.value.questNum, - questId: templateRwo.value.id, + questNum: UncountedDetails.value.questNum, + questId: UncountedDetails.value.id, current: TccurrentPage.value, //页码 size: TcpageSize.value, //条数 [val.prop]: val.values, @@ -1843,8 +1841,6 @@ const TcViewEvent = (val, Inso) => { }; // 点击详情按钮 const ViewEvent = val => { - console.log(val,'val'); - templateRwo.value =val DiskStatus.value = true; //表示当前在已盘点列表 InventoryDetails.value.forEach(item => { item.values = null; @@ -1853,6 +1849,7 @@ const ViewEvent = val => { TccurrentPage.value = 1; //重置页码 NotCounted.value = false; //关闭未盘点 row.value = val; + UncountedDetails.value = val; PopupDetails.value = true; TcPdloading.value = true; console.log(val, '明细'); From 033417abc2f8094f674aa8241e65037778607b40 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Mon, 29 Apr 2024 20:27:41 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../aftersales/aftersalesWorkOrderAddTemp.vue | 118 ++++++++++++++++-- 1 file changed, 110 insertions(+), 8 deletions(-) diff --git a/src/views/aftersales/aftersalesWorkOrderAddTemp.vue b/src/views/aftersales/aftersalesWorkOrderAddTemp.vue index 5c76d0ff..9ca90ac8 100644 --- a/src/views/aftersales/aftersalesWorkOrderAddTemp.vue +++ b/src/views/aftersales/aftersalesWorkOrderAddTemp.vue @@ -47,6 +47,7 @@ placeholder="请选择发现节点" style="width: 100%" @change="DiscoveringNodesChange" + clearable > - + +
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ 移除 +
+
@@ -362,7 +434,7 @@ import { deepClone } from '@/utils/util'; const form = ref({ TabactiveName: '0', //工单类型菜单 activPackage: '0', //包件信息菜单 - responsibilities:'0',//内部责任菜单 + responsibilities: '0', //内部责任菜单 Pageloading: false, //页面加载 Packageloading: false, //包件加载 historydialog: false, //历史包件弹窗 @@ -381,10 +453,8 @@ const form = ref({ }, ], //历史包件列表 Historicalpackage: [], -// 内部责任划分 - responsibilitiesList:[ - - ], + // 内部责任划分 + responsibilitiesList: [], }); const ruleForm = reactive({ workOrderType: [{ required: true, message: '请选择异常类型', trigger: 'bulr' }], @@ -670,9 +740,41 @@ const TabactiveClick = (a, b) => { .el_Processing { width: 39.6%; } - .el_Investigation { + :deep(.el_Investigation) { flex: 1; } + :deep(.is-error) { + .el-input--suffix { + .el-textarea__inner:focus { + box-shadow: 0 0 0 1px #ff0000 inset !important; + } + } + } + } +} +.responsibilities { + .el_responsibilities { + display: flex; + align-items: center; + .el-form-item { + width: 12.8%; + margin-right: 10px; + .el-input-number { + width: 100%; + } + } + :deep(.el_responsibilities_box) { + display: flex; + width: 80%; + .el-form-item { + .el-form-item__label { + margin-bottom: 0; + } + } + .el_Investigation { + flex: 1; + } + } } } From c9fa6a0ef4c44da56f7e43250f0eda39eb179ef4 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Mon, 29 Apr 2024 21:34:40 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Pricesystem/Price/PriceTrunkLine.vue | 3 +- .../artery/truckLoadingDetails.vue | 11 +- .../distribution/inventory/CreateOrder.vue | 13 +- .../Financialse/FinancialBill.vue | 49 ++++- .../Financialse/FinancialTrunkLine.vue | 37 +++- src/views/waybill/CreateZeroOrder.vue | 13 +- src/views/waybill/orderPackageList.vue | 208 +++++++++++++----- 7 files changed, 247 insertions(+), 87 deletions(-) diff --git a/src/views/Pricesystem/Price/PriceTrunkLine.vue b/src/views/Pricesystem/Price/PriceTrunkLine.vue index baa85d24..4a74b55b 100644 --- a/src/views/Pricesystem/Price/PriceTrunkLine.vue +++ b/src/views/Pricesystem/Price/PriceTrunkLine.vue @@ -168,7 +168,8 @@ - + {{ item.label }} @@ -148,8 +144,6 @@ v-if="details.form.pickupIsMinCost === '1'" label-width="150px" label="最低计费类型" - prop="pickupMinCostType" - :rules="[{ required: true, message: '请选择最低计费类型', trigger: ['blur', 'change'] }]" >