From 487c8f5caeaefbc38faadca66467e8aed8d9ffbe Mon Sep 17 00:00:00 2001
From: value <z1292839451@163.com>
Date: 星期一, 06 五月 2024 21:26:53 +0800
Subject: [PATCH] 标准库修复完成

---
 src/components/view/b2-standard.vue |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/components/view/b2-standard.vue b/src/components/view/b2-standard.vue
index 9a40c74..5398949 100644
--- a/src/components/view/b2-standard.vue
+++ b/src/components/view/b2-standard.vue
@@ -78,7 +78,7 @@
   }
 
   .standard .has-gutter .el-table__cell .cell {
-    line-height: 38px;
+    line-height: 34px;
     background-color: #f8f8f8;
   }
 
@@ -114,7 +114,7 @@
         style="height:calc(100% - 30px);overflow-y: scroll;scrollbar-width: none;">
         <div class="custom-tree-node" slot-scope="{ node, data }">
           <el-row style="width: 100%;">
-            <el-col :span="21" :class="{sort:node.level>3}">
+            <el-col :span="21" :class="{sort:node.level>3}" :title="data.label">
               <span><i
                   :class="`node_i ${data.children != undefined ? 'el-icon-folder-opened' : 'el-icon-tickets'}`"></i>
                 {{ data.code }} {{ data.label }}</span>
@@ -142,9 +142,9 @@
         <!-- </el-col> -->
       </el-row>
       <el-row class="standard_table" v-loading="tableLoad">
-        <el-table class="el-table" :data="standardList" style="width: 100%;height: 220px !important;overflow-y: auto;"
+        <el-table class="el-table" :data="standardList" style="width: 100%;" height="220"
           tooltip-effect="dark" highlight-current-row @row-click="rowClick" ref="standard">
-          <el-table-column prop="code" label="鏍囧噯缂栧彿" show-overflow-tooltip width="180">
+          <el-table-column prop="code" label="鏍囧噯缂栧彿" show-overflow-tooltip width="200">
             <template slot-scope="scope">
               <span style="color: red;font-size: 14px;">{{scope.row['code']}}</span>
             </template>
@@ -166,6 +166,7 @@
           @select="upProductSelect" @select-all="handleAll">
           <el-table-column type="selection" width="65">
           </el-table-column>
+          <el-table-column prop="model" label="鍨嬪彿" min-width="120" show-overflow-tooltip></el-table-column>
           <el-table-column prop="inspectionItem" label="妫�楠岄」" min-width="140" show-overflow-tooltip></el-table-column>
           <!-- <el-table-column prop="inspectionItemClassify" label="妫�楠岄」绫诲瀷" width="120" show-overflow-tooltip></el-table-column> -->
           <el-table-column prop="inspectionItemSubclass" label="妫�楠岄」瀛愰」" min-width="140"

--
Gitblit v1.9.3