|
|
@@ -392,7 +392,11 @@
|
|
|
</el-popover>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="企微客户名称" prop="name" width="110px"/>
|
|
|
+ <el-table-column label="企微客户名称" prop="name" width="130px" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <external-contact-name-cell :row="scope.row" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="客户称呼" prop="stageStatus" width="110px"/>
|
|
|
<el-table-column label="销售企微昵称" align="center" prop="qwUserName" width="120px"/>
|
|
|
<el-table-column label="企微部门" align="center" prop="departmentName" width="120px"/>
|
|
|
@@ -436,8 +440,6 @@
|
|
|
<dict-tag :options="statusOptions" :value="scope.row.status"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="管理状态" align="center" prop="manageStatusName" width="120px" />
|
|
|
- <el-table-column label="管理备注" align="center" prop="manageRemark" min-width="150px" show-overflow-tooltip />
|
|
|
<el-table-column label="客户等级" align="center" prop="level" width="120px" >
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="ratingType" :value="scope.row.level"/>
|
|
|
@@ -1079,12 +1081,13 @@ import {docList} from "@/api/doctor/doctor";
|
|
|
import PaginationMore from "../../../components/PaginationMore/index.vue";
|
|
|
import Collection from './collection.vue';
|
|
|
import RepeatCourseHistoryDrawer from './RepeatCourseHistoryDrawer.vue';
|
|
|
+import ExternalContactNameCell from './ExternalContactNameCell.vue';
|
|
|
import {courseList, videoList} from "@/api/course/courseRedPacketLog";
|
|
|
import userDetails from '@/views/store/components/userDetails.vue';
|
|
|
import { updateFsUserRedStatus } from '@/api/user/fsUser'
|
|
|
export default {
|
|
|
name: "ExternalContact",
|
|
|
- components:{PaginationMore, mycustomer,customerDetails,SopDialog,selectUser,info,Collection,userDetails,RepeatCourseHistoryDrawer},
|
|
|
+ components:{PaginationMore, mycustomer,customerDetails,SopDialog,selectUser,info,Collection,userDetails,RepeatCourseHistoryDrawer,ExternalContactNameCell},
|
|
|
data() {
|
|
|
return {
|
|
|
member:{
|