From 1715e9ec75cfffea1e902e0f648e263cd18e3ceb Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期四, 09 五月 2024 10:42:03 +0800 Subject: [PATCH] 优化样品管理 --- src/components/view/b1-inspect-order-plan.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/view/b1-inspect-order-plan.vue b/src/components/view/b1-inspect-order-plan.vue index 874f946..867b6f1 100644 --- a/src/components/view/b1-inspect-order-plan.vue +++ b/src/components/view/b1-inspect-order-plan.vue @@ -132,7 +132,7 @@ <el-col :span="21"> <div style="display: flex;align-items: center;margin-bottom: 10px;"> <ul class="tab"> - <li v-for="(m,i) in tabList" :key="i" :class="{active:i==tabIndex}" @click="handleTab(m,i)">{{m.label}} + <li v-for="(m,i) in tabList" :key="i" :class="{active:i==tabIndex}" @click="handleTab(m,i)">{{m.label.replace('璇曢獙瀹�','')}} </li> </ul> <div> @@ -229,7 +229,7 @@ type: 'text', method: 'handleInspection', disabFun: (row, index) => { - return row.userId == null || row.insState == 3 + return row.userId == null || row.insState == 3 || row.insState == 5 } }, { id: '', @@ -237,7 +237,7 @@ type: 'text', method: 'handleConnect', disabFun: (row, index) => { - return row.userId == null || row.insState == 3 + return row.userId == null || row.orderUserId == null || row.insState == 5 || row.insState == 3 } }, { @@ -245,9 +245,9 @@ font: '澶嶆牳', type: 'text', method: 'handleReview', - disabFun: (row, index) => { + /* disabFun: (row, index) => { return row.userId == null || row.insState != 3 - } + } */ }, { id: '', font: '璁ら', -- Gitblit v1.9.3