From ae11615808e7c5fdc541780a687da068cd98386f Mon Sep 17 00:00:00 2001
From: zhaowei <zhaowei>
Date: 星期四, 12 六月 2025 09:53:07 +0800
Subject: [PATCH] 1、调整终端首页功能页面logo图片改为字体图标优化资源获取速度 2、新增终端合格率和程序呼叫页面 3、终端点检页面不再为独立页面,调整为与二保三保页面相同的跳转我的待办页面逻辑 4、终端所有页面完成前后端联调

---
 src/views/tms/modules/outBound/OutboundOrderModal.vue |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/views/tms/modules/outBound/OutboundOrderModal.vue b/src/views/tms/modules/outBound/OutboundOrderModal.vue
index 0f9135b..9d1a4e7 100644
--- a/src/views/tms/modules/outBound/OutboundOrderModal.vue
+++ b/src/views/tms/modules/outBound/OutboundOrderModal.vue
@@ -18,7 +18,7 @@
           </a-col>
           <a-col :span="12">
             <a-form-model-item label="鍑哄簱绫诲瀷" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="outStorehouseType">
-              <j-dict-select-tag :disabled="disableSubmit" @change="handleTypeChange" type="list" v-model="model.outStorehouseType" dictCode="out_storehouse_type" placeholder="璇烽�夋嫨鍑哄簱绫诲瀷" />
+              <j-dict-select-tag :disabled="disableSubmit" @change="handleTypeChange" type="list" v-model="model.outStorehouseType" dictCode="out_storehouse_type" placeholder="璇烽�夋嫨鍑哄簱绫诲瀷" disabled/>
             </a-form-model-item>
           </a-col>
         </a-row>
@@ -346,16 +346,20 @@
               const type = record.outStorehouseType
               switch (type) {
                 case '1':
-                  this.handleTypeChange('1')
+                  this.selectBorrowTool = true
+                  this.selectSharpenTool = false
                   break
                 case '2':
-                  this.handleTypeChange('2')
+                  this.selectBorrowTool = false
+                  this.selectSharpenTool = false
                   break
                 case '3':
-                  this.handleTypeChange('3')
+                  this.selectBorrowTool = false
+                  this.selectSharpenTool = false
                   break
                 case '4':
-                  this.handleTypeChange('4')
+                  this.selectBorrowTool = false
+                  this.selectSharpenTool = true
                   break
               }
             }

--
Gitblit v1.9.3