|
@@ -127,6 +127,26 @@
|
|
|
<el-table-column label="添加日期" align="center" prop="createTime" width="180"/>
|
|
|
<el-table-column label="添加时间" align="center" prop="crtTime" width="180"/>
|
|
|
<el-table-column label="修改时间" align="center" prop="updateTime" width="180"/>
|
|
|
+ <el-table-column label="官方群发许可" align="center" prop="fsUserId" width="70">
|
|
|
+ <!-- 表头提示 -->
|
|
|
+ <template slot="header">
|
|
|
+ <el-tooltip effect="dark" content="即点过小程序链接的,通过插件助手发过一次课,且客户观看了的" placement="top">
|
|
|
+ <span>官方群发许可</span>
|
|
|
+ </el-tooltip>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!-- 单元格提示 -->
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tooltip
|
|
|
+ effect="dark"
|
|
|
+ :content="`通过插件助手发过一次课,且客户观看了的`"
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <el-tag v-if="scope.row.fsUserId > 0" type="success">是</el-tag>
|
|
|
+ <el-tag v-else type="danger">否</el-tag>
|
|
|
+ </el-tooltip>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="120" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-button-->
|