@aplus-frontend/ui 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/src/ap-download/ap-download.vue.mjs +27 -27
- package/es/src/ap-download/hooks/useStyle.d.ts +1 -1
- package/es/src/ap-download/hooks/useStyle.mjs +13 -13
- package/es/src/theme/antd-global-overwrite/admin/form.css +5 -5
- package/es/src/theme/antd-global-overwrite/admin/index.css +128 -21
- package/es/src/theme/antd-global-overwrite/admin/pagination.css +16 -16
- package/es/src/theme/antd-global-overwrite/admin/table.css +107 -0
- package/es/src/theme/antd-global-overwrite/aplus/form.css +14 -14
- package/es/src/theme/antd-global-overwrite/aplus/index.css +174 -67
- package/es/src/theme/antd-global-overwrite/aplus/pagination.css +20 -20
- package/es/src/theme/antd-global-overwrite/aplus/table.css +140 -33
- package/lib/src/ap-download/ap-download.vue.js +1 -1
- package/lib/src/ap-download/hooks/useStyle.d.ts +1 -1
- package/lib/src/ap-download/hooks/useStyle.js +1 -1
- package/lib/src/theme/antd-global-overwrite/admin/form.css +5 -5
- package/lib/src/theme/antd-global-overwrite/admin/index.css +128 -21
- package/lib/src/theme/antd-global-overwrite/admin/pagination.css +16 -16
- package/lib/src/theme/antd-global-overwrite/admin/table.css +107 -0
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +14 -14
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +174 -67
- package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +20 -20
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +140 -33
- package/package.json +3 -3
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
[class
|
|
2
|
-
[class
|
|
1
|
+
[class*='-basic-table'],
|
|
2
|
+
[class*='-basic-table-form-container'] {
|
|
3
3
|
width: 100%;
|
|
4
4
|
height: 100%;
|
|
5
5
|
}
|
|
6
|
-
[class
|
|
7
|
-
[class
|
|
8
|
-
[class
|
|
9
|
-
[class
|
|
6
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
|
|
7
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
|
|
8
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title,
|
|
9
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title {
|
|
10
10
|
display: flex;
|
|
11
11
|
align-items: center;
|
|
12
12
|
justify-content: space-between;
|
|
@@ -14,18 +14,18 @@
|
|
|
14
14
|
padding: 0 0 10px;
|
|
15
15
|
border: none;
|
|
16
16
|
}
|
|
17
|
-
[class
|
|
18
|
-
[class
|
|
17
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table,
|
|
18
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table {
|
|
19
19
|
width: 100%;
|
|
20
20
|
overflow-x: hidden;
|
|
21
21
|
border-radius: 0;
|
|
22
22
|
}
|
|
23
|
-
[class
|
|
24
|
-
[class
|
|
23
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
24
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header {
|
|
25
25
|
border-radius: 0;
|
|
26
26
|
}
|
|
27
|
-
[class
|
|
28
|
-
[class
|
|
27
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th,
|
|
28
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th {
|
|
29
29
|
color: #182948;
|
|
30
30
|
font-weight: 700;
|
|
31
31
|
font-size: 14px;
|
|
@@ -34,22 +34,22 @@
|
|
|
34
34
|
text-transform: none;
|
|
35
35
|
background: #f2f6f9;
|
|
36
36
|
}
|
|
37
|
-
[class
|
|
38
|
-
[class
|
|
37
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th::before,
|
|
38
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th::before {
|
|
39
39
|
display: none;
|
|
40
40
|
width: 0;
|
|
41
41
|
visibility: hidden;
|
|
42
42
|
}
|
|
43
|
-
[class
|
|
44
|
-
[class
|
|
43
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover,
|
|
44
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover {
|
|
45
45
|
background: #f6f9fa;
|
|
46
46
|
}
|
|
47
|
-
[class
|
|
48
|
-
[class
|
|
47
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover > td,
|
|
48
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
49
49
|
background: #f6f9fa;
|
|
50
50
|
}
|
|
51
|
-
[class
|
|
52
|
-
[class
|
|
51
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row > td,
|
|
52
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row > td {
|
|
53
53
|
color: #182948;
|
|
54
54
|
font-weight: 400;
|
|
55
55
|
font-size: 14px;
|
|
@@ -58,36 +58,143 @@
|
|
|
58
58
|
text-transform: none;
|
|
59
59
|
transition: unset;
|
|
60
60
|
}
|
|
61
|
-
[class
|
|
62
|
-
[class
|
|
61
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-thead tr > th,
|
|
62
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-thead tr > th {
|
|
63
63
|
padding: 12px 16px;
|
|
64
64
|
line-height: 22px;
|
|
65
65
|
}
|
|
66
|
-
[class
|
|
67
|
-
[class
|
|
66
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
67
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td {
|
|
68
68
|
border-top: 1px solid;
|
|
69
69
|
border-top-color: transparent;
|
|
70
70
|
}
|
|
71
|
-
[class
|
|
72
|
-
[class
|
|
71
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
72
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr > .ant-table-cell {
|
|
73
73
|
padding: 12px 16px;
|
|
74
74
|
line-height: 22px;
|
|
75
75
|
}
|
|
76
|
-
[class
|
|
77
|
-
[class
|
|
76
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-thead tr > th,
|
|
77
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-thead tr > th {
|
|
78
78
|
padding: 10.5px 16px;
|
|
79
79
|
line-height: 18px;
|
|
80
80
|
}
|
|
81
|
-
[class
|
|
82
|
-
[class
|
|
81
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
82
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td {
|
|
83
83
|
border-top: 1px solid;
|
|
84
84
|
border-top-color: transparent;
|
|
85
85
|
}
|
|
86
|
-
[class
|
|
87
|
-
[class
|
|
86
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
87
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr > .ant-table-cell {
|
|
88
88
|
padding: 10.5px 16px;
|
|
89
89
|
line-height: 18px;
|
|
90
90
|
}
|
|
91
|
-
[class
|
|
91
|
+
[class*='-basic-table-row__striped'] td {
|
|
92
92
|
background-color: #f6f9fa;
|
|
93
93
|
}
|
|
94
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
95
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
96
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
97
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
98
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
99
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
100
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
101
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
102
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
103
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper,
|
|
104
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper,
|
|
105
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper,
|
|
106
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
107
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
108
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
109
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
110
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
111
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container {
|
|
112
|
+
overflow: visible;
|
|
113
|
+
}
|
|
114
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
115
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
116
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
117
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
118
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
119
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
120
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
121
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
122
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
123
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
124
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
125
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
126
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
127
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
128
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
129
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
130
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
131
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table {
|
|
132
|
+
overflow: visible;
|
|
133
|
+
}
|
|
134
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
135
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
136
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
137
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
138
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
139
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
140
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
141
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
142
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
143
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
144
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
145
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
146
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
147
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
148
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
149
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
150
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
151
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
152
|
+
overflow: visible;
|
|
153
|
+
}
|
|
154
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
155
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
156
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
157
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
158
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
159
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
160
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
161
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
162
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
163
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
164
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
165
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
166
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
167
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
168
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
169
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
170
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
171
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
172
|
+
position: sticky;
|
|
173
|
+
top: 0;
|
|
174
|
+
z-index: 99;
|
|
175
|
+
}
|
|
176
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
177
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
178
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
179
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
180
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
181
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
182
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
183
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
184
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
185
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
186
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
187
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
188
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
189
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
190
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
191
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
192
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
193
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination {
|
|
194
|
+
position: sticky;
|
|
195
|
+
bottom: 0;
|
|
196
|
+
z-index: 99;
|
|
197
|
+
margin: 0;
|
|
198
|
+
padding: 16px 0;
|
|
199
|
+
background-color: #ffffff;
|
|
200
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../config-provider/index.js");const
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../config-provider/index.js");const g=require("./hooks/index.js");require("./style/ap-download.css");const _=require("./utils/getFileInfo.js"),C=require("./hooks/useStyle.js"),y=require("../config-provider/hooks/use-locale.js"),b=require("../config-provider/hooks/use-global-config.js"),S={class:"icon"},q={class:"text"},z=e.defineComponent({name:"ApDownload",__name:"ap-download",props:{text:{},color:{default:"#0070FF"},size:{default:"middle"},disabled:{type:Boolean,default:!1},fileName:{},needName:{type:[Boolean,Object]},getOssAccess:{}},setup(o){const{lang:n}=y.useLocale(),l=e.computed(()=>n.value==="zh-cn"?"zh_CN":"en_US"),s=o,a=b.useGlobalConfig("apUpload"),c=e.computed(()=>s.disabled),r=e.computed(()=>s.color),i=e.computed(()=>s.size),{wrapperStyle:u,getWrapperClass:d,getInnerWrapperClass:p}=C.useStyle(r,i,c),m=e.computed(()=>{var t;return s.getOssAccess||((t=a.value)==null?void 0:t.getOssAccess)}),f=async()=>{s.disabled||await(await g.useOssInit(m.value,e.unref(l))).downloadFile(_.getFileInfo(s.needName,s.fileName))};return(t,N)=>(e.openBlock(),e.createElementBlock("span",{style:e.normalizeStyle(e.unref(u)),class:e.normalizeClass(e.unref(d)),onClick:f},[e.createElementVNode("span",{class:e.normalizeClass(e.unref(p))},[e.createElementVNode("span",S,[e.renderSlot(t.$slots,"icon")]),e.createElementVNode("span",q,e.toDisplayString(t.text),1)],2)],6))}});exports.default=z;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComputedRef } from 'vue';
|
|
2
|
-
export declare function useStyle(color: string
|
|
2
|
+
export declare function useStyle(color: ComputedRef<string>, size: ComputedRef<string>, disabled: ComputedRef<boolean>): {
|
|
3
3
|
wrapperStyle: ComputedRef<Record<string, any>>;
|
|
4
4
|
getWrapperClass: ComputedRef<string[]>;
|
|
5
5
|
getInnerWrapperClass: ComputedRef<string[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("vue"),c=require("../utils/getFileInfo.js");require("../../config-provider/index.js");const d=require("../../config-provider/hooks/use-namespace.js"),m=require("../../config-provider/hooks/use-global-config.js");function w(n,o,u){const{b:t,bm:e}=d.useNamespace("ap-download"),l=m.useGlobalConfig("uiMode"),p=a.computed(()=>({"--download-main-color":n.value,"--download-main-color-opacity":c.getHexWithOpacity(n.value,.6)})),s=a.computed(()=>[t("wrapper"),e("wrapper",o.value)].filter(Boolean)),i=a.computed(()=>{const r=[t("inner-wrapper"),e("inner-wrapper",o.value)];return u.value&&(l.value==="aplus"?r.push(e("inner-wrapper","disabled")):r.push(e("inner-wrapper","disabled-admin"))),r});return{wrapperStyle:p,getWrapperClass:s,getInnerWrapperClass:i}}exports.useStyle=w;
|
|
@@ -44,22 +44,22 @@
|
|
|
44
44
|
input.ant-input[disabled] {
|
|
45
45
|
color: #666666;
|
|
46
46
|
}
|
|
47
|
-
div[class
|
|
47
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] {
|
|
48
48
|
padding: 16px;
|
|
49
49
|
}
|
|
50
|
-
div[class
|
|
50
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
51
51
|
display: flex;
|
|
52
52
|
align-items: center;
|
|
53
53
|
justify-content: flex-end;
|
|
54
54
|
}
|
|
55
|
-
div[class
|
|
55
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
56
56
|
order: 1;
|
|
57
57
|
}
|
|
58
|
-
div[class
|
|
58
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
59
59
|
order: 2;
|
|
60
60
|
margin-right: 0;
|
|
61
61
|
}
|
|
62
|
-
div[class
|
|
62
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
63
63
|
order: 3;
|
|
64
64
|
margin-left: 0.5rem;
|
|
65
65
|
}
|
|
@@ -124,22 +124,22 @@
|
|
|
124
124
|
input.ant-input[disabled] {
|
|
125
125
|
color: #666666;
|
|
126
126
|
}
|
|
127
|
-
div[class
|
|
127
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] {
|
|
128
128
|
padding: 16px;
|
|
129
129
|
}
|
|
130
|
-
div[class
|
|
130
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
131
131
|
display: flex;
|
|
132
132
|
align-items: center;
|
|
133
133
|
justify-content: flex-end;
|
|
134
134
|
}
|
|
135
|
-
div[class
|
|
135
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
136
136
|
order: 1;
|
|
137
137
|
}
|
|
138
|
-
div[class
|
|
138
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
139
139
|
order: 2;
|
|
140
140
|
margin-right: 0;
|
|
141
141
|
}
|
|
142
|
-
div[class
|
|
142
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
143
143
|
order: 3;
|
|
144
144
|
margin-left: 0.5rem;
|
|
145
145
|
}
|
|
@@ -278,22 +278,22 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
278
278
|
color: #ff4d4f;
|
|
279
279
|
}
|
|
280
280
|
[class$='-basic-table'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right,
|
|
281
|
-
[class
|
|
281
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right {
|
|
282
282
|
margin: 16px 0 0;
|
|
283
283
|
}
|
|
284
284
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination,
|
|
285
|
-
[class
|
|
285
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination {
|
|
286
286
|
position: relative;
|
|
287
287
|
}
|
|
288
288
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text,
|
|
289
|
-
[class
|
|
289
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text {
|
|
290
290
|
position: absolute;
|
|
291
291
|
left: 0;
|
|
292
292
|
height: 30px;
|
|
293
293
|
line-height: 30px;
|
|
294
294
|
}
|
|
295
295
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item,
|
|
296
|
-
[class
|
|
296
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item {
|
|
297
297
|
box-sizing: border-box;
|
|
298
298
|
min-width: 30px;
|
|
299
299
|
height: 30px;
|
|
@@ -305,13 +305,13 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
305
305
|
border-radius: 4px;
|
|
306
306
|
}
|
|
307
307
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
308
|
-
[class
|
|
309
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class
|
|
310
|
-
[class
|
|
308
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
309
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
310
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active) {
|
|
311
311
|
border: 1px solid #d9d9d9;
|
|
312
312
|
}
|
|
313
313
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-prev,
|
|
314
|
-
[class
|
|
314
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-prev {
|
|
315
315
|
width: 30px;
|
|
316
316
|
height: 30px;
|
|
317
317
|
margin: 0 4px;
|
|
@@ -319,7 +319,7 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
319
319
|
border: 1px solid #d9d9d9;
|
|
320
320
|
}
|
|
321
321
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-next,
|
|
322
|
-
[class
|
|
322
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-next {
|
|
323
323
|
width: 30px;
|
|
324
324
|
height: 30px;
|
|
325
325
|
margin: 0 4px;
|
|
@@ -327,34 +327,34 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
327
327
|
border: 1px solid #d9d9d9;
|
|
328
328
|
}
|
|
329
329
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled,
|
|
330
|
-
[class
|
|
330
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled {
|
|
331
331
|
border: 1px solid #d9d9d9;
|
|
332
332
|
}
|
|
333
333
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options,
|
|
334
|
-
[class
|
|
334
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options {
|
|
335
335
|
margin-left: 4px;
|
|
336
336
|
}
|
|
337
337
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector,
|
|
338
|
-
[class
|
|
338
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector {
|
|
339
339
|
min-width: 90px;
|
|
340
340
|
height: 30px;
|
|
341
341
|
}
|
|
342
342
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item,
|
|
343
|
-
[class
|
|
343
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item {
|
|
344
344
|
line-height: 28px;
|
|
345
345
|
}
|
|
346
346
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow,
|
|
347
|
-
[class
|
|
347
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow {
|
|
348
348
|
color: #333333;
|
|
349
349
|
}
|
|
350
350
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper,
|
|
351
|
-
[class
|
|
351
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper {
|
|
352
352
|
margin-left: 20px;
|
|
353
353
|
color: #333333;
|
|
354
354
|
font-size: 14px;
|
|
355
355
|
}
|
|
356
356
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input,
|
|
357
|
-
[class
|
|
357
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input {
|
|
358
358
|
min-width: 60px;
|
|
359
359
|
height: 30px;
|
|
360
360
|
margin: 0 8px;
|
|
@@ -592,3 +592,110 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
592
592
|
[class$='-basic-table-row__striped'] td {
|
|
593
593
|
background-color: #fafafa;
|
|
594
594
|
}
|
|
595
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
596
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
597
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
598
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
599
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
600
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
601
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
602
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
603
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
604
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper,
|
|
605
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper,
|
|
606
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper,
|
|
607
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
608
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
609
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
610
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
611
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
612
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container {
|
|
613
|
+
overflow: visible;
|
|
614
|
+
}
|
|
615
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
616
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
617
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
618
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
619
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
620
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
621
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
622
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
623
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
624
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
625
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
626
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
627
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
628
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
629
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
630
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
631
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
632
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table {
|
|
633
|
+
overflow: visible;
|
|
634
|
+
}
|
|
635
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
636
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
637
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
638
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
639
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
640
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
641
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
642
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
643
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
644
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
645
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
646
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
647
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
648
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
649
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
650
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
651
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
652
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
653
|
+
overflow: visible;
|
|
654
|
+
}
|
|
655
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
656
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
657
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
658
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
659
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
660
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
661
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
662
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
663
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
664
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
665
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
666
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
667
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
668
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
669
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
670
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
671
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
672
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
673
|
+
position: sticky;
|
|
674
|
+
top: 0;
|
|
675
|
+
z-index: 99;
|
|
676
|
+
}
|
|
677
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
678
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
679
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
680
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
681
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
682
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
683
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
684
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
685
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
686
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
687
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
688
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
689
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
690
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
691
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
692
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
693
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
694
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination {
|
|
695
|
+
position: sticky;
|
|
696
|
+
bottom: 0;
|
|
697
|
+
z-index: 99;
|
|
698
|
+
margin: 0;
|
|
699
|
+
padding: 16px 0;
|
|
700
|
+
background-color: #ffffff;
|
|
701
|
+
}
|