index.tsx
12.6 KB
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
import { postErpOrderListByPage } from '@/services';
import {
PageContainer,
ProColumns,
ProTable,
} from '@ant-design/pro-components';
import { Button, Checkbox, Divider, Flex, Space } from 'antd';
import React, { Key, useState } from 'react';
import OrderDrawer from './components/OrderDrawer';
import './index.less';
const TableList: React.FC<unknown> = () => {
const [orderDrawerVisible, setOrderDrawerVisible] = useState<boolean>(false);
const [expandedRowKeys, setExpandedRowKeys] = useState<Key[]>([]);
const [selectedItems, setSelectedItems] = useState([]);
const [orderRow, setOrderRow] = useState<[]>([]);
const [subOrderShowText, setSubOrderShowText] = useState('订单详情');
const onCheckboxChange = (itemKey: never) => {
const newSelectedItems = selectedItems.includes(itemKey)
? selectedItems.filter((key) => key !== itemKey)
: [...selectedItems, itemKey];
setSelectedItems(newSelectedItems);
};
const a = 2;
if (a == 2) {
}
// 主订单内容渲染
const MainOrderColunmRender = ({ record }) => {
return (
<Flex vertical={true}>
{/* 编号、时间、销售信息 */}
<Flex justify="space-between" className="px-2 py-4 bg-gray-100">
<Checkbox
onChange={() => onCheckboxChange(record.id)}
checked={selectedItems.includes(record.id)}
>
<Flex wrap="wrap" gap="middle">
<div>{record.createTime}</div>
<div>订单编号:{record.id}</div>
</Flex>
</Checkbox>
</Flex>
{/* 收货、开票、备注信息 */}
<Flex justify="space-between" className="px-2 py-4">
<Space split={<Divider type="vertical" align="center" />}>
<Space.Compact direction="vertical" className="gap-2">
<div>
收货信息:收货人:{record.customerName} 联系方式:
{record.customerContactNumber} 单位联系人:
{record.institutionContactName} 单位名称:{record.institution}{' '}
收货地址:{record.customerShippingAddress}
</div>
<div>
开票信息:开户银行:{record.bank} 银行账号:
{record.bankAccountNumber} 识别号:
{record.invoiceIdentificationNumber}
</div>
<div>
备 注:{record.notes}
</div>
</Space.Compact>
</Space>
{/* 总金额、操作按钮信息 */}
<Space>
<Space.Compact direction="vertical" align="end">
<div>
总金额:<span className="text-lg">{record.totalPayment}¥</span>
</div>
<div>
<Button className="p-0 pe-2" type="link">
确认收货
</Button>
<Button className="p-0 pe-2" type="link">
发货
</Button>
<Button className="p-0 pe-2" type="link">
打印
</Button>
<Button className="p-0 pe-2" type="link">
开票
</Button>
<Button
className="p-0 pe-2"
type="link"
onClick={() => setOrderDrawerVisible(true)}
>
编辑
</Button>
<Button className="p-0 pe-2" type="link">
审核
</Button>
<Button className="p-0" type="link">
作废
</Button>
</div>
</Space.Compact>
<Space.Compact direction="vertical">
<Button
type="primary"
onClick={() => handleExpand(record.id)}
size="small"
>
{subOrderShowText}
</Button>
</Space.Compact>
</Space>
</Flex>
</Flex>
);
};
const [data, setData] = useState([]);
const tableListDataSource: TableListItem[] = [];
// 主订单列表
const mainOrdersColumns: ProColumns<TableListItem>[] = [
{
title: '订单列表',
width: 120,
dataIndex: 'name',
search: false,
render: (text, record) => {
return <MainOrderColunmRender record={record} />;
},
},
{
title: '订单编号',
dataIndex: 'id',
valueType: 'text',
hideInTable: true,
},
{
title: '销售代表',
dataIndex: 'salesCode',
valueType: 'text',
hideInTable: true,
},
{
title: '收货人',
dataIndex: 'customerName',
valueType: 'text',
hideInTable: true,
},
{
title: '收货人联系电话',
dataIndex: 'customerContactNumber',
valueType: 'text',
hideInTable: true,
},
{
title: '单位',
dataIndex: 'institution',
valueType: 'text',
hideInTable: true,
},
{
title: '单位联系人',
dataIndex: 'institutionContactName',
valueType: 'text',
hideInTable: true,
},
{
title: '收货人地址',
dataIndex: 'customerShippingAddress',
valueType: 'text',
hideInTable: true,
},
{
title: '商品名称',
dataIndex: 'productName',
valueType: 'text',
hideInTable: true,
},
{
title: '商品参数',
dataIndex: 'parameters',
valueType: 'text',
hideInTable: true,
},
{
title: '订单状态',
dataIndex: 'orderStatus',
valueType: 'text',
hideInTable: true,
},
{
title: '支付方式',
dataIndex: 'paymentStatus',
valueType: 'text',
hideInTable: true,
},
{
title: '物流方式',
dataIndex: 'logisticsMethod',
valueType: 'text',
hideInTable: true,
},
{
title: '支付渠道',
dataIndex: 'paymentChannel',
valueType: 'text',
hideInTable: true,
},
{
title: '银行名称',
dataIndex: 'bank',
valueType: 'text',
hideInTable: true,
},
{
title: '支付流水',
dataIndex: 'paymentTransactionId',
valueType: 'text',
hideInTable: true,
},
{
title: '所属部门',
dataIndex: 'productBelongBusiness',
valueType: 'text',
hideInTable: true,
},
{
title: '创建日期',
dataIndex: 'createTime',
valueType: 'dateRange',
hideInTable: true,
search: {
transform: (value) => {
return {
startTime: value[0],
endTime: value[1],
};
},
},
},
{
title: '开票状态',
dataIndex: 'invoicingStatus',
valueType: 'text',
hideInTable: true,
},
{
title: '开票日期',
dataIndex: 'invoicingTime',
valueType: 'dateRange',
hideInTable: true,
search: {
transform: (value) => {
return {
startTime: value[0],
endTime: value[1],
};
},
},
},
];
const handleExpand = (key: number) => {
if (expandedRowKeys.includes(key)) {
setSubOrderShowText('订单详情');
} else {
setSubOrderShowText('收起订单');
}
const newExpandedRowKeys = expandedRowKeys.includes(key)
? expandedRowKeys.filter((k) => k !== key)
: [...expandedRowKeys, key];
setExpandedRowKeys(newExpandedRowKeys);
};
const expandedRowRender = (record) => {
let subOrders = record.subOrderInformationLists;
console.log(subOrders);
return (
<ProTable
columns={[
{ title: 'ID', dataIndex: 'id', key: 'id' },
{ title: '商品编码', dataIndex: 'productCode', key: 'productCode' },
{ title: '商品名称', dataIndex: 'productName', key: 'productName' },
{ title: '商品参数', dataIndex: 'parameters', key: 'parameters' },
{ title: '商品数量', dataIndex: 'quantity', key: 'quantity' },
{
title: '子订单金额(¥)',
dataIndex: 'subOrderPayment',
key: 'subOrderPayment',
},
{
title: '支付方式',
dataIndex: 'paymentMethod',
key: 'paymentMethod',
},
{
title: '支付渠道',
dataIndex: 'paymentChannel',
key: 'paymentChannel',
},
{
title: '支付流水',
dataIndex: 'paymentTransactionId',
key: 'paymentTransactionId',
},
{
title: '物流方式',
dataIndex: 'logisticsMethod',
key: 'logisticsMethod',
},
{ title: '物流单号', dataIndex: 'serialNumber', key: 'serialNumber' },
{
title: '开票状态',
dataIndex: 'invoicingStatus',
key: 'invoicingStatus',
},
{ title: '订单状态', dataIndex: 'orderStatus', key: 'orderStatus' },
{
title: '操作',
dataIndex: 'operation',
key: 'operation',
align: 'center',
render: () => (
<Flex>
<Button
type="link"
size="small"
style={{ paddingLeft: 0, paddingRight: '4px' }}
>
编辑
</Button>
<Button
type="link"
size="small"
style={{ paddingLeft: 0, paddingRight: '4px' }}
>
审核
</Button>
<Button
type="link"
size="small"
style={{ paddingLeft: 0, paddingRight: '4px' }}
>
备注
</Button>
<Button
type="link"
size="small"
style={{ paddingLeft: 0, paddingRight: 0 }}
>
作废
</Button>
</Flex>
),
},
{
title: '备注',
dataIndex: 'notes',
key: 'notes',
align: 'center',
render: () => [
<Button type="dashed" size="small">
详情
</Button>,
],
},
]}
rowSelection={{
// 自定义选择项参考: https://ant.design/components/table-cn/#components-table-demo-row-selection-custom
// 注释该行则默认不显示下拉选项
// selections: [Table.SELECTION_ALL, Table.SELECTION_INVERT],
defaultSelectedRowKeys: [],
}}
rowKey="id"
headerTitle={false}
search={false}
options={false}
dataSource={subOrders}
pagination={false}
/>
);
};
return (
<PageContainer
header={{
title: '订单管理',
}}
>
<ProTable
expandIconColumnIndex={-1}
// dataSource={data}
columns={mainOrdersColumns}
rowKey="id"
pagination={{
showQuickJumper: true,
}}
expandedRowKeys={expandedRowKeys}
expandable={{ expandedRowRender }}
search={false}
dateFormatter="string"
options={false}
headerTitle="订单列表"
search={{
labelWidth: 'auto',
}}
request={async (
// 第一个参数 params 查询表单和 params 参数的结合
// 第一个参数中一定会有 pageSize 和 current ,这两个参数是 antd 的规范
params: T & {
pageSize: 10;
current: 1;
},
sorter,
filter,
) => {
const { data } = await postErpOrderListByPage({
// ...params,
// FIXME: remove @ts-ignore
// @ts-ignore
sorter,
filter,
body: JSON.stringify(params),
});
console.log(data);
return {
data: data?.data || [],
};
}}
toolBarRender={() => [
<Button key="show">一键展开</Button>,
<Button key="out" onClick={() => setOrderDrawerVisible(true)}>
新增
</Button>,
<Button key="primary" type="primary">
导出
</Button>,
]}
/>
{orderDrawerVisible && (
<OrderDrawer
data={orderRow}
onClose={() => {
setOrderDrawerVisible(false);
setOrderRow({});
}}
/>
)}
</PageContainer>
);
};
export default TableList;