newtv-ui-3.0 0.0.1
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/README.md +55 -0
- package/lib/asserts/fonts/iconfont.539b8438.woff +0 -0
- package/lib/asserts/fonts/iconfont.5ee3b92b.ttf +0 -0
- package/lib/asserts/fonts/iconfont.b5b01d3e.woff2 +0 -0
- package/lib/asserts/img/gaoding.59d9deae.png +0 -0
- package/lib/asserts/img/zhihui.edef9d17.png +0 -0
- package/lib/demo.html +10 -0
- package/lib/newtv-ui-3.0.common.js +110261 -0
- package/lib/newtv-ui-3.0.css +1 -0
- package/lib/newtv-ui-3.0.umd.js +110271 -0
- package/lib/newtv-ui-3.0.umd.min.js +47 -0
- package/package.json +42 -0
- package/packages/assets/iconfont/iconfont.css +435 -0
- package/packages/assets/iconfont/iconfont.js +1 -0
- package/packages/assets/iconfont/iconfont.json +744 -0
- package/packages/assets/iconfont/iconfont.ttf +0 -0
- package/packages/assets/iconfont/iconfont.woff +0 -0
- package/packages/assets/iconfont/iconfont.woff2 +0 -0
- package/packages/assets/iconfont/iconfontSVG.js +1 -0
- package/packages/assets/images/bg.png +0 -0
- package/packages/assets/images/danger-bg.png +0 -0
- package/packages/assets/images/empty-bg.png +0 -0
- package/packages/assets/images/error-poster.png +0 -0
- package/packages/assets/images/error_img.png +0 -0
- package/packages/assets/images/logo.png +0 -0
- package/packages/assets/images/logo2.png +0 -0
- package/packages/assets/images/no_img.png +0 -0
- package/packages/assets/images/primary-bg.png +0 -0
- package/packages/assets/images/save.svg +3 -0
- package/packages/assets/images/state-Unpass.png +0 -0
- package/packages/assets/images/state-ing.png +0 -0
- package/packages/assets/images/state-ms.png +0 -0
- package/packages/assets/images/state-non.png +0 -0
- package/packages/assets/images/state-pass.png +0 -0
- package/packages/assets/images/success-bg.png +0 -0
- package/packages/assets/images/thumbnail-empty.png +0 -0
- package/packages/assets/images/versionIcon.png +0 -0
- package/packages/assets/images/warning-bg.png +0 -0
- package/packages/avatar-upload/index.js +10 -0
- package/packages/avatar-upload/src/error-poster.png +0 -0
- package/packages/avatar-upload/src/gaoding.png +0 -0
- package/packages/avatar-upload/src/previewDialog.vue +96 -0
- package/packages/avatar-upload/src/upload.vue +640 -0
- package/packages/avatar-upload/src/zhihui.png +0 -0
- package/packages/avatar-upload/src/zhihui_2.png +0 -0
- package/packages/cardTable/index.js +10 -0
- package/packages/cardTable/src/cardTable.vue +151 -0
- package/packages/form/index.js +10 -0
- package/packages/form/src/EllipsisTooltip.vue +31 -0
- package/packages/form/src/TextOverflow.vue +122 -0
- package/packages/form/src/form-item.vue +395 -0
- package/packages/form/src/form.js +46 -0
- package/packages/form/src/form.vue +233 -0
- package/packages/icon-tips/index.js +10 -0
- package/packages/icon-tips/src/icon-tips.vue +49 -0
- package/packages/index.js +49 -0
- package/packages/menu/index.js +10 -0
- package/packages/menu/src/menu.js +27 -0
- package/packages/menu/src/menu.vue +84 -0
- package/packages/menu/src/sub-item.vue +108 -0
- package/packages/pagination/index.js +10 -0
- package/packages/pagination/src/pagination.vue +134 -0
- package/packages/table/index.js +10 -0
- package/packages/table/src/table.vue +797 -0
- package/packages/tags/index.js +10 -0
- package/packages/tags/src/tag.vue +179 -0
- package/theme/pool_style.scss +598 -0
- package/theme/skyStyle/config.scss +19 -0
- package/theme/sky_style.scss +268 -0
- package/types/component.d.ts +7 -0
- package/types/dashboard.d.ts +10 -0
- package/types/form.d.ts +12 -0
- package/types/header.d.ts +10 -0
- package/types/index.d.ts +4 -0
- package/types/leftMenu.d.ts +14 -0
- package/types/list.d.ts +8 -0
- package/types/newtv-ui.d.ts +23 -0
- package/types/secondNav.d.ts +13 -0
- package/types/table.d.ts +14 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "newtv-ui-3.0",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "未来电视管理后台公共组件库3.0",
|
|
6
|
+
"author": "王海波",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"serve": "vue-cli-service serve",
|
|
9
|
+
"build": "vue-cli-service build",
|
|
10
|
+
"lib": "vue-cli-service build --target lib --namenewtv-ui-3.0 --dest lib packages/index.js"
|
|
11
|
+
},
|
|
12
|
+
"main": "lib/newtv-ui-3.0.umd.min.js",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@element-plus/icons": "^0.0.11",
|
|
15
|
+
"@element-plus/icons-vue": "^1.1.4",
|
|
16
|
+
"axios": "^0.27.2",
|
|
17
|
+
"core-js": "^3.6.5",
|
|
18
|
+
"el-table-infinite-scroll": "^3.0.1",
|
|
19
|
+
"element-plus": "2.3.1",
|
|
20
|
+
"moment": "^2.29.3",
|
|
21
|
+
"vue": "^3.0.0",
|
|
22
|
+
"vue-router": "^4.0.0-0",
|
|
23
|
+
"vuex": "^4.0.0-0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@vue/cli-plugin-babel": "~4.5.13",
|
|
27
|
+
"@vue/cli-plugin-eslint": "~4.5.13",
|
|
28
|
+
"@vue/cli-plugin-router": "~4.5.13",
|
|
29
|
+
"@vue/cli-plugin-vuex": "~4.5.13",
|
|
30
|
+
"@vue/cli-service": "~4.5.13",
|
|
31
|
+
"@vue/compiler-sfc": "^3.0.0",
|
|
32
|
+
"compression-webpack-plugin": "^6.0.3",
|
|
33
|
+
"node-sass": "^4.12.0",
|
|
34
|
+
"sass-loader": "^8.0.2"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"lib",
|
|
38
|
+
"packages",
|
|
39
|
+
"types",
|
|
40
|
+
"theme"
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,435 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 3341651 */
|
|
3
|
+
src: url('iconfont.woff2?t=1700019445747') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1700019445747') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1700019445747') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.iconfont {
|
|
9
|
+
font-family: "iconfont" !important;
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.icon-tubiaoziyuanku:before {
|
|
17
|
+
content: "\e668";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-tubiaoxitong:before {
|
|
21
|
+
content: "\e669";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon-tubiaoshouye:before {
|
|
25
|
+
content: "\e66a";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-zhiding:before {
|
|
29
|
+
content: "\e667";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-tubiao-zhizuohaibao:before {
|
|
33
|
+
content: "\e666";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-a-Group930:before {
|
|
37
|
+
content: "\e665";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon-tubiaoanniu-tijiao2:before {
|
|
41
|
+
content: "\e664";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon-rili2:before {
|
|
45
|
+
content: "\e663";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon-tishi:before {
|
|
49
|
+
content: "\e65e";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon-tubiao-bofang:before {
|
|
53
|
+
content: "\e65f";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.icon-qiang:before {
|
|
57
|
+
content: "\e660";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon-tubiao-jinbo:before {
|
|
61
|
+
content: "\e661";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon-xin:before {
|
|
65
|
+
content: "\e662";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-tubiao-tiaozhengyouxianji1:before {
|
|
69
|
+
content: "\e65d";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.icon-shang-copy:before {
|
|
73
|
+
content: "\e7dd";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.icon-xia-copy:before {
|
|
77
|
+
content: "\e7de";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.icon-shang:before {
|
|
81
|
+
content: "\e65a";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.icon-xia:before {
|
|
85
|
+
content: "\e65b";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon-tubiao-gengduo:before {
|
|
89
|
+
content: "\e65c";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.icon-zhuanma-shengxu:before {
|
|
93
|
+
content: "\e657";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.icon-zhuanma-jiangxu:before {
|
|
97
|
+
content: "\e658";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.icon-zhuanma-weidianji:before {
|
|
101
|
+
content: "\e659";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.icon-tubiaoanniu-zhuanma:before {
|
|
105
|
+
content: "\e656";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.icon-tubiao-chuli:before {
|
|
109
|
+
content: "\e655";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.icon-tubiao-shaixuan:before {
|
|
113
|
+
content: "\e654";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.icon-caijian:before {
|
|
117
|
+
content: "\e653";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.icon-tubiao-bianzhi:before {
|
|
121
|
+
content: "\e651";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.icon-tubiao-zhongshi:before {
|
|
125
|
+
content: "\e652";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.icon-tubiao-xiangqing:before {
|
|
129
|
+
content: "\e650";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.icon-tuichudenglu:before {
|
|
133
|
+
content: "\e64e";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.icon-gerenxinxi:before {
|
|
137
|
+
content: "\e64f";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.icon-zhanweitu:before {
|
|
141
|
+
content: "\e64d";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.icon-tubiaoanniu-4K:before {
|
|
145
|
+
content: "\e64b";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.icon-tubiao-baocun:before {
|
|
149
|
+
content: "\e64c";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.icon-yanzhengma:before {
|
|
153
|
+
content: "\e64a";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.icon-tubiao-huifu:before {
|
|
157
|
+
content: "\e649";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.icon-tubiaoanniu-bangding:before {
|
|
161
|
+
content: "\e648";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.icon-logo:before {
|
|
165
|
+
content: "\e647";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.icon-rukuzhuanji:before {
|
|
169
|
+
content: "\e643";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.icon-rukushipin:before {
|
|
173
|
+
content: "\e644";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.icon-jinrirukushichang:before {
|
|
177
|
+
content: "\e645";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.icon-jinrisongshen:before {
|
|
181
|
+
content: "\e646";
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.icon-zanting:before {
|
|
185
|
+
content: "\e7dc";
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.icon-tubiao-fangda:before {
|
|
189
|
+
content: "\e642";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.icon-gaojishaixuan:before {
|
|
193
|
+
content: "\e641";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.icon-buzhou3:before {
|
|
197
|
+
content: "\e63e";
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.icon-buzhou1:before {
|
|
201
|
+
content: "\e63f";
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.icon-buzhou2:before {
|
|
205
|
+
content: "\e640";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.icon-tubiao-fuzhi:before {
|
|
209
|
+
content: "\e63d";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.icon-tubiao-shangchuan:before {
|
|
213
|
+
content: "\e63c";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.icon-a-tishi1:before {
|
|
217
|
+
content: "\e63b";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.icon-daohang-shouqizhankai:before {
|
|
221
|
+
content: "\e636";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.icon-sousuo:before {
|
|
225
|
+
content: "\e637";
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.icon-jiaobiao:before {
|
|
229
|
+
content: "\e638";
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.icon-xinghaobiao:before {
|
|
233
|
+
content: "\e639";
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.icon-riqi:before {
|
|
237
|
+
content: "\e63a";
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.icon-tubiao-qiangzhu:before {
|
|
241
|
+
content: "\e634";
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.icon-tubiao-genbo:before {
|
|
245
|
+
content: "\e635";
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.icon-tubiaoanniu-tijiao1:before {
|
|
249
|
+
content: "\e633";
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.icon-tubiaoanniu-zancunmian:before {
|
|
253
|
+
content: "\e62a";
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.icon-caozuoshouce:before {
|
|
257
|
+
content: "\e62b";
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.icon-a-xiaoximian1:before {
|
|
261
|
+
content: "\e62c";
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.icon-tubiaoanniu-bianjimian:before {
|
|
265
|
+
content: "\e62d";
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.icon-a-shipinwenjian1:before {
|
|
269
|
+
content: "\e62e";
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.icon-xingxing3:before {
|
|
273
|
+
content: "\e62f";
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.icon-xingxingxianxing:before {
|
|
277
|
+
content: "\e630";
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.icon-wancheng:before {
|
|
281
|
+
content: "\e631";
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.icon-yunshangchuan:before {
|
|
285
|
+
content: "\e632";
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.icon-zhankai2:before {
|
|
289
|
+
content: "\e628";
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.icon-zhankai:before {
|
|
293
|
+
content: "\e629";
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.icon-tubiaoanniu-chakan:before {
|
|
297
|
+
content: "\e627";
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.icon-liebiaoyangshi-2:before {
|
|
301
|
+
content: "\e624";
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.icon-liebiaoyangshi-kuai:before {
|
|
305
|
+
content: "\e625";
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.icon-liebiaoyangshi-3:before {
|
|
309
|
+
content: "\e626";
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.icon-tubiaoanniu-xiazai-1:before {
|
|
313
|
+
content: "\e61d";
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.icon-tubiaoanniu-daochu:before {
|
|
317
|
+
content: "\e61e";
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.icon-tubiaoanniu-xiazai:before {
|
|
321
|
+
content: "\e61f";
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.icon-tubiaoanniu-guanlian:before {
|
|
325
|
+
content: "\e620";
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.icon-tubiaoanniu-shanchu:before {
|
|
329
|
+
content: "\e621";
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.icon-tubiao-zhuanhuan:before {
|
|
333
|
+
content: "\e622";
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.icon-tubiaoanniu-tijiao:before {
|
|
337
|
+
content: "\e623";
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.icon-tubiao-yidu:before {
|
|
341
|
+
content: "\e613";
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.icon-tubiaoanniu-xuanze:before {
|
|
345
|
+
content: "\e614";
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.icon-tubiao-jinyong:before {
|
|
349
|
+
content: "\e615";
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.icon-tubiao-qiyong:before {
|
|
353
|
+
content: "\e616";
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.icon-tubiaoanniu-tuisong:before {
|
|
357
|
+
content: "\e617";
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.icon-tubiao-quxiaojieli:before {
|
|
361
|
+
content: "\e618";
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.icon-tubiao-hulve:before {
|
|
365
|
+
content: "\e619";
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.icon-tubiao-shezhihaibao:before {
|
|
369
|
+
content: "\e61a";
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.icon-tubiao-tongguo:before {
|
|
373
|
+
content: "\e60c";
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.icon-tubiao-bianji:before {
|
|
377
|
+
content: "\e60d";
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.icon-tubiao-jujue:before {
|
|
381
|
+
content: "\e60e";
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.icon-tubiao-shengcheng:before {
|
|
385
|
+
content: "\e60f";
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.icon-tubiao-zhebiao:before {
|
|
389
|
+
content: "\e610";
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.icon-tubiao-gengxin:before {
|
|
393
|
+
content: "\e611";
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.icon-tubiao-shenhe:before {
|
|
397
|
+
content: "\e612";
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.icon-xialajiantou:before {
|
|
401
|
+
content: "\e60b";
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.icon-tubiao-zhuanji:before {
|
|
405
|
+
content: "\e604";
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.icon-tubiao-renwu:before {
|
|
409
|
+
content: "\e605";
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.icon-tubiao-gongzuotai:before {
|
|
413
|
+
content: "\e606";
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.icon-tubiao-sucai:before {
|
|
417
|
+
content: "\e607";
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.icon-tubiao-rizhi:before {
|
|
421
|
+
content: "\e608";
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.icon-tubiao-liucheng:before {
|
|
425
|
+
content: "\e609";
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.icon-tubiao-shezhi:before {
|
|
429
|
+
content: "\e60a";
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.icon-daohang-shujukanban:before {
|
|
433
|
+
content: "\e603";
|
|
434
|
+
}
|
|
435
|
+
|