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
| <template>
| <PageWrapper title="基础详情页" contentBackground>
| <Description
| size="middle"
| title="退款申请"
| :bordered="false"
| :column="3"
| :data="refundData"
| :schema="refundSchema"
| />
| <Divider />
| <Description
| size="middle"
| title="用户信息"
| :bordered="false"
| :column="3"
| :data="personData"
| :schema="personSchema"
| />
| <Divider />
|
| <BasicTable @register="registerRefundTable" />
| <Divider />
| <BasicTable @register="registerTimeTable" />
| </PageWrapper>
| </template>
| <script lang="ts" setup>
| import { Description } from '@/components/Description';
| import { BasicTable, useTable } from '@/components/Table';
| import { PageWrapper } from '@/components/Page';
| import { Divider } from 'ant-design-vue';
|
| import {
| refundSchema,
| refundData,
| personSchema,
| personData,
| refundTableSchema,
| refundTimeTableSchema,
| refundTableData,
| refundTimeTableData,
| } from './data';
|
| const [registerRefundTable] = useTable({
| title: '退货商品',
| dataSource: refundTableData,
| columns: refundTableSchema,
| pagination: false,
| showIndexColumn: false,
| scroll: { y: 300 },
| showSummary: true,
| summaryFunc: handleSummary,
| });
|
| const [registerTimeTable] = useTable({
| title: '退货进度',
| columns: refundTimeTableSchema,
| pagination: false,
| dataSource: refundTimeTableData,
| showIndexColumn: false,
| scroll: { y: 300 },
| });
|
| function handleSummary(tableData: any[]) {
| let totalT5 = 0;
| let totalT6 = 0;
| tableData.forEach((item) => {
| totalT5 += item.t5;
| totalT6 += item.t6;
| });
| return [
| {
| t1: '总计',
| t5: totalT5,
| t6: totalT6,
| },
| ];
| }
| </script>
| <style lang="less" scoped>
| .desc-wrap {
| padding: 16px;
| background-color: @component-background;
| }
| </style>
|
|