1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
| import type { VbenFormSchema } from '#/adapter/form';
| import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
| import { DICT_TYPE } from '..\..\..\..\packages\constants\src';
| import { getDictOptions } from '..\..\..\..\packages\effects\hooks\src';
| import { useUserStore } from '..\..\..\..\packages\stores\src';
| import {
| beginOfDay,
| endOfDay,
| erpCalculatePercentage,
| formatDateTime,
| handleTree,
| } from '..\..\..\..\packages\utils\src';
|
| import { getSimpleDeptList } from '#/api/system/dept';
| import { getSimpleUserList } from '#/api/system/user';
| import { getRangePickerDefaultProps } from '#/utils';
|
| const userStore = useUserStore();
|
| export const customerSummaryTabs = [
| {
| tab: '客户总量分析',
| key: 'customerSummary',
| },
| {
| tab: '客户跟进次数分析',
| key: 'followUpSummary',
| },
| {
| tab: '客户跟进方式分析',
| key: 'followUpType',
| },
| {
| tab: '客户转化率分析',
| key: 'conversionStat',
| },
| {
| tab: '公海客户分析',
| key: 'poolSummary',
| },
| {
| tab: '员工客户成交周期分析',
| key: 'dealCycleByUser',
| },
| {
| tab: '地区客户成交周期分析',
| key: 'dealCycleByArea',
| },
| {
| tab: '产品客户成交周期分析',
| key: 'dealCycleByProduct',
| },
| ];
|
| /** 列表的搜索表单 */
| export function useGridFormSchema(): VbenFormSchema[] {
| return [
| {
| fieldName: 'times',
| label: '时间范围',
| component: 'RangePicker',
| componentProps: {
| ...getRangePickerDefaultProps(),
| },
| defaultValue: [
| formatDateTime(beginOfDay(new Date(Date.now() - 3600 * 1000 * 24 * 7))),
| formatDateTime(endOfDay(new Date(Date.now() - 3600 * 1000 * 24))),
| ],
| },
| {
| fieldName: 'interval',
| label: '时间间隔',
| component: 'Select',
| componentProps: {
| allowClear: true,
| placeholder: '请选择时间间隔',
| options: getDictOptions(DICT_TYPE.DATE_INTERVAL, 'number'),
| },
| defaultValue: 2,
| },
| {
| fieldName: 'deptId',
| label: '归属部门',
| component: 'ApiTreeSelect',
| componentProps: {
| api: async () => {
| const data = await getSimpleDeptList();
| return handleTree(data);
| },
| labelField: 'name',
| valueField: 'id',
| childrenField: 'children',
| treeDefaultExpandAll: true,
| placeholder: '请选择归属部门',
| },
| defaultValue: userStore.userInfo?.deptId,
| },
| {
| fieldName: 'userId',
| label: '员工',
| component: 'ApiSelect',
| componentProps: {
| api: getSimpleUserList,
| labelField: 'nickname',
| valueField: 'id',
| placeholder: '请选择员工',
| allowClear: true,
| },
| },
| ];
| }
|
| /** 列表的字段 */
| export function useGridColumns(
| activeTabName: any,
| ): VxeTableGridOptions['columns'] {
| switch (activeTabName) {
| case 'conversionStat': {
| return [
| {
| type: 'seq',
| title: '序号',
| },
| {
| field: 'customerName',
| title: '客户名称',
| minWidth: 100,
| },
| {
| field: 'contractName',
| title: '合同名称',
| minWidth: 200,
| },
| {
| field: 'totalPrice',
| title: '合同总金额',
| minWidth: 200,
| formatter: 'formatAmount2',
| },
| {
| field: 'receivablePrice',
| title: '回款金额',
| minWidth: 200,
| formatter: 'formatAmount2',
| },
| {
| field: 'source',
| title: '客户来源',
| minWidth: 100,
| cellRender: {
| name: 'CellDict',
| props: { type: DICT_TYPE.CRM_CUSTOMER_SOURCE },
| },
| },
| {
| field: 'industryId',
| title: '客户行业',
| minWidth: 100,
| cellRender: {
| name: 'CellDict',
| props: { type: DICT_TYPE.CRM_CUSTOMER_INDUSTRY },
| },
| },
| {
| field: 'ownerUserName',
| title: '负责人',
| minWidth: 200,
| },
| {
| field: 'creatorUserName',
| title: '创建人',
| minWidth: 200,
| },
| {
| field: 'createTime',
| title: '创建时间',
| minWidth: 200,
| formatter: 'formatDateTime',
| },
| {
| field: 'orderDate',
| title: '下单日期',
| minWidth: 200,
| formatter: 'formatDateTime',
| },
| ];
| }
| case 'customerSummary': {
| return [
| {
| type: 'seq',
| title: '序号',
| },
| {
| field: 'ownerUserName',
| title: '员工姓名',
| minWidth: 100,
| },
| {
| field: 'customerCreateCount',
| title: '新增客户数',
| minWidth: 200,
| },
| {
| field: 'customerDealCount',
| title: '成交客户数',
| minWidth: 200,
| },
| {
| field: 'customerDealRate',
| title: '客户成交率(%)',
| minWidth: 200,
| formatter: ({ row }) => {
| return erpCalculatePercentage(
| row.customerDealCount,
| row.customerCreateCount,
| );
| },
| },
| {
| field: 'contractPrice',
| title: '合同总金额',
| minWidth: 200,
| formatter: 'formatAmount2',
| },
| {
| field: 'receivablePrice',
| title: '回款金额',
| minWidth: 200,
| formatter: 'formatAmount2',
| },
| {
| field: 'creceivablePrice',
| title: '未回款金额',
| minWidth: 200,
| formatter: ({ row }) => {
| return erpCalculatePercentage(
| row.receivablePrice,
| row.contractPrice,
| );
| },
| },
| {
| field: 'ccreceivablePrice',
| title: '回款完成率(%)',
| formatter: ({ row }) => {
| return erpCalculatePercentage(
| row.receivablePrice,
| row.contractPrice,
| );
| },
| },
| ];
| }
| case 'dealCycleByArea': {
| return [
| {
| type: 'seq',
| title: '序号',
| },
| {
| field: 'areaName',
| title: '区域',
| minWidth: 200,
| },
| {
| field: 'customerDealCycle',
| title: '成交周期(天)',
| minWidth: 200,
| },
| {
| field: 'customerDealCount',
| title: '成交客户数',
| minWidth: 200,
| },
| ];
| }
| case 'dealCycleByProduct': {
| return [
| {
| type: 'seq',
| title: '序号',
| },
| {
| field: 'productName',
| title: '产品名称',
| minWidth: 200,
| },
| {
| field: 'customerDealCycle',
| title: '成交周期(天)',
| minWidth: 200,
| },
| {
| field: 'customerDealCount',
| title: '成交客户数',
| minWidth: 200,
| },
| ];
| }
| case 'dealCycleByUser': {
| return [
| {
| type: 'seq',
| title: '序号',
| },
| {
| field: 'ownerUserName',
| title: '日期',
| minWidth: 200,
| },
| {
| field: 'customerDealCycle',
| title: '成交周期(天)',
| minWidth: 200,
| },
| {
| field: 'customerDealCount',
| title: '成交客户数',
| minWidth: 200,
| },
| ];
| }
| case 'followUpSummary': {
| return [
| {
| type: 'seq',
| title: '序号',
| },
| {
| field: 'ownerUserName',
| title: '员工姓名',
| minWidth: 200,
| },
| {
| field: 'followUpRecordCount',
| title: '跟进次数',
| minWidth: 200,
| },
| {
| field: 'followUpCustomerCount',
| title: '跟进客户数',
| minWidth: 200,
| },
| ];
| }
| case 'followUpType': {
| return [
| {
| type: 'seq',
| title: '序号',
| },
| {
| field: 'followUpType',
| title: '跟进方式',
| cellRender: {
| name: 'CellDict',
| props: { type: DICT_TYPE.CRM_FOLLOW_UP_TYPE },
| },
| },
| {
| field: 'followUpRecordCount',
| title: '个数',
| minWidth: 200,
| },
| {
| field: 'portion',
| title: '占比(%)',
| minWidth: 200,
| },
| ];
| }
| case 'poolSummary': {
| return [
| {
| type: 'seq',
| title: '序号',
| },
| {
| field: 'ownerUserName',
| title: '员工姓名',
| minWidth: 200,
| },
| {
| field: 'customerPutCount',
| title: '进入公海客户数',
| minWidth: 200,
| },
| {
| field: 'customerTakeCount',
| title: '公海领取客户数',
| minWidth: 200,
| },
| ];
| }
| default: {
| return [];
| }
| }
| }
|
|