zhengyiming
5 天以前 5103729dde38b2a313367e43df8ce73285f08a30
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
import { defineColumns } from '@bole-core/components';
 
export const columns = defineColumns([
  {
    id: '1',
    enCode: 'serialNum',
    name: '批次号',
    width: 160,
  },
  {
    id: '2',
    enCode: 'insureBillNo',
    name: '保单号',
    width: 160,
  },
  {
    id: '3',
    enCode: 'insurerName',
    name: '投保人',
    width: 160,
  },
  {
    id: '4',
    enCode: 'policyerName',
    name: '被保人',
    width: 160,
  },
  {
    id: '5',
    enCode: 'effectStartTime',
    name: '保险起期',
    width: 160,
  },
  {
    id: '6',
    enCode: 'effectEndTime',
    name: '保险止期',
    width: 160,
  },
  {
    id: '7',
    enCode: 'insuranceOrg',
    name: '参保机构',
    width: 160,
  },
  {
    id: '8',
    enCode: 'insuranceScheme',
    name: '投保方案',
    width: 160,
  },
  {
    id: '9',
    enCode: 'insurancePeriod',
    name: '投保方式',
    width: 160,
  },
  {
    id: '10',
    enCode: 'insureCount',
    name: '投保人数',
    width: 160,
  },
  {
    id: '11',
    enCode: 'sumInsured',
    name: '总保额(元)',
    width: 200,
  },
  {
    id: '12',
    enCode: 'amount',
    name: '总保费(元)',
    width: 160,
  },
  {
    id: '13',
    enCode: 'creationTime',
    name: '最近导入日期',
    width: 160,
  },
  {
    id: '14',
    enCode: 'auditStatus',
    name: '审核状态',
    width: 160,
  },
  {
    id: '141',
    enCode: 'payStatus',
    name: '支付状态',
    width: 160,
  },
  {
    id: '15',
    enCode: 'status',
    name: '投保状态',
    width: 160,
  },
  {
    id: '16',
    enCode: 'claimCount',
    name: '理赔数量',
    width: 160,
  },
]).filter(Boolean);
 
export const InsurancePolicyStampFilesColumns = defineColumns([
  {
    id: '1',
    enCode: 'channelOrderNo',
    name: '订单号',
  },
  {
    id: '2',
    enCode: 'proposalNo',
    name: '投保单号',
  },
  {
    id: '3',
    enCode: 'sumSignPremium',
    name: '保费金额',
  },
]);
 
export const InsureDownloadInvoiceColumns = defineColumns([
  {
    id: '1',
    enCode: 'channelOrderNo',
    name: '订单号',
  },
  {
    id: '2',
    enCode: 'proposalNo',
    name: '投保单号',
  },
  {
    id: '3',
    enCode: 'invoiceSerialNo',
    name: '发票号码',
  },
  {
    id: '4',
    enCode: 'invoicePlanFee',
    name: '价税合计',
  },
]);
 
export const InsurePayDetailColumns = defineColumns([
  {
    id: '1',
    enCode: 'channelOrderNo',
    name: '订单号',
  },
  {
    id: '2',
    enCode: 'proposalNo',
    name: '投保单号',
  },
  {
    id: '3',
    enCode: 'sumSignPremium',
    name: '保费金额',
  },
  {
    id: '4',
    enCode: 'status',
    name: '支付状态',
  },
]);