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
| <template>
| <div>
| <a-card :bodyStyle="{padding:'0'}" :bordered="false" title="2021年项目统计">
| <a-table :columns="columns" :data-source="dataSource" :pagination="false" size="middle" bordered>
| <template slot="name" slot-scope="text">
| <a>{{ text }}</a>
| </template>
| </a-table>
| </a-card>
|
| </div>
| </template>
|
| <script>
| const renderContent = (value, row, index) => {
| const obj = {
| children: value,
| attrs: {}
| }
| if (index === 4) {
| obj.attrs.colSpan = 0
| }
| return obj
| }
|
| export default {
| name: 'overView',
| data() {
| return {
| columns: [
| {
| title: 'Name',
| dataIndex: 'name',
| customRender: (text, row, index) => {
| if (index < 4) {
| return <a href="javascript:;">{text}</a>
| }
| return {
| children: <a href="javascript:;">{text}</a>,
| attrs: {
| colSpan: 5
| }
| }
| }
| },
| {
| title: 'Age',
| dataIndex: 'age',
| customRender: renderContent
| },
| {
| title: 'Home phone',
| colSpan: 2,
| dataIndex: 'tel',
| customRender: (value, row, index) => {
| const obj = {
| children: value,
| attrs: {}
| }
| if (index === 2) {
| obj.attrs.rowSpan = 2
| }
| // These two are merged into above cell
| if (index === 3) {
| obj.attrs.rowSpan = 0
| }
| if (index === 4) {
| obj.attrs.colSpan = 0
| }
| return obj
| }
| },
| {
| title: 'Phone',
| colSpan: 0,
| dataIndex: 'phone',
| customRender: renderContent
| },
| {
| title: 'Address',
| dataIndex: 'address',
| customRender: renderContent
| }
| ],
| dataSource: [
| {
| key: '1',
| name: 'John Brown',
| age: 32,
| tel: '0571-22098909',
| phone: 18889898989,
| address: 'New York No. 1 Lake Park'
| },
| {
| key: '2',
| name: 'Jim Green',
| tel: '0571-22098333',
| phone: 18889898888,
| age: 42,
| address: 'London No. 1 Lake Park'
| },
| {
| key: '3',
| name: 'Joe Black',
| age: 32,
| tel: '0575-22098909',
| phone: 18900010002,
| address: 'Sidney No. 1 Lake Park'
| },
| {
| key: '4',
| name: 'Jim Red',
| age: 18,
| tel: '0575-22098909',
| phone: 18900010002,
| address: 'London No. 2 Lake Park'
| },
| {
| key: '5',
| name: 'Jake White',
| age: 18,
| tel: '0575-22098909',
| phone: 18900010002,
| address: 'Dublin No. 2 Lake Park'
| }
| ]
| }
| }
| }
| </script>
|
| <style scoped>
|
|
| </style>
|
|