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
| import type { DescriptionItemSchema } from '#/components/description';
|
| import { h } from 'vue';
|
| import { DICT_TYPE } from '../../../../packages/constants/src';
| import { erpPriceInputFormatter, formatDateTime } from '../../../../packages/utils/src';
|
| import { DictTag } from '#/components/dict-tag';
|
| /** 详情头部的配置 */
| export function useDetailSchema(): DescriptionItemSchema[] {
| return [
| {
| field: 'customerName',
| label: '客户名称',
| },
| {
| field: 'totalPrice',
| label: '合同金额(元)',
| render: (val) => erpPriceInputFormatter(val) as string,
| },
| {
| field: 'orderDate',
| label: '下单时间',
| render: (val) => formatDateTime(val) as string,
| },
| {
| field: 'totalReceivablePrice',
| label: '回款金额(元)',
| render: (val) => erpPriceInputFormatter(val) as string,
| },
| {
| field: 'ownerUserName',
| label: '负责人',
| },
| ];
| }
|
| /** 详情基本信息的配置 */
| export function useDetailBaseSchema(): DescriptionItemSchema[] {
| return [
| {
| field: 'no',
| label: '合同编号',
| },
| {
| field: 'name',
| label: '合同名称',
| },
| {
| field: 'customerName',
| label: '客户名称',
| },
| {
| field: 'businessName',
| label: '商机名称',
| },
| {
| field: 'totalPrice',
| label: '合同金额(元)',
| render: (val) => erpPriceInputFormatter(val) as string,
| },
| {
| field: 'orderDate',
| label: '下单时间',
| render: (val) => formatDateTime(val) as string,
| },
| {
| field: 'startTime',
| label: '合同开始时间',
| render: (val) => formatDateTime(val) as string,
| },
| {
| field: 'endTime',
| label: '合同结束时间',
| render: (val) => formatDateTime(val) as string,
| },
| {
| field: 'signContactName',
| label: '客户签约人',
| },
| {
| field: 'signUserName',
| label: '公司签约人',
| },
| {
| field: 'remark',
| label: '备注',
| },
| {
| field: 'auditStatus',
| label: '合同状态',
| render: (val) =>
| h(DictTag, {
| type: DICT_TYPE.CRM_AUDIT_STATUS,
| value: val,
| }),
| },
| ];
| }
|
|