From cb547704c15730e7d46b20b3c846b4af10e582f6 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Mon, 8 Jan 2024 19:39:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=85=E5=A4=84=E7=90=86=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/aftersales/aftersalesWorkOrder.vue | 12 ++------- .../aftersales/aftersalesWorkOrderAdd.vue | 27 ++++++++++++++----- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/src/views/aftersales/aftersalesWorkOrder.vue b/src/views/aftersales/aftersalesWorkOrder.vue index cd5b1bc8..22e728bd 100644 --- a/src/views/aftersales/aftersalesWorkOrder.vue +++ b/src/views/aftersales/aftersalesWorkOrder.vue @@ -1954,21 +1954,13 @@ const tabChenge = val => { // 待处理 console.log(UserPermissions.value, '当前身份'); console.log('待处理'); - if (UserPermissions.value == '仓库客服') { ProcessingPartyState.value = true; //开启处理方 - data.workOrderStatus = 10; - details.query.workOrderStatus = 10; - ArbitrationStatus.value = true; //可以申请仲裁 - Tableheaderswitching(columnList); - empty(); - IndexTable(data); - } else { data.workOrderStatus = 500; details.query.workOrderStatus = 500; + ArbitrationStatus.value = true; //可以申请仲裁 Tableheaderswitching(columnList); empty(); - IndexTable(); - } + IndexTable(data); } else if (val == 4) { ProcessingPartyState.value = false; //关闭处理方 // 理赔金额未出 diff --git a/src/views/aftersales/aftersalesWorkOrderAdd.vue b/src/views/aftersales/aftersalesWorkOrderAdd.vue index a360775f..57e759a8 100644 --- a/src/views/aftersales/aftersalesWorkOrderAdd.vue +++ b/src/views/aftersales/aftersalesWorkOrderAdd.vue @@ -754,8 +754,10 @@ const onLoad = () => { Paymentmethod.value = res.data.data; }); - Indexform.value.discoveryNode='1' + Indexform.value.discoveryNode='1'//默认发现节点 groundlineType.value =Indexform.value.discoveryNode + Indexform.value.workOrderType='1'//默认一个异常类型 + SelectType.value=Indexform.value.workOrderType }; onLoad(); //初始化程序 @@ -821,11 +823,11 @@ const abnormalChange = val => { SelectType.value = null; } // 运损无数据默认0 - if (val == 1) { - Indexform.value.packageCode = 0; - } else { - Indexform.value.packageCode = null; - } + // if (val == 1) { + // Indexform.value.packageCode = 0; + // } else { + // Indexform.value.packageCode = null; + // } }; // 发现节点事件 @@ -1882,4 +1884,17 @@ const isShowFormItem2 = computed(() => { width: 100% !important; } } +.el_tool { + display: flex; + align-items: center; + font-size: 16px; + font-weight: bold; + span { + font-size: 14px; + border: 1px solid #ccc; + padding: 4px 20px; + color: #30316e; + font-weight: normal; + } +}