|
@@ -110,15 +110,15 @@
|
|
|
<!-- <el-table-column label="客户小程序id" align="center" prop="fsUserId" width="100">-->
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
<!-- <el-tag type="success">-->
|
|
|
-<!-- {{ scope.row.fsUserId === 0 || scope.row.fsUserId === null ? '无' : scope.row.fsUserId }}-->
|
|
|
+<!-- {{ scope.row.fsUserId === 0 || scope.row.fsUserId === null ? '无' : scope.row.fsUserId }}-->
|
|
|
<!-- </el-tag>-->
|
|
|
<!-- </template>-->
|
|
|
<!-- </el-table-column>-->
|
|
|
<el-table-column label="客户名称" align="center" prop="externalUserName" />
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
- <el-table-column label="客户标签" align="center" prop="tagIdsName" width="250px">
|
|
|
+ <el-table-column label="客户标签" align="center" prop="tagIds" width="240">
|
|
|
<template slot-scope="scope">
|
|
|
- <div v-for="name in scope.row.tagNames" v-if="scope.row.tagNames" style="display: inline;">
|
|
|
+ <div v-for="name in scope.row.tagIdsName" v-if="scope.row.tagIdsName && scope.row.tagIdsName.length > 0 && scope.row.tagIdsName[0] != '无标签'" style="display: inline;">
|
|
|
<el-tag type="success">{{ name }}</el-tag>
|
|
|
</div>
|
|
|
<div v-else>
|
|
@@ -157,7 +157,7 @@
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
<el-table-column label="客户标签" align="center" prop="tagIds" width="240">
|
|
|
<template slot-scope="scope">
|
|
|
- <div v-for="name in scope.row.tagNames" v-if="scope.row.tagNames" style="display: inline;">
|
|
|
+ <div v-for="name in scope.row.tagNames" v-if="scope.row.tagNames && scope.row.tagNames.length > 0 && scope.row.tagNames[0] != '无标签'" style="display: inline;">
|
|
|
<el-tag type="success">{{ name }}</el-tag>
|
|
|
</div>
|
|
|
<div v-else>
|