|
@@ -505,6 +505,20 @@
|
|
|
<span v-else class="no-tags">暂无标签</span>
|
|
<span v-else class="no-tags">暂无标签</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column label="是否添加客服" align="center" prop="isAdd">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-tag
|
|
|
|
|
+ :type="scope.row.isAdd === 1 ? 'success' : 'info'"
|
|
|
|
|
+ :style="{
|
|
|
|
|
+ backgroundColor: scope.row.isAdd === 1 ? '#67C23A' : '#909399',
|
|
|
|
|
+ color: '#fff',
|
|
|
|
|
+ border: 'none'
|
|
|
|
|
+ }"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ scope.row.isAdd === 1 ? '已添加' : '未添加' }}
|
|
|
|
|
+ </el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
<el-button
|