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
| import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
| import { DICT_TYPE } from '..\..\..\..\packages\constants\src';
| import { erpPriceInputFormatter } from '..\..\..\..\packages\utils\src';
|
| export function useDetailListColumns(): VxeTableGridOptions['columns'] {
| return [
| {
| title: '合同编号',
| field: 'no',
| minWidth: 150,
| fixed: 'left',
| },
| {
| title: '合同名称',
| field: 'name',
| minWidth: 150,
| fixed: 'left',
| slots: { default: 'name' },
| },
| {
| title: '合同金额(元)',
| field: 'totalPrice',
| minWidth: 150,
| formatter: 'formatAmount2',
| },
| {
| title: '合同开始时间',
| field: 'startTime',
| minWidth: 150,
| formatter: 'formatDateTime',
| },
| {
| title: '合同结束时间',
| field: 'endTime',
| minWidth: 150,
| formatter: 'formatDateTime',
| },
| {
| title: '已回款金额(元)',
| field: 'totalReceivablePrice',
| minWidth: 150,
| formatter: 'formatAmount2',
| },
| {
| title: '未回款金额(元)',
| field: 'unpaidPrice',
| minWidth: 150,
| formatter: ({ row }) => {
| return erpPriceInputFormatter(
| row.totalPrice - row.totalReceivablePrice,
| );
| },
| },
| {
| title: '负责人',
| field: 'ownerUserName',
| minWidth: 150,
| },
| {
| title: '所属部门',
| field: 'ownerUserDeptName',
| minWidth: 150,
| },
| {
| title: '创建时间',
| field: 'createTime',
| minWidth: 150,
| formatter: 'formatDateTime',
| },
| {
| title: '创建人',
| field: 'creatorName',
| minWidth: 150,
| },
| {
| title: '备注',
| field: 'remark',
| minWidth: 150,
| },
| {
| title: '合同状态',
| field: 'auditStatus',
| fixed: 'right',
| minWidth: 100,
| cellRender: {
| name: 'CellDict',
| props: { type: DICT_TYPE.CRM_AUDIT_STATUS },
| },
| },
| ];
| }
|
|