Bläddra i källkod

独立标签列表修改是否存在于标准术语

zhangxc 6 år sedan
förälder
incheckning
cc2e1606d5
1 ändrade filer med 6 tillägg och 3 borttagningar
  1. 6 3
      src/components/icss/IndeptLabel.vue

+ 6 - 3
src/components/icss/IndeptLabel.vue

@@ -56,10 +56,13 @@
                 </el-table-column>
                 <el-table-column
                     :resizable = "false"
-                    label="标签名称是否存在于标准术语中">
+                    label="是否存在于标准术语中">
                     <template slot-scope="scope">
-                        <span v-if="scope.row.itemType == 0">
-                            {{scope.row.exist ? "已存在" : "未存在"}}
+                        <span v-if="scope.row.itemType == 0 && scope.row.type != 5">
+                            {{scope.row.exist ? "系统名称已存在" : "系统名称未存在"}}
+                        </span>
+                         <span v-if="scope.row.type == 5">
+                            {{scope.row.exist ? "界面名称已存在" : "界面名称未存在"}}
                         </span>
                     </template>
                 </el-table-column>