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
| import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
| /** 商机关联列表列定义 */
| export function useBusinessDetailListColumns(): VxeTableGridOptions['columns'] {
| return [
| {
| type: 'checkbox',
| width: 50,
| fixed: 'left',
| },
| {
| field: 'name',
| title: '商机名称',
| fixed: 'left',
| slots: { default: 'name' },
| },
| {
| field: 'customerName',
| title: '客户名称',
| fixed: 'left',
| slots: { default: 'customerName' },
| },
| {
| field: 'totalPrice',
| title: '商机金额(元)',
| formatter: 'formatAmount2',
| },
| {
| field: 'dealTime',
| title: '预计成交日期',
| formatter: 'formatDate',
| },
| {
| field: 'ownerUserName',
| title: '负责人',
| },
| {
| field: 'ownerUserDeptName',
| title: '所属部门',
| },
| {
| field: 'statusTypeName',
| title: '商机状态组',
| fixed: 'right',
| },
| {
| field: 'statusName',
| title: '商机阶段',
| fixed: 'right',
| },
| ];
| }
|
|