eoss-mobiles 0.1.13
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/CHANGELOG.md +55 -0
- package/README.md +28 -0
- package/lib/action-sheet.js +313 -0
- package/lib/button-group.js +421 -0
- package/lib/button.js +278 -0
- package/lib/calendar.js +301 -0
- package/lib/cascader.js +336 -0
- package/lib/cell.js +366 -0
- package/lib/checkbox.js +2170 -0
- package/lib/circle.js +299 -0
- package/lib/config/api.js +31 -0
- package/lib/count-down.js +299 -0
- package/lib/date.js +956 -0
- package/lib/empty.js +274 -0
- package/lib/eoss-mobile.common.js +15072 -0
- package/lib/field.js +440 -0
- package/lib/flow.js +5664 -0
- package/lib/form.js +714 -0
- package/lib/grid-item.js +274 -0
- package/lib/grid.js +317 -0
- package/lib/image-preview.js +325 -0
- package/lib/index.js +1 -0
- package/lib/list.js +315 -0
- package/lib/loading.js +279 -0
- package/lib/nav-bar.js +283 -0
- package/lib/pagination.js +323 -0
- package/lib/picker.js +2714 -0
- package/lib/popover.js +306 -0
- package/lib/popup.js +297 -0
- package/lib/radio.js +2137 -0
- package/lib/rate.js +300 -0
- package/lib/search.js +316 -0
- package/lib/selector.js +3496 -0
- package/lib/skeleton.js +277 -0
- package/lib/stepper.js +300 -0
- package/lib/switch.js +304 -0
- package/lib/tab.js +274 -0
- package/lib/table-column.js +2991 -0
- package/lib/table.js +2652 -0
- package/lib/tabs.js +315 -0
- package/lib/tag.js +281 -0
- package/lib/theme-chalk/action-sheet.css +0 -0
- package/lib/theme-chalk/base.css +1 -0
- package/lib/theme-chalk/button-group.css +1 -0
- package/lib/theme-chalk/button.css +1 -0
- package/lib/theme-chalk/calendar.css +1 -0
- package/lib/theme-chalk/cascader.css +1 -0
- package/lib/theme-chalk/cell.css +1 -0
- package/lib/theme-chalk/checkbox.css +1 -0
- package/lib/theme-chalk/circle.css +1 -0
- package/lib/theme-chalk/count-down.css +0 -0
- package/lib/theme-chalk/date.css +0 -0
- package/lib/theme-chalk/empty.css +0 -0
- package/lib/theme-chalk/field.css +1 -0
- package/lib/theme-chalk/flow.css +1 -0
- package/lib/theme-chalk/fonts/iconfont.scss +530 -0
- package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
- package/lib/theme-chalk/fonts/iconfont.woff +0 -0
- package/lib/theme-chalk/form.css +0 -0
- package/lib/theme-chalk/grid-item.css +1 -0
- package/lib/theme-chalk/grid.css +0 -0
- package/lib/theme-chalk/icon.css +1 -0
- package/lib/theme-chalk/image-preview.css +0 -0
- package/lib/theme-chalk/index.css +1 -0
- package/lib/theme-chalk/list.css +0 -0
- package/lib/theme-chalk/loading.css +0 -0
- package/lib/theme-chalk/nav-bar.css +0 -0
- package/lib/theme-chalk/navbar.css +1 -0
- package/lib/theme-chalk/pagination.css +1 -0
- package/lib/theme-chalk/picker.css +1 -0
- package/lib/theme-chalk/popover.css +0 -0
- package/lib/theme-chalk/popup.css +0 -0
- package/lib/theme-chalk/radio.css +1 -0
- package/lib/theme-chalk/rate.css +0 -0
- package/lib/theme-chalk/search.css +0 -0
- package/lib/theme-chalk/selector.css +1 -0
- package/lib/theme-chalk/skeleton.css +0 -0
- package/lib/theme-chalk/stepper.css +1 -0
- package/lib/theme-chalk/switch.css +1 -0
- package/lib/theme-chalk/tab.css +0 -0
- package/lib/theme-chalk/table-column.css +0 -0
- package/lib/theme-chalk/table.css +1 -0
- package/lib/theme-chalk/tabs.css +1 -0
- package/lib/theme-chalk/tag.css +1 -0
- package/lib/theme-chalk/theme.css +0 -0
- package/lib/theme-chalk/tree.css +1 -0
- package/lib/theme-chalk/uploader.css +0 -0
- package/lib/uploader.js +307 -0
- package/lib/utils/axios.js +199 -0
- package/lib/utils/date-util.js +320 -0
- package/lib/utils/http.js +74 -0
- package/lib/utils/rules.js +21 -0
- package/lib/utils/store.js +24 -0
- package/lib/utils/util.js +1315 -0
- package/package.json +153 -0
- package/packages/action-sheet/index.js +5 -0
- package/packages/action-sheet/src/main.vue +32 -0
- package/packages/button/index.js +5 -0
- package/packages/button/src/main.vue +15 -0
- package/packages/button-group/index.js +5 -0
- package/packages/button-group/src/main.vue +80 -0
- package/packages/calendar/index.js +5 -0
- package/packages/calendar/src/main.vue +34 -0
- package/packages/cascader/index.js +5 -0
- package/packages/cascader/src/main.vue +40 -0
- package/packages/cell/index.js +5 -0
- package/packages/cell/src/main.vue +72 -0
- package/packages/checkbox/index.js +5 -0
- package/packages/checkbox/src/main.vue +149 -0
- package/packages/circle/index.js +5 -0
- package/packages/circle/src/main.vue +27 -0
- package/packages/count-down/index.js +5 -0
- package/packages/count-down/src/main.vue +27 -0
- package/packages/date/index.js +5 -0
- package/packages/date/src/date-time.vue +290 -0
- package/packages/date/src/main.vue +319 -0
- package/packages/empty/index.js +5 -0
- package/packages/empty/src/main.vue +16 -0
- package/packages/field/index.js +5 -0
- package/packages/field/src/main.vue +130 -0
- package/packages/flow/index.js +5 -0
- package/packages/flow/src/components/Handle.vue +1031 -0
- package/packages/flow/src/components/Message.vue +96 -0
- package/packages/flow/src/components/Opinion.vue +112 -0
- package/packages/flow/src/components/Reject.vue +202 -0
- package/packages/flow/src/components/StartFlow.vue +440 -0
- package/packages/flow/src/components/TaskRead.vue +237 -0
- package/packages/flow/src/main.vue +43 -0
- package/packages/form/index.js +5 -0
- package/packages/form/src/main.vue +158 -0
- package/packages/grid/index.js +5 -0
- package/packages/grid/src/main.vue +28 -0
- package/packages/grid-item/index.js +5 -0
- package/packages/grid-item/src/main.vue +16 -0
- package/packages/image-preview/index.js +5 -0
- package/packages/image-preview/src/main.vue +34 -0
- package/packages/list/index.js +5 -0
- package/packages/list/src/main.vue +32 -0
- package/packages/loading/index.js +5 -0
- package/packages/loading/src/main.vue +20 -0
- package/packages/nav-bar/index.js +5 -0
- package/packages/nav-bar/src/main.vue +16 -0
- package/packages/pagination/index.js +5 -0
- package/packages/pagination/src/main.vue +29 -0
- package/packages/picker/index.js +5 -0
- package/packages/picker/src/main.vue +500 -0
- package/packages/popover/index.js +5 -0
- package/packages/popover/src/main.vue +32 -0
- package/packages/popup/index.js +5 -0
- package/packages/popup/src/main.vue +27 -0
- package/packages/radio/index.js +5 -0
- package/packages/radio/src/main.vue +147 -0
- package/packages/rate/index.js +5 -0
- package/packages/rate/src/main.vue +27 -0
- package/packages/search/index.js +5 -0
- package/packages/search/src/main.vue +39 -0
- package/packages/selector/index.js +5 -0
- package/packages/selector/src/main.vue +77 -0
- package/packages/selector/src/selector-field.vue +225 -0
- package/packages/selector/src/selector-tree.vue +472 -0
- package/packages/selector/src/tree.vue +179 -0
- package/packages/skeleton/index.js +5 -0
- package/packages/skeleton/src/main.vue +17 -0
- package/packages/stepper/index.js +5 -0
- package/packages/stepper/src/main.vue +25 -0
- package/packages/switch/index.js +5 -0
- package/packages/switch/src/main.vue +29 -0
- package/packages/tab/index.js +5 -0
- package/packages/tab/src/main.vue +16 -0
- package/packages/table/index.js +5 -0
- package/packages/table/src/main.vue +830 -0
- package/packages/table-column/index.js +5 -0
- package/packages/table-column/src/main.vue +742 -0
- package/packages/table-column/src/mixins/table.js +12 -0
- package/packages/tabs/index.js +5 -0
- package/packages/tabs/src/main.vue +34 -0
- package/packages/tag/index.js +5 -0
- package/packages/tag/src/main.vue +16 -0
- package/packages/theme-chalk/README.md +33 -0
- package/packages/theme-chalk/lib/action-sheet.css +0 -0
- package/packages/theme-chalk/lib/base.css +1 -0
- package/packages/theme-chalk/lib/button-group.css +1 -0
- package/packages/theme-chalk/lib/button.css +1 -0
- package/packages/theme-chalk/lib/calendar.css +1 -0
- package/packages/theme-chalk/lib/cascader.css +1 -0
- package/packages/theme-chalk/lib/cell.css +1 -0
- package/packages/theme-chalk/lib/checkbox.css +1 -0
- package/packages/theme-chalk/lib/circle.css +1 -0
- package/packages/theme-chalk/lib/count-down.css +0 -0
- package/packages/theme-chalk/lib/date.css +0 -0
- package/packages/theme-chalk/lib/empty.css +0 -0
- package/packages/theme-chalk/lib/field.css +1 -0
- package/packages/theme-chalk/lib/flow.css +1 -0
- package/packages/theme-chalk/lib/fonts/iconfont.scss +530 -0
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/form.css +0 -0
- package/packages/theme-chalk/lib/grid-item.css +1 -0
- package/packages/theme-chalk/lib/grid.css +0 -0
- package/packages/theme-chalk/lib/icon.css +1 -0
- package/packages/theme-chalk/lib/image-preview.css +0 -0
- package/packages/theme-chalk/lib/index.css +1 -0
- package/packages/theme-chalk/lib/list.css +0 -0
- package/packages/theme-chalk/lib/loading.css +0 -0
- package/packages/theme-chalk/lib/nav-bar.css +0 -0
- package/packages/theme-chalk/lib/navbar.css +1 -0
- package/packages/theme-chalk/lib/pagination.css +1 -0
- package/packages/theme-chalk/lib/picker.css +1 -0
- package/packages/theme-chalk/lib/popover.css +0 -0
- package/packages/theme-chalk/lib/popup.css +0 -0
- package/packages/theme-chalk/lib/radio.css +1 -0
- package/packages/theme-chalk/lib/rate.css +0 -0
- package/packages/theme-chalk/lib/search.css +0 -0
- package/packages/theme-chalk/lib/selector.css +1 -0
- package/packages/theme-chalk/lib/skeleton.css +0 -0
- package/packages/theme-chalk/lib/stepper.css +1 -0
- package/packages/theme-chalk/lib/switch.css +1 -0
- package/packages/theme-chalk/lib/tab.css +0 -0
- package/packages/theme-chalk/lib/table-column.css +0 -0
- package/packages/theme-chalk/lib/table.css +1 -0
- package/packages/theme-chalk/lib/tabs.css +1 -0
- package/packages/theme-chalk/lib/tag.css +1 -0
- package/packages/theme-chalk/lib/theme.css +0 -0
- package/packages/theme-chalk/lib/tree.css +1 -0
- package/packages/theme-chalk/lib/uploader.css +0 -0
- package/packages/theme-chalk/package.json +35 -0
- package/packages/theme-chalk/src/action-sheet.scss +0 -0
- package/packages/theme-chalk/src/base.scss +182 -0
- package/packages/theme-chalk/src/button-group.scss +26 -0
- package/packages/theme-chalk/src/button.scss +3 -0
- package/packages/theme-chalk/src/calendar.scss +12 -0
- package/packages/theme-chalk/src/cascader.scss +12 -0
- package/packages/theme-chalk/src/cell.scss +14 -0
- package/packages/theme-chalk/src/checkbox.scss +10 -0
- package/packages/theme-chalk/src/circle.scss +7 -0
- package/packages/theme-chalk/src/common/var.scss +1525 -0
- package/packages/theme-chalk/src/count-down.scss +0 -0
- package/packages/theme-chalk/src/date.scss +0 -0
- package/packages/theme-chalk/src/empty.scss +0 -0
- package/packages/theme-chalk/src/field.scss +28 -0
- package/packages/theme-chalk/src/flow.scss +542 -0
- package/packages/theme-chalk/src/fonts/iconfont.scss +530 -0
- package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/src/form.scss +15 -0
- package/packages/theme-chalk/src/grid-item.scss +8 -0
- package/packages/theme-chalk/src/grid.scss +0 -0
- package/packages/theme-chalk/src/icon.scss +1661 -0
- package/packages/theme-chalk/src/image-preview.scss +0 -0
- package/packages/theme-chalk/src/index.scss +38 -0
- package/packages/theme-chalk/src/list.scss +0 -0
- package/packages/theme-chalk/src/loading.scss +0 -0
- package/packages/theme-chalk/src/mixins/color.scss +117 -0
- package/packages/theme-chalk/src/mixins/mixins.scss +25 -0
- package/packages/theme-chalk/src/nav-bar.scss +0 -0
- package/packages/theme-chalk/src/navbar.scss +6 -0
- package/packages/theme-chalk/src/pagination.scss +10 -0
- package/packages/theme-chalk/src/picker.scss +27 -0
- package/packages/theme-chalk/src/popover.scss +0 -0
- package/packages/theme-chalk/src/popup.scss +0 -0
- package/packages/theme-chalk/src/radio.scss +7 -0
- package/packages/theme-chalk/src/rate.scss +0 -0
- package/packages/theme-chalk/src/search.scss +0 -0
- package/packages/theme-chalk/src/selector.scss +218 -0
- package/packages/theme-chalk/src/skeleton.scss +0 -0
- package/packages/theme-chalk/src/stepper.scss +10 -0
- package/packages/theme-chalk/src/switch.scss +6 -0
- package/packages/theme-chalk/src/tab.scss +0 -0
- package/packages/theme-chalk/src/table-column.scss +0 -0
- package/packages/theme-chalk/src/table.scss +42 -0
- package/packages/theme-chalk/src/tabs.scss +21 -0
- package/packages/theme-chalk/src/tag.scss +13 -0
- package/packages/theme-chalk/src/theme.scss +2 -0
- package/packages/theme-chalk/src/tree.scss +115 -0
- package/packages/theme-chalk/src/uploader.scss +0 -0
- package/packages/uploader/index.js +5 -0
- package/packages/uploader/src/main.vue +31 -0
- package/src/config/api.js +29 -0
- package/src/index.js +130 -0
- package/src/utils/axios.js +198 -0
- package/src/utils/date-util.js +312 -0
- package/src/utils/http.js +66 -0
- package/src/utils/rules.js +18 -0
- package/src/utils/store.js +21 -0
- package/src/utils/util.js +1346 -0
|
@@ -0,0 +1,530 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 1908486 */
|
|
3
|
+
src: url('//at.alicdn.com/t/font_1908486_64sdc6nm2ec.woff2?t=1644804637169') format('woff2'),
|
|
4
|
+
url('//at.alicdn.com/t/font_1908486_64sdc6nm2ec.woff?t=1644804637169') format('woff'),
|
|
5
|
+
url('//at.alicdn.com/t/font_1908486_64sdc6nm2ec.ttf?t=1644804637169') 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-bohui:before {
|
|
17
|
+
content: "\ebdf";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-liuchengliebiao:before {
|
|
21
|
+
content: "\e638";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon-gonggao:before {
|
|
25
|
+
content: "\e651";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-filter:before {
|
|
29
|
+
content: "\e6c7";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-qiandao:before {
|
|
33
|
+
content: "\e627";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-xitongxiaoxi1:before {
|
|
37
|
+
content: "\e70c";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon-shoukuan:before {
|
|
41
|
+
content: "\e710";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon-fukuan:before {
|
|
45
|
+
content: "\e67e";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon-cross:before {
|
|
49
|
+
content: "\e758";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon-dengdai:before {
|
|
53
|
+
content: "\e759";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.icon-tongguo:before {
|
|
57
|
+
content: "\e75b";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon-qiye11:before {
|
|
61
|
+
content: "\e756";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon-shujuzhongxin7:before {
|
|
65
|
+
content: "\e6dd";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-gengduotupian:before {
|
|
69
|
+
content: "\e633";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.icon-shangzhang:before {
|
|
73
|
+
content: "\e6fc";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.icon-shangzhang1:before {
|
|
77
|
+
content: "\e716";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.icon-duoren:before {
|
|
81
|
+
content: "\e679";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.icon-fuzeren1:before {
|
|
85
|
+
content: "\e62d";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon-datav-nbp_serial-process-node:before {
|
|
89
|
+
content: "\e62e";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.icon-binglian:before {
|
|
93
|
+
content: "\e632";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.icon-panduan1:before {
|
|
97
|
+
content: "\e637";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.icon-danren:before {
|
|
101
|
+
content: "\eb00";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.icon-bangongshi:before {
|
|
105
|
+
content: "\e620";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.icon-jingban:before {
|
|
109
|
+
content: "\e621";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.icon-renshi:before {
|
|
113
|
+
content: "\e6d0";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.icon-shangbao:before {
|
|
117
|
+
content: "\e622";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.icon-lingdao2:before {
|
|
121
|
+
content: "\e76f";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.icon-fuzeren:before {
|
|
125
|
+
content: "\e623";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.icon-jiangxu:before {
|
|
129
|
+
content: "\ea20";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.icon-shengxu:before {
|
|
133
|
+
content: "\e6e1";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.icon-qiye1:before {
|
|
137
|
+
content: "\e784";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.icon-qiye2:before {
|
|
141
|
+
content: "\e61b";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.icon-qiye3:before {
|
|
145
|
+
content: "\e61c";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.icon-qiye4:before {
|
|
149
|
+
content: "\e65f";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.icon-qiye5:before {
|
|
153
|
+
content: "\e61d";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.icon-qiye6:before {
|
|
157
|
+
content: "\e7bd";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.icon-qiye7:before {
|
|
161
|
+
content: "\e66a";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.icon-qiye8:before {
|
|
165
|
+
content: "\e669";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.icon-sort-bottom:before {
|
|
169
|
+
content: "\e618";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.icon-top:before {
|
|
173
|
+
content: "\e61a";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.icon-e675:before {
|
|
177
|
+
content: "\e6a0";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.icon-heguixingjiancha:before {
|
|
181
|
+
content: "\e840";
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.icon-hetong:before {
|
|
185
|
+
content: "\e616";
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.icon-anjian:before {
|
|
189
|
+
content: "\e6de";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.icon-jiaoyupeixun:before {
|
|
193
|
+
content: "\e617";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.icon-anjian1:before {
|
|
197
|
+
content: "\ea1f";
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.icon-falvyuanzhu:before {
|
|
201
|
+
content: "\e6a1";
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.icon-shanchu:before {
|
|
205
|
+
content: "\e615";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.icon-shuru:before {
|
|
209
|
+
content: "\e692";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.icon-star:before {
|
|
213
|
+
content: "\e687";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.icon-lingdao1:before {
|
|
217
|
+
content: "\e614";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.icon-duiwaihezuojiaoliu:before {
|
|
221
|
+
content: "\e751";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.icon-quan:before {
|
|
225
|
+
content: "\e61f";
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.icon-gou:before {
|
|
229
|
+
content: "\e653";
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.icon-jian:before {
|
|
233
|
+
content: "\e683";
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.icon-jia:before {
|
|
237
|
+
content: "\e631";
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.icon-zhiban:before {
|
|
241
|
+
content: "\e63f";
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.icon-richeng:before {
|
|
245
|
+
content: "\e628";
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.icon-huiyishi:before {
|
|
249
|
+
content: "\e62c";
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.icon-tongzhi1:before {
|
|
253
|
+
content: "\e63c";
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.icon--xuexiqiangguo--:before {
|
|
257
|
+
content: "\e613";
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.icon-huiyiguanli:before {
|
|
261
|
+
content: "\e777";
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.icon-wenjian:before {
|
|
265
|
+
content: "\e7e0";
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.icon-shezhiziduan:before {
|
|
269
|
+
content: "\e765";
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.icon-ziyuan:before {
|
|
273
|
+
content: "\e64e";
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.icon-huiyiliebiao:before {
|
|
277
|
+
content: "\e658";
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.icon-lingdao:before {
|
|
281
|
+
content: "\e686";
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.icon-riqi:before {
|
|
285
|
+
content: "\e62b";
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.icon-pdf1:before {
|
|
289
|
+
content: "\e693";
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.icon-shu:before {
|
|
293
|
+
content: "\e612";
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.icon-download:before {
|
|
297
|
+
content: "\e66d";
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.icon-jiaohuan:before {
|
|
301
|
+
content: "\e625";
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.icon-ziliao:before {
|
|
305
|
+
content: "\e6b6";
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.icon-lingdang:before {
|
|
309
|
+
content: "\e635";
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.icon-other:before {
|
|
313
|
+
content: "\e611";
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.icon-gongwen:before {
|
|
317
|
+
content: "\e64a";
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.icon-wuxing:before {
|
|
321
|
+
content: "\e630";
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.icon-sousuo:before {
|
|
325
|
+
content: "\e67a";
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.icon-qiye:before {
|
|
329
|
+
content: "\e746";
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.icon-jiangpin:before {
|
|
333
|
+
content: "\e60c";
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.icon-jifen:before {
|
|
337
|
+
content: "\e60b";
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.icon-bangzhuzhongxin:before {
|
|
341
|
+
content: "\e624";
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.icon-shoucang:before {
|
|
345
|
+
content: "\e619";
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.icon-shouhuodizhi:before {
|
|
349
|
+
content: "\e65c";
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.icon-post:before {
|
|
353
|
+
content: "\e636";
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.icon-yishouhuo:before {
|
|
357
|
+
content: "\e776";
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.icon-zhifu:before {
|
|
361
|
+
content: "\e634";
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.icon-yifahuo:before {
|
|
365
|
+
content: "\e60a";
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.icon-zhuye:before {
|
|
369
|
+
content: "\e81f";
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.icon-mima:before {
|
|
373
|
+
content: "\e60d";
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.icon-daozha:before {
|
|
377
|
+
content: "\e674";
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.icon-che:before {
|
|
381
|
+
content: "\e688";
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.icon-yuyin:before {
|
|
385
|
+
content: "\e718";
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.icon-zprck:before {
|
|
389
|
+
content: "\e608";
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.icon-cunhuo:before {
|
|
393
|
+
content: "\e6a6";
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.icon-yingshouzhangkuan:before {
|
|
397
|
+
content: "\e643";
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.icon-shaixuan:before {
|
|
401
|
+
content: "\e62a";
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.icon-saomiao:before {
|
|
405
|
+
content: "\e6d1";
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.icon-zhuti:before {
|
|
409
|
+
content: "\e629";
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.icon-user-copy:before {
|
|
413
|
+
content: "\e606";
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.icon-notice:before {
|
|
417
|
+
content: "\e607";
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.icon-touxiang:before {
|
|
421
|
+
content: "\e662";
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.icon-danwei:before {
|
|
425
|
+
content: "\e668";
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.icon-pdf:before {
|
|
429
|
+
content: "\e626";
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.icon-right:before {
|
|
433
|
+
content: "\e604";
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.icon-fanhui:before {
|
|
437
|
+
content: "\ea14";
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.icon-tubiao:before {
|
|
441
|
+
content: "\e6af";
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.icon-zhongdianxiangmu:before {
|
|
445
|
+
content: "\e62f";
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.icon-guanbi:before {
|
|
449
|
+
content: "\e603";
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.icon-mulu1:before {
|
|
453
|
+
content: "\e647";
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.icon-mulu:before {
|
|
457
|
+
content: "\e61e";
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.icon-down:before {
|
|
461
|
+
content: "\ea15";
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.icon-up:before {
|
|
465
|
+
content: "\e605";
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.icon-weituo:before {
|
|
469
|
+
content: "\e7ec";
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.icon-qu:before {
|
|
473
|
+
content: "\ea13";
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.icon-shi:before {
|
|
477
|
+
content: "\e87a";
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.icon-caiwucopy:before {
|
|
481
|
+
content: "\e67f";
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.icon-quanshehuigudingzichantouzi:before {
|
|
485
|
+
content: "\e8c0";
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.icon-dang:before {
|
|
489
|
+
content: "\e609";
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.icon-gudingzichantouzi:before {
|
|
493
|
+
content: "\e648";
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.icon-dianziqikan:before {
|
|
497
|
+
content: "\e6d9";
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.icon-huiyi:before {
|
|
501
|
+
content: "\e60f";
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.icon-daiban:before {
|
|
505
|
+
content: "\e610";
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.icon-duanxin:before {
|
|
509
|
+
content: "\e602";
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.icon-tongzhi:before {
|
|
513
|
+
content: "\e65e";
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.icon-xiaoxi:before {
|
|
517
|
+
content: "\e60e";
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.icon-tongxunlu1:before {
|
|
521
|
+
content: "\e600";
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.icon-wendang-copy:before {
|
|
525
|
+
content: "\e601";
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.icon-wode:before {
|
|
529
|
+
content: "\e6ce";
|
|
530
|
+
}
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.em-form{
|
|
2
|
+
// .van-field__value,
|
|
3
|
+
// .van-field__control ,
|
|
4
|
+
// .em-date .em-input,.em-selector .em-input{
|
|
5
|
+
// border-radius: 3px;
|
|
6
|
+
// border: 1px solid #d9d9d9;
|
|
7
|
+
// .van-cell {
|
|
8
|
+
// background-color: unset;
|
|
9
|
+
// }
|
|
10
|
+
// .van-field__error-message {
|
|
11
|
+
// position: absolute;
|
|
12
|
+
// bottom: -14px;
|
|
13
|
+
// }
|
|
14
|
+
// }
|
|
15
|
+
}
|
|
File without changes
|