|
29 | 29 | </ContentWrap>
|
30 | 30 | <ContentWrap>
|
31 | 31 | <el-table v-loading="loading" :data="list" :show-overflow-tooltip="true" :stripe="true">
|
32 |
| - <el-table-column align="center" label="编号" prop="id" /> |
33 |
| - <el-table-column align="center" label="客户名称" prop="name" width="160"> |
| 32 | + <el-table-column align="center" label="客户名称" fixed="left" prop="name" width="160"> |
34 | 33 | <template #default="scope">
|
35 | 34 | <el-link :underline="false" type="primary" @click="openDetail(scope.row.id)">
|
36 | 35 | {{ scope.row.name }}
|
37 | 36 | </el-link>
|
38 | 37 | </template>
|
39 | 38 | </el-table-column>
|
40 |
| - <el-table-column align="center" label="手机" prop="mobile" width="120" /> |
41 |
| - <el-table-column align="center" label="电话" prop="telephone" width="120" /> |
42 | 39 | <el-table-column align="center" label="客户来源" prop="source" width="100">
|
43 | 40 | <template #default="scope">
|
44 | 41 | <dict-tag :type="DICT_TYPE.CRM_CUSTOMER_SOURCE" :value="scope.row.source" />
|
45 | 42 | </template>
|
46 | 43 | </el-table-column>
|
47 |
| - <el-table-column align="center" label="所属行业" prop="industryId" width="120"> |
| 44 | + <el-table-column label="手机" align="center" prop="mobile" width="120" /> |
| 45 | + <el-table-column label="电话" align="center" prop="telephone" width="130" /> |
| 46 | + <el-table-column label="邮箱" align="center" prop="email" width="180" /> |
| 47 | + <el-table-column align="center" label="客户级别" prop="level" width="135"> |
48 | 48 | <template #default="scope">
|
49 |
| - <dict-tag :type="DICT_TYPE.CRM_CUSTOMER_INDUSTRY" :value="scope.row.industryId" /> |
| 49 | + <dict-tag :type="DICT_TYPE.CRM_CUSTOMER_LEVEL" :value="scope.row.level" /> |
50 | 50 | </template>
|
51 | 51 | </el-table-column>
|
52 |
| - <el-table-column align="center" label="客户级别" prop="level" width="120"> |
| 52 | + <el-table-column align="center" label="客户行业" prop="industryId" width="100"> |
53 | 53 | <template #default="scope">
|
54 |
| - <dict-tag :type="DICT_TYPE.CRM_CUSTOMER_LEVEL" :value="scope.row.level" /> |
| 54 | + <dict-tag :type="DICT_TYPE.CRM_CUSTOMER_INDUSTRY" :value="scope.row.industryId" /> |
55 | 55 | </template>
|
56 | 56 | </el-table-column>
|
57 |
| - <el-table-column align="center" label="网址" prop="website" width="200" /> |
58 | 57 | <el-table-column
|
59 | 58 | :formatter="dateFormatter"
|
60 | 59 | align="center"
|
|
63 | 62 | width="180px"
|
64 | 63 | />
|
65 | 64 | <el-table-column align="center" label="备注" prop="remark" width="200" />
|
| 65 | + <el-table-column align="center" label="锁定状态" prop="lockStatus"> |
| 66 | + <template #default="scope"> |
| 67 | + <dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.lockStatus" /> |
| 68 | + </template> |
| 69 | + </el-table-column> |
66 | 70 | <el-table-column align="center" label="成交状态" prop="dealStatus">
|
67 | 71 | <template #default="scope">
|
68 | 72 | <dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.dealStatus" />
|
69 | 73 | </template>
|
70 | 74 | </el-table-column>
|
71 |
| - <el-table-column align="center" label="距进入公海天数" prop="poolDay" width="100px" /> |
72 | 75 | <el-table-column
|
73 | 76 | :formatter="dateFormatter"
|
74 | 77 | align="center"
|
75 | 78 | label="最后跟进时间"
|
76 | 79 | prop="contactLastTime"
|
77 | 80 | width="180px"
|
78 | 81 | />
|
| 82 | + <el-table-column align="center" label="最后跟进记录" prop="contactLastContent" width="200" /> |
| 83 | + <el-table-column label="地址" align="center" prop="detailAddress" width="180" /> |
| 84 | + <el-table-column align="center" label="距离进入公海天数" prop="poolDay" width="140"> |
| 85 | + <template #default="scope"> {{ scope.row.poolDay }} 天</template> |
| 86 | + </el-table-column> |
| 87 | + <el-table-column align="center" label="负责人" prop="ownerUserName" width="100px" /> |
| 88 | + <el-table-column align="center" label="所属部门" prop="ownerUserDeptName" width="100px" /> |
79 | 89 | <el-table-column
|
80 | 90 | :formatter="dateFormatter"
|
81 | 91 | align="center"
|
82 |
| - label="创建时间" |
| 92 | + label="更新时间" |
83 | 93 | prop="updateTime"
|
84 | 94 | width="180px"
|
85 | 95 | />
|
|
90 | 100 | prop="createTime"
|
91 | 101 | width="180px"
|
92 | 102 | />
|
93 |
| - <el-table-column align="center" label="负责人" prop="ownerUserName" width="100px" /> |
94 |
| - <el-table-column align="center" label="所属部门" prop="ownerUserDeptName" width="100px" /> |
95 | 103 | <el-table-column align="center" label="创建人" prop="creatorName" width="100px" />
|
96 | 104 | </el-table>
|
97 | 105 | <!-- 分页 -->
|
|
0 commit comments