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.
Files changed (285) hide show
  1. package/CHANGELOG.md +55 -0
  2. package/README.md +28 -0
  3. package/lib/action-sheet.js +313 -0
  4. package/lib/button-group.js +421 -0
  5. package/lib/button.js +278 -0
  6. package/lib/calendar.js +301 -0
  7. package/lib/cascader.js +336 -0
  8. package/lib/cell.js +366 -0
  9. package/lib/checkbox.js +2170 -0
  10. package/lib/circle.js +299 -0
  11. package/lib/config/api.js +31 -0
  12. package/lib/count-down.js +299 -0
  13. package/lib/date.js +956 -0
  14. package/lib/empty.js +274 -0
  15. package/lib/eoss-mobile.common.js +15072 -0
  16. package/lib/field.js +440 -0
  17. package/lib/flow.js +5664 -0
  18. package/lib/form.js +714 -0
  19. package/lib/grid-item.js +274 -0
  20. package/lib/grid.js +317 -0
  21. package/lib/image-preview.js +325 -0
  22. package/lib/index.js +1 -0
  23. package/lib/list.js +315 -0
  24. package/lib/loading.js +279 -0
  25. package/lib/nav-bar.js +283 -0
  26. package/lib/pagination.js +323 -0
  27. package/lib/picker.js +2714 -0
  28. package/lib/popover.js +306 -0
  29. package/lib/popup.js +297 -0
  30. package/lib/radio.js +2137 -0
  31. package/lib/rate.js +300 -0
  32. package/lib/search.js +316 -0
  33. package/lib/selector.js +3496 -0
  34. package/lib/skeleton.js +277 -0
  35. package/lib/stepper.js +300 -0
  36. package/lib/switch.js +304 -0
  37. package/lib/tab.js +274 -0
  38. package/lib/table-column.js +2991 -0
  39. package/lib/table.js +2652 -0
  40. package/lib/tabs.js +315 -0
  41. package/lib/tag.js +281 -0
  42. package/lib/theme-chalk/action-sheet.css +0 -0
  43. package/lib/theme-chalk/base.css +1 -0
  44. package/lib/theme-chalk/button-group.css +1 -0
  45. package/lib/theme-chalk/button.css +1 -0
  46. package/lib/theme-chalk/calendar.css +1 -0
  47. package/lib/theme-chalk/cascader.css +1 -0
  48. package/lib/theme-chalk/cell.css +1 -0
  49. package/lib/theme-chalk/checkbox.css +1 -0
  50. package/lib/theme-chalk/circle.css +1 -0
  51. package/lib/theme-chalk/count-down.css +0 -0
  52. package/lib/theme-chalk/date.css +0 -0
  53. package/lib/theme-chalk/empty.css +0 -0
  54. package/lib/theme-chalk/field.css +1 -0
  55. package/lib/theme-chalk/flow.css +1 -0
  56. package/lib/theme-chalk/fonts/iconfont.scss +530 -0
  57. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  58. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  59. package/lib/theme-chalk/form.css +0 -0
  60. package/lib/theme-chalk/grid-item.css +1 -0
  61. package/lib/theme-chalk/grid.css +0 -0
  62. package/lib/theme-chalk/icon.css +1 -0
  63. package/lib/theme-chalk/image-preview.css +0 -0
  64. package/lib/theme-chalk/index.css +1 -0
  65. package/lib/theme-chalk/list.css +0 -0
  66. package/lib/theme-chalk/loading.css +0 -0
  67. package/lib/theme-chalk/nav-bar.css +0 -0
  68. package/lib/theme-chalk/navbar.css +1 -0
  69. package/lib/theme-chalk/pagination.css +1 -0
  70. package/lib/theme-chalk/picker.css +1 -0
  71. package/lib/theme-chalk/popover.css +0 -0
  72. package/lib/theme-chalk/popup.css +0 -0
  73. package/lib/theme-chalk/radio.css +1 -0
  74. package/lib/theme-chalk/rate.css +0 -0
  75. package/lib/theme-chalk/search.css +0 -0
  76. package/lib/theme-chalk/selector.css +1 -0
  77. package/lib/theme-chalk/skeleton.css +0 -0
  78. package/lib/theme-chalk/stepper.css +1 -0
  79. package/lib/theme-chalk/switch.css +1 -0
  80. package/lib/theme-chalk/tab.css +0 -0
  81. package/lib/theme-chalk/table-column.css +0 -0
  82. package/lib/theme-chalk/table.css +1 -0
  83. package/lib/theme-chalk/tabs.css +1 -0
  84. package/lib/theme-chalk/tag.css +1 -0
  85. package/lib/theme-chalk/theme.css +0 -0
  86. package/lib/theme-chalk/tree.css +1 -0
  87. package/lib/theme-chalk/uploader.css +0 -0
  88. package/lib/uploader.js +307 -0
  89. package/lib/utils/axios.js +199 -0
  90. package/lib/utils/date-util.js +320 -0
  91. package/lib/utils/http.js +74 -0
  92. package/lib/utils/rules.js +21 -0
  93. package/lib/utils/store.js +24 -0
  94. package/lib/utils/util.js +1315 -0
  95. package/package.json +153 -0
  96. package/packages/action-sheet/index.js +5 -0
  97. package/packages/action-sheet/src/main.vue +32 -0
  98. package/packages/button/index.js +5 -0
  99. package/packages/button/src/main.vue +15 -0
  100. package/packages/button-group/index.js +5 -0
  101. package/packages/button-group/src/main.vue +80 -0
  102. package/packages/calendar/index.js +5 -0
  103. package/packages/calendar/src/main.vue +34 -0
  104. package/packages/cascader/index.js +5 -0
  105. package/packages/cascader/src/main.vue +40 -0
  106. package/packages/cell/index.js +5 -0
  107. package/packages/cell/src/main.vue +72 -0
  108. package/packages/checkbox/index.js +5 -0
  109. package/packages/checkbox/src/main.vue +149 -0
  110. package/packages/circle/index.js +5 -0
  111. package/packages/circle/src/main.vue +27 -0
  112. package/packages/count-down/index.js +5 -0
  113. package/packages/count-down/src/main.vue +27 -0
  114. package/packages/date/index.js +5 -0
  115. package/packages/date/src/date-time.vue +290 -0
  116. package/packages/date/src/main.vue +319 -0
  117. package/packages/empty/index.js +5 -0
  118. package/packages/empty/src/main.vue +16 -0
  119. package/packages/field/index.js +5 -0
  120. package/packages/field/src/main.vue +130 -0
  121. package/packages/flow/index.js +5 -0
  122. package/packages/flow/src/components/Handle.vue +1031 -0
  123. package/packages/flow/src/components/Message.vue +96 -0
  124. package/packages/flow/src/components/Opinion.vue +112 -0
  125. package/packages/flow/src/components/Reject.vue +202 -0
  126. package/packages/flow/src/components/StartFlow.vue +440 -0
  127. package/packages/flow/src/components/TaskRead.vue +237 -0
  128. package/packages/flow/src/main.vue +43 -0
  129. package/packages/form/index.js +5 -0
  130. package/packages/form/src/main.vue +158 -0
  131. package/packages/grid/index.js +5 -0
  132. package/packages/grid/src/main.vue +28 -0
  133. package/packages/grid-item/index.js +5 -0
  134. package/packages/grid-item/src/main.vue +16 -0
  135. package/packages/image-preview/index.js +5 -0
  136. package/packages/image-preview/src/main.vue +34 -0
  137. package/packages/list/index.js +5 -0
  138. package/packages/list/src/main.vue +32 -0
  139. package/packages/loading/index.js +5 -0
  140. package/packages/loading/src/main.vue +20 -0
  141. package/packages/nav-bar/index.js +5 -0
  142. package/packages/nav-bar/src/main.vue +16 -0
  143. package/packages/pagination/index.js +5 -0
  144. package/packages/pagination/src/main.vue +29 -0
  145. package/packages/picker/index.js +5 -0
  146. package/packages/picker/src/main.vue +500 -0
  147. package/packages/popover/index.js +5 -0
  148. package/packages/popover/src/main.vue +32 -0
  149. package/packages/popup/index.js +5 -0
  150. package/packages/popup/src/main.vue +27 -0
  151. package/packages/radio/index.js +5 -0
  152. package/packages/radio/src/main.vue +147 -0
  153. package/packages/rate/index.js +5 -0
  154. package/packages/rate/src/main.vue +27 -0
  155. package/packages/search/index.js +5 -0
  156. package/packages/search/src/main.vue +39 -0
  157. package/packages/selector/index.js +5 -0
  158. package/packages/selector/src/main.vue +77 -0
  159. package/packages/selector/src/selector-field.vue +225 -0
  160. package/packages/selector/src/selector-tree.vue +472 -0
  161. package/packages/selector/src/tree.vue +179 -0
  162. package/packages/skeleton/index.js +5 -0
  163. package/packages/skeleton/src/main.vue +17 -0
  164. package/packages/stepper/index.js +5 -0
  165. package/packages/stepper/src/main.vue +25 -0
  166. package/packages/switch/index.js +5 -0
  167. package/packages/switch/src/main.vue +29 -0
  168. package/packages/tab/index.js +5 -0
  169. package/packages/tab/src/main.vue +16 -0
  170. package/packages/table/index.js +5 -0
  171. package/packages/table/src/main.vue +830 -0
  172. package/packages/table-column/index.js +5 -0
  173. package/packages/table-column/src/main.vue +742 -0
  174. package/packages/table-column/src/mixins/table.js +12 -0
  175. package/packages/tabs/index.js +5 -0
  176. package/packages/tabs/src/main.vue +34 -0
  177. package/packages/tag/index.js +5 -0
  178. package/packages/tag/src/main.vue +16 -0
  179. package/packages/theme-chalk/README.md +33 -0
  180. package/packages/theme-chalk/lib/action-sheet.css +0 -0
  181. package/packages/theme-chalk/lib/base.css +1 -0
  182. package/packages/theme-chalk/lib/button-group.css +1 -0
  183. package/packages/theme-chalk/lib/button.css +1 -0
  184. package/packages/theme-chalk/lib/calendar.css +1 -0
  185. package/packages/theme-chalk/lib/cascader.css +1 -0
  186. package/packages/theme-chalk/lib/cell.css +1 -0
  187. package/packages/theme-chalk/lib/checkbox.css +1 -0
  188. package/packages/theme-chalk/lib/circle.css +1 -0
  189. package/packages/theme-chalk/lib/count-down.css +0 -0
  190. package/packages/theme-chalk/lib/date.css +0 -0
  191. package/packages/theme-chalk/lib/empty.css +0 -0
  192. package/packages/theme-chalk/lib/field.css +1 -0
  193. package/packages/theme-chalk/lib/flow.css +1 -0
  194. package/packages/theme-chalk/lib/fonts/iconfont.scss +530 -0
  195. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  196. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  197. package/packages/theme-chalk/lib/form.css +0 -0
  198. package/packages/theme-chalk/lib/grid-item.css +1 -0
  199. package/packages/theme-chalk/lib/grid.css +0 -0
  200. package/packages/theme-chalk/lib/icon.css +1 -0
  201. package/packages/theme-chalk/lib/image-preview.css +0 -0
  202. package/packages/theme-chalk/lib/index.css +1 -0
  203. package/packages/theme-chalk/lib/list.css +0 -0
  204. package/packages/theme-chalk/lib/loading.css +0 -0
  205. package/packages/theme-chalk/lib/nav-bar.css +0 -0
  206. package/packages/theme-chalk/lib/navbar.css +1 -0
  207. package/packages/theme-chalk/lib/pagination.css +1 -0
  208. package/packages/theme-chalk/lib/picker.css +1 -0
  209. package/packages/theme-chalk/lib/popover.css +0 -0
  210. package/packages/theme-chalk/lib/popup.css +0 -0
  211. package/packages/theme-chalk/lib/radio.css +1 -0
  212. package/packages/theme-chalk/lib/rate.css +0 -0
  213. package/packages/theme-chalk/lib/search.css +0 -0
  214. package/packages/theme-chalk/lib/selector.css +1 -0
  215. package/packages/theme-chalk/lib/skeleton.css +0 -0
  216. package/packages/theme-chalk/lib/stepper.css +1 -0
  217. package/packages/theme-chalk/lib/switch.css +1 -0
  218. package/packages/theme-chalk/lib/tab.css +0 -0
  219. package/packages/theme-chalk/lib/table-column.css +0 -0
  220. package/packages/theme-chalk/lib/table.css +1 -0
  221. package/packages/theme-chalk/lib/tabs.css +1 -0
  222. package/packages/theme-chalk/lib/tag.css +1 -0
  223. package/packages/theme-chalk/lib/theme.css +0 -0
  224. package/packages/theme-chalk/lib/tree.css +1 -0
  225. package/packages/theme-chalk/lib/uploader.css +0 -0
  226. package/packages/theme-chalk/package.json +35 -0
  227. package/packages/theme-chalk/src/action-sheet.scss +0 -0
  228. package/packages/theme-chalk/src/base.scss +182 -0
  229. package/packages/theme-chalk/src/button-group.scss +26 -0
  230. package/packages/theme-chalk/src/button.scss +3 -0
  231. package/packages/theme-chalk/src/calendar.scss +12 -0
  232. package/packages/theme-chalk/src/cascader.scss +12 -0
  233. package/packages/theme-chalk/src/cell.scss +14 -0
  234. package/packages/theme-chalk/src/checkbox.scss +10 -0
  235. package/packages/theme-chalk/src/circle.scss +7 -0
  236. package/packages/theme-chalk/src/common/var.scss +1525 -0
  237. package/packages/theme-chalk/src/count-down.scss +0 -0
  238. package/packages/theme-chalk/src/date.scss +0 -0
  239. package/packages/theme-chalk/src/empty.scss +0 -0
  240. package/packages/theme-chalk/src/field.scss +28 -0
  241. package/packages/theme-chalk/src/flow.scss +542 -0
  242. package/packages/theme-chalk/src/fonts/iconfont.scss +530 -0
  243. package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
  244. package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
  245. package/packages/theme-chalk/src/form.scss +15 -0
  246. package/packages/theme-chalk/src/grid-item.scss +8 -0
  247. package/packages/theme-chalk/src/grid.scss +0 -0
  248. package/packages/theme-chalk/src/icon.scss +1661 -0
  249. package/packages/theme-chalk/src/image-preview.scss +0 -0
  250. package/packages/theme-chalk/src/index.scss +38 -0
  251. package/packages/theme-chalk/src/list.scss +0 -0
  252. package/packages/theme-chalk/src/loading.scss +0 -0
  253. package/packages/theme-chalk/src/mixins/color.scss +117 -0
  254. package/packages/theme-chalk/src/mixins/mixins.scss +25 -0
  255. package/packages/theme-chalk/src/nav-bar.scss +0 -0
  256. package/packages/theme-chalk/src/navbar.scss +6 -0
  257. package/packages/theme-chalk/src/pagination.scss +10 -0
  258. package/packages/theme-chalk/src/picker.scss +27 -0
  259. package/packages/theme-chalk/src/popover.scss +0 -0
  260. package/packages/theme-chalk/src/popup.scss +0 -0
  261. package/packages/theme-chalk/src/radio.scss +7 -0
  262. package/packages/theme-chalk/src/rate.scss +0 -0
  263. package/packages/theme-chalk/src/search.scss +0 -0
  264. package/packages/theme-chalk/src/selector.scss +218 -0
  265. package/packages/theme-chalk/src/skeleton.scss +0 -0
  266. package/packages/theme-chalk/src/stepper.scss +10 -0
  267. package/packages/theme-chalk/src/switch.scss +6 -0
  268. package/packages/theme-chalk/src/tab.scss +0 -0
  269. package/packages/theme-chalk/src/table-column.scss +0 -0
  270. package/packages/theme-chalk/src/table.scss +42 -0
  271. package/packages/theme-chalk/src/tabs.scss +21 -0
  272. package/packages/theme-chalk/src/tag.scss +13 -0
  273. package/packages/theme-chalk/src/theme.scss +2 -0
  274. package/packages/theme-chalk/src/tree.scss +115 -0
  275. package/packages/theme-chalk/src/uploader.scss +0 -0
  276. package/packages/uploader/index.js +5 -0
  277. package/packages/uploader/src/main.vue +31 -0
  278. package/src/config/api.js +29 -0
  279. package/src/index.js +130 -0
  280. package/src/utils/axios.js +198 -0
  281. package/src/utils/date-util.js +312 -0
  282. package/src/utils/http.js +66 -0
  283. package/src/utils/rules.js +18 -0
  284. package/src/utils/store.js +21 -0
  285. 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
+ }
@@ -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
+ }
@@ -0,0 +1,8 @@
1
+ @import './common/var.scss';
2
+ .em-grid {
3
+ .van-grid-item{
4
+ .van-info {
5
+ background-color: $--color-primary;
6
+ }
7
+ }
8
+ }
File without changes