Skip to content

Commit 7448f6e

Browse files
committed
📖 CRM:【客户】微调客户列表界面
1 parent 0a4023e commit 7448f6e

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

src/views/crm/customer/CustomerForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<el-date-picker
122122
v-model="formData.contactNextTime"
123123
placeholder="选择下次联系时间"
124-
type="date"
124+
type="datetime"
125125
value-format="x"
126126
/>
127127
</el-form-item>

src/views/crm/customer/index.vue

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -101,58 +101,62 @@
101101
</el-link>
102102
</template>
103103
</el-table-column>
104-
<el-table-column align="center" label="所属行业" prop="industryId" width="120">
104+
<el-table-column align="center" label="手机" prop="mobile" width="120" />
105+
<el-table-column align="center" label="电话" prop="telephone" width="120" />
106+
<el-table-column align="center" label="客户来源" prop="source" width="100">
105107
<template #default="scope">
106-
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_INDUSTRY" :value="scope.row.industryId" />
108+
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_SOURCE" :value="scope.row.source" />
107109
</template>
108110
</el-table-column>
109-
<el-table-column align="center" label="客户来源" prop="source" width="100">
111+
<el-table-column align="center" label="所属行业" prop="industryId" width="120">
110112
<template #default="scope">
111-
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_SOURCE" :value="scope.row.source" />
113+
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_INDUSTRY" :value="scope.row.industryId" />
112114
</template>
113115
</el-table-column>
114116
<el-table-column align="center" label="客户等级" prop="level" width="120">
115117
<template #default="scope">
116118
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_LEVEL" :value="scope.row.level" />
117119
</template>
118120
</el-table-column>
119-
<el-table-column align="center" label="手机" prop="mobile" width="120" />
120-
<el-table-column align="center" label="详细地址" prop="detailAddress" width="200" />
121-
<el-table-column align="center" label="负责人" prop="ownerUserName" />
122-
<el-table-column align="center" label="所属部门" prop="ownerUserDeptName" />
123-
<el-table-column align="center" label="创建人" prop="creatorName" />
121+
<el-table-column align="center" label="网址" prop="website" width="200" />
124122
<el-table-column
125123
:formatter="dateFormatter"
126124
align="center"
127-
label="创建时间"
128-
prop="createTime"
125+
label="下次联系时间"
126+
prop="contactNextTime"
129127
width="180px"
130128
/>
129+
<el-table-column align="center" label="备注" prop="remark" width="200" />
131130
<el-table-column align="center" label="成交状态" prop="dealStatus">
132131
<template #default="scope">
133132
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.dealStatus" />
134133
</template>
135134
</el-table-column>
135+
<!-- TODO @puhui999:距进入公海天数 -->
136136
<el-table-column
137137
:formatter="dateFormatter"
138138
align="center"
139-
label="下次联系时间"
140-
prop="contactNextTime"
139+
label="最后跟进时间"
140+
prop="contactLastTime"
141141
width="180px"
142142
/>
143143
<el-table-column
144144
:formatter="dateFormatter"
145145
align="center"
146-
label="最后跟进时间"
147-
prop="contactLastTime"
146+
label="创建时间"
147+
prop="updateTime"
148148
width="180px"
149149
/>
150-
<el-table-column align="center" label="锁定状态" prop="lockStatus">
151-
<template #default="scope">
152-
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.lockStatus" />
153-
</template>
154-
</el-table-column>
155-
<!-- TODO @wanwan 距进入公海天数 -->
150+
<el-table-column
151+
:formatter="dateFormatter"
152+
align="center"
153+
label="创建时间"
154+
prop="createTime"
155+
width="180px"
156+
/>
157+
<el-table-column align="center" label="负责人" prop="ownerUserName" width="100px" />
158+
<el-table-column align="center" label="所属部门" prop="ownerUserDeptName" width="100px" />
159+
<el-table-column align="center" label="创建人" prop="creatorName" width="100px" />
156160
<el-table-column align="center" fixed="right" label="操作" min-width="150">
157161
<template #default="scope">
158162
<el-button

0 commit comments

Comments
 (0)