Browse Source

线索管理标签展示调整

qymljy 9 months ago
parent
commit
a3d57eb00d
1 changed files with 2 additions and 11 deletions
  1. 2 11
      src/HManagement/clueManage/clue_private/index.vue

+ 2 - 11
src/HManagement/clueManage/clue_private/index.vue

@@ -158,9 +158,9 @@
           </span>
         </div>
         <div v-else-if="scope.data.column.columnname === 'alltag'">
-          <div v-if="scope.data.column.data.sys_tag">
+          <div v-if="scope.data.column.data.alltag && scope.data.column.data.alltag.length > 0">
             <div
-              v-for="item in scope.data.column.data.sys_tag"
+              v-for="item in scope.data.column.data.alltag"
               :key="item.index"
               style="float: left; margin-left: 5px; margin-bottom: 5px"
             >
@@ -168,15 +168,6 @@
                 <span>{{ $t(item) }}</span>
               </el-tag>
             </div>
-            <div
-              v-for="item in scope.data.column.data.tag"
-              :key="item.index"
-              style="float: left; margin-left: 5px; margin-bottom: 5px"
-            >
-              <el-tag color="#FA8C16" size="mini" type="warning" effect="dark">
-                <span>{{ $t(item) }}</span>
-              </el-tag>
-            </div>
           </div>
           <div v-else>--</div>
         </div>