소스 검색

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

zhangxc 6 년 전
부모
커밋
cc2e1606d5
1개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  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>