@10yun/cv-mobile-ui 0.5.18 → 0.5.20

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 (1839) hide show
  1. package/other/api-set-tabbar.nvue +147 -0
  2. package/other/mpvue-echarts/src/echarts.vue +112 -0
  3. package/other/mpvue-echarts/src/style.css +6 -0
  4. package/other/mpvue-picker/mpvuePicker.vue +402 -0
  5. package/other/mpvue-picker/style.css +75 -0
  6. package/other/product.vue +20 -0
  7. package/other/style.css +46 -0
  8. package/other/tab-nvue/mediaList.vue +68 -0
  9. package/other/tab-nvue/style.css +124 -0
  10. package/other/uParse/components/style.css +1 -0
  11. package/other/uParse/components/wxParseAudio.vue +1 -0
  12. package/other/uParse/components/wxParseImg.vue +86 -0
  13. package/other/uParse/components/wxParseTable.vue +54 -0
  14. package/other/uParse/components/wxParseTemplate0.vue +98 -0
  15. package/other/uParse/components/wxParseTemplate1.vue +81 -0
  16. package/other/uParse/components/wxParseTemplate10.vue +81 -0
  17. package/other/uParse/components/wxParseTemplate11.vue +79 -0
  18. package/other/uParse/components/wxParseTemplate2.vue +81 -0
  19. package/other/uParse/components/wxParseTemplate3.vue +81 -0
  20. package/other/uParse/components/wxParseTemplate4.vue +81 -0
  21. package/other/uParse/components/wxParseTemplate5.vue +81 -0
  22. package/other/uParse/components/wxParseTemplate6.vue +81 -0
  23. package/other/uParse/components/wxParseTemplate7.vue +81 -0
  24. package/other/uParse/components/wxParseTemplate8.vue +81 -0
  25. package/other/uParse/components/wxParseTemplate9.vue +81 -0
  26. package/other/uParse/components/wxParseVideo.vue +14 -0
  27. package/other/uParse/editor.css +495 -0
  28. package/other/uParse/libs/html2json.js +258 -0
  29. package/other/uParse/libs/htmlparser.js +163 -0
  30. package/other/uParse/libs/wxDiscode.js +195 -0
  31. package/other/uParse/wxParse.vue +196 -0
  32. package/package.json +1 -1
  33. package/plugins/map/amqp-wx.js +173 -0
  34. package/plugins/uni-upgrade.js +0 -1
  35. package/ui-cv/components/cv-banner/cv-banner.vue +131 -0
  36. package/ui-cv/components/cv-banner-card/cv-banner-card.vue +145 -0
  37. package/ui-cv/components/cv-base-audio/cv-base-audio.vue +282 -0
  38. package/ui-cv/components/cv-block/cv-block.vue +91 -0
  39. package/ui-cv/components/cv-box/cv-box.vue +77 -0
  40. package/ui-cv/components/cv-btn-base/cv-btn-base.vue +73 -0
  41. package/ui-cv/components/cv-cell-row/cv-cell-row.vue +220 -0
  42. package/ui-cv/components/cv-checkbox-group/cv-checkbox-group.vue +260 -0
  43. package/ui-cv/components/cv-checkbox-opt-base/cv-checkbox-opt-base.vue +100 -0
  44. package/ui-cv/components/cv-checkbox-opt-tag/cv-checkbox-opt-tag.vue +114 -0
  45. package/ui-cv/components/cv-code-sms/cv-code-sms.vue +232 -0
  46. package/ui-cv/components/cv-date-base/cv-date-base.vue +108 -0
  47. package/ui-cv/components/cv-datetime-base/cv-datetime-base.vue +155 -0
  48. package/ui-cv/components/cv-datetime-linkage/cv-datetime-linkage.vue +492 -0
  49. package/ui-cv/components/cv-dialog-bottom/cv-dialog-bottom.vue +171 -0
  50. package/ui-cv/components/cv-dialog-full/cv-dialog-full.vue +158 -0
  51. package/ui-cv/components/cv-dialog-loading/cv-dialog-loading.vue +102 -0
  52. package/ui-cv/components/cv-dialog-share/cv-dialog-share.vue +160 -0
  53. package/ui-cv/components/cv-draw-barcode/cv-draw-barcode.vue +212 -0
  54. package/ui-cv/components/cv-draw-gesture-lock/cv-draw-gesture-lock.vue +127 -0
  55. package/ui-cv/components/cv-draw-gesture-lock/gestureLock.js +169 -0
  56. package/ui-cv/components/cv-draw-gesture-lock/style.css +39 -0
  57. package/ui-cv/components/cv-draw-posters/cv-draw-posters.vue +495 -0
  58. package/ui-cv/components/cv-draw-progress/cv-draw-progress.vue +143 -0
  59. package/ui-cv/components/cv-draw-qrcode/cv-draw-qrcode.vue +308 -0
  60. package/ui-cv/components/cv-editor-parse/cv-editor-parse.vue +115 -0
  61. package/ui-cv/components/cv-editor-quill/cv-editor-quill.vue +487 -0
  62. package/ui-cv/components/cv-filter-hm/cv-filter-hm.vue +869 -0
  63. package/ui-cv/components/cv-form-base/cv-form-base.vue +471 -0
  64. package/ui-cv/components/cv-form-group/cv-form-group.vue +126 -0
  65. package/ui-cv/components/cv-form-item/cv-form-item.vue +561 -0
  66. package/ui-cv/components/cv-geo-local/cv-geo-local.vue +264 -0
  67. package/ui-cv/components/cv-geo-region/cv-geo-region.vue +246 -0
  68. package/ui-cv/components/cv-geo-region/mpvueCityPicker.vue +144 -0
  69. package/ui-cv/components/cv-geo-region/style.css +77 -0
  70. package/ui-cv/components/cv-grid-item/cv-grid-item.vue +210 -0
  71. package/ui-cv/components/cv-icons/cv-icons.vue +136 -0
  72. package/ui-cv/components/cv-input-digit/cv-input-digit.vue +114 -0
  73. package/ui-cv/components/cv-input-idcard/cv-input-idcard.vue +109 -0
  74. package/ui-cv/components/cv-input-number/cv-input-number.vue +115 -0
  75. package/ui-cv/components/cv-input-password/cv-input-password.vue +127 -0
  76. package/ui-cv/components/cv-input-text/cv-input-text.vue +118 -0
  77. package/ui-cv/components/cv-layout-topbar/cv-layout-topbar.vue +239 -0
  78. package/ui-cv/components/cv-link/cv-link.vue +60 -0
  79. package/ui-cv/components/cv-lists-base/cv-lists-base.vue +653 -0
  80. package/ui-cv/components/cv-lists-swiper/cv-lists-swipe2r.vue +200 -0
  81. package/ui-cv/components/cv-lists-swiper/cv-lists-swiper.vue +520 -0
  82. package/ui-cv/components/cv-load-empty/cv-load-empty.vue +60 -0
  83. package/ui-cv/components/cv-load-more/cv-load-more.vue +410 -0
  84. package/ui-cv/components/cv-load-more2/cv-load-more2.vue +47 -0
  85. package/ui-cv/components/cv-markdown-show/cv-markdown-show.vue +108 -0
  86. package/ui-cv/components/cv-message/cv-message.vue +40 -0
  87. package/ui-cv/components/cv-picker1/cv-picker1.vue +208 -0
  88. package/ui-cv/components/cv-picker2/cv-picker2.vue +255 -0
  89. package/ui-cv/components/cv-picker3/cv-picker3.vue +316 -0
  90. package/ui-cv/components/cv-radio-group/cv-radio-group.vue +199 -0
  91. package/ui-cv/components/cv-radio-opt-base/cv-radio-opt-base.vue +94 -0
  92. package/ui-cv/components/cv-radio-opt-tag/cv-radio-opt-tag.vue +110 -0
  93. package/ui-cv/components/cv-rate/cv-rate.vue +185 -0
  94. package/ui-cv/components/cv-search/cv-search.vue +185 -0
  95. package/ui-cv/components/cv-skeleton/cv-skeleton.vue +174 -0
  96. package/ui-cv/components/cv-skeleton/cv-skeleton2.vue +213 -0
  97. package/ui-cv/components/cv-skeleton-group/cv-skeleton-group.vue +24 -0
  98. package/ui-cv/components/cv-specs/cv-specs.vue +320 -0
  99. package/ui-cv/components/cv-switch/cv-switch.vue +113 -0
  100. package/ui-cv/components/cv-tab-lists/cv-tab-lists.vue +711 -0
  101. package/ui-cv/components/cv-tabs-box/cv-tabs-box.vue +100 -0
  102. package/ui-cv/components/cv-tabs-item/cv-tabs-item.vue +85 -0
  103. package/ui-cv/components/cv-textarea/cv-textarea.vue +144 -0
  104. package/ui-cv/components/cv-time-base/cv-time-base.vue +103 -0
  105. package/ui-cv/components/cv-treaty/cv-treaty.vue +95 -0
  106. package/ui-cv/components/cv-upload-avatar/cv-upload-avatar.vue +145 -0
  107. package/ui-cv/components/cv-upload-image/cv-upload-image.vue +481 -0
  108. package/ui-cv/libs/mixin/mixin.js +1 -0
  109. package/ui-cv/libs/mixin/mpMixin.js +8 -0
  110. package/uni-ui/LICENSE +202 -0
  111. package/uni-ui/README.md +245 -0
  112. package/uni-ui/lib/uni-badge/style.css +81 -0
  113. package/uni-ui/lib/uni-badge/style.scss +106 -0
  114. package/uni-ui/lib/uni-badge/uni-badge.vue +1 -0
  115. package/uni-ui/lib/uni-breadcrumb/style.css +3 -0
  116. package/uni-ui/lib/uni-breadcrumb/style.scss +4 -0
  117. package/uni-ui/lib/uni-breadcrumb/uni-breadcrumb.vue +1 -0
  118. package/uni-ui/lib/uni-breadcrumb-item/style.css +30 -0
  119. package/uni-ui/lib/uni-breadcrumb-item/style.scss +40 -0
  120. package/uni-ui/lib/uni-breadcrumb-item/uni-breadcrumb-item.vue +1 -0
  121. package/uni-ui/lib/uni-calendar/i18n/en.json +12 -0
  122. package/uni-ui/lib/uni-calendar/i18n/index.js +8 -0
  123. package/uni-ui/lib/uni-calendar/i18n/zh-Hans.json +12 -0
  124. package/uni-ui/lib/uni-calendar/i18n/zh-Hant.json +12 -0
  125. package/uni-ui/lib/uni-calendar/style.css +167 -0
  126. package/uni-ui/lib/uni-calendar/style.scss +200 -0
  127. package/uni-ui/lib/uni-calendar/uni-calendar-item.vue +1 -0
  128. package/uni-ui/lib/uni-calendar/uni-calendar.vue +1 -0
  129. package/uni-ui/lib/uni-calendar/util.js +360 -0
  130. package/uni-ui/lib/uni-card/style.css +115 -0
  131. package/uni-ui/lib/uni-card/style.scss +161 -0
  132. package/uni-ui/lib/uni-card/uni-card.vue +1 -0
  133. package/uni-ui/lib/uni-col/style.css +2145 -0
  134. package/uni-ui/lib/uni-col/style.scss +112 -0
  135. package/uni-ui/lib/uni-col/uni-col.vue +205 -0
  136. package/uni-ui/lib/uni-collapse/style.css +11 -0
  137. package/uni-ui/lib/uni-collapse/style.scss +12 -0
  138. package/uni-ui/lib/uni-collapse/uni-collapse.vue +1 -0
  139. package/uni-ui/lib/uni-collapse-item/style.css +120 -0
  140. package/uni-ui/lib/uni-collapse-item/style.scss +143 -0
  141. package/uni-ui/lib/uni-collapse-item/uni-collapse-item.vue +1 -0
  142. package/uni-ui/lib/uni-combox/style.css +114 -0
  143. package/uni-ui/lib/uni-combox/style.scss +133 -0
  144. package/uni-ui/lib/uni-combox/uni-combox.vue +174 -0
  145. package/uni-ui/lib/uni-countdown/i18n/en.json +6 -0
  146. package/uni-ui/lib/uni-countdown/i18n/index.js +8 -0
  147. package/uni-ui/lib/uni-countdown/i18n/zh-Hans.json +6 -0
  148. package/uni-ui/lib/uni-countdown/i18n/zh-Hant.json +6 -0
  149. package/uni-ui/lib/uni-countdown/style.css +16 -0
  150. package/uni-ui/lib/uni-countdown/style.scss +21 -0
  151. package/uni-ui/lib/uni-countdown/uni-countdown.vue +1 -0
  152. package/uni-ui/lib/uni-data-checkbox/style.css +302 -0
  153. package/uni-ui/lib/uni-data-checkbox/style.scss +366 -0
  154. package/uni-ui/lib/uni-data-checkbox/uni-data-checkbox.vue +1 -0
  155. package/uni-ui/lib/uni-data-picker/uni-data-picker.vue +1 -0
  156. package/uni-ui/lib/uni-data-pickerview/style.css +134 -0
  157. package/uni-ui/lib/uni-data-pickerview/style.scss +154 -0
  158. package/uni-ui/lib/uni-data-pickerview/uni-data-picker.js +622 -0
  159. package/uni-ui/lib/uni-data-pickerview/uni-data-pickerview.vue +1 -0
  160. package/uni-ui/lib/uni-data-select/style.css +181 -0
  161. package/uni-ui/lib/uni-data-select/style.scss +213 -0
  162. package/uni-ui/lib/uni-data-select/uni-data-select.vue +1 -0
  163. package/uni-ui/lib/uni-dateformat/uni-dateformat.vue +84 -0
  164. package/uni-ui/lib/uni-datetime-picker/calendar-item.vue +1 -0
  165. package/uni-ui/lib/uni-datetime-picker/calendar.vue +1 -0
  166. package/uni-ui/lib/uni-datetime-picker/i18n/en.json +22 -0
  167. package/uni-ui/lib/uni-datetime-picker/i18n/index.js +8 -0
  168. package/uni-ui/lib/uni-datetime-picker/i18n/zh-Hans.json +22 -0
  169. package/uni-ui/lib/uni-datetime-picker/i18n/zh-Hant.json +22 -0
  170. package/uni-ui/lib/uni-datetime-picker/style.css +188 -0
  171. package/uni-ui/lib/uni-datetime-picker/style.scss +218 -0
  172. package/uni-ui/lib/uni-datetime-picker/time-picker.vue +1 -0
  173. package/uni-ui/lib/uni-datetime-picker/uni-datetime-picker.vue +1 -0
  174. package/uni-ui/lib/uni-datetime-picker/util.js +403 -0
  175. package/uni-ui/lib/uni-drawer/keypress.js +45 -0
  176. package/uni-ui/lib/uni-drawer/style.css +63 -0
  177. package/uni-ui/lib/uni-drawer/style.scss +77 -0
  178. package/uni-ui/lib/uni-drawer/uni-drawer.vue +1 -0
  179. package/uni-ui/lib/uni-easyinput/style.css +126 -0
  180. package/uni-ui/lib/uni-easyinput/style.scss +155 -0
  181. package/uni-ui/lib/uni-easyinput/uni-easyinput.vue +1 -0
  182. package/uni-ui/lib/uni-fab/style.css +185 -0
  183. package/uni-ui/lib/uni-fab/style.scss +259 -0
  184. package/uni-ui/lib/uni-fab/uni-fab.vue +1 -0
  185. package/uni-ui/lib/uni-fav/i18n/en.json +4 -0
  186. package/uni-ui/lib/uni-fav/i18n/index.js +8 -0
  187. package/uni-ui/lib/uni-fav/i18n/zh-Hans.json +4 -0
  188. package/uni-ui/lib/uni-fav/i18n/zh-Hant.json +4 -0
  189. package/uni-ui/lib/uni-fav/style.css +39 -0
  190. package/uni-ui/lib/uni-fav/style.scss +45 -0
  191. package/uni-ui/lib/uni-fav/uni-fav.vue +1 -0
  192. package/uni-ui/lib/uni-file-picker/choose-and-upload-file.js +224 -0
  193. package/uni-ui/lib/uni-file-picker/style.css +97 -0
  194. package/uni-ui/lib/uni-file-picker/style.scss +110 -0
  195. package/uni-ui/lib/uni-file-picker/uni-file-picker.vue +1 -0
  196. package/uni-ui/lib/uni-file-picker/upload-file.vue +1 -0
  197. package/uni-ui/lib/uni-file-picker/upload-image.vue +1 -0
  198. package/uni-ui/lib/uni-forms/style.css +0 -0
  199. package/uni-ui/lib/uni-forms/style.scss +3 -0
  200. package/uni-ui/lib/uni-forms/uni-forms.vue +1 -0
  201. package/uni-ui/lib/uni-forms/utils.js +293 -0
  202. package/{ui-uni → uni-ui/lib}/uni-forms/validate.js +0 -0
  203. package/uni-ui/lib/uni-forms-item/style.css +133 -0
  204. package/uni-ui/lib/uni-forms-item/style.scss +165 -0
  205. package/uni-ui/lib/uni-forms-item/uni-forms-item.vue +1 -0
  206. package/uni-ui/lib/uni-goods-nav/i18n/en.json +6 -0
  207. package/uni-ui/lib/uni-goods-nav/i18n/index.js +8 -0
  208. package/uni-ui/lib/uni-goods-nav/i18n/zh-Hans.json +6 -0
  209. package/uni-ui/lib/uni-goods-nav/i18n/zh-Hant.json +6 -0
  210. package/uni-ui/lib/uni-goods-nav/style.css +100 -0
  211. package/uni-ui/lib/uni-goods-nav/style.scss +122 -0
  212. package/uni-ui/lib/uni-goods-nav/uni-goods-nav.vue +1 -0
  213. package/uni-ui/lib/uni-grid/style.css +29 -0
  214. package/uni-ui/lib/uni-grid/style.scss +33 -0
  215. package/uni-ui/lib/uni-grid/uni-grid.vue +1 -0
  216. package/uni-ui/lib/uni-grid-item/style.css +49 -0
  217. package/uni-ui/lib/uni-grid-item/style.scss +55 -0
  218. package/uni-ui/lib/uni-grid-item/uni-grid-item.vue +1 -0
  219. package/uni-ui/lib/uni-group/style.css +36 -0
  220. package/uni-ui/lib/uni-group/style.scss +50 -0
  221. package/uni-ui/lib/uni-group/uni-group.vue +1 -0
  222. package/uni-ui/lib/uni-icons/icons.js +1169 -0
  223. package/uni-ui/lib/uni-icons/style.css +12 -0
  224. package/uni-ui/lib/uni-icons/style.scss +14 -0
  225. package/uni-ui/lib/uni-icons/uni-icons.vue +1 -0
  226. package/uni-ui/lib/uni-icons/uniicons.css +663 -0
  227. package/uni-ui/lib/uni-icons/uniicons.ttf +0 -0
  228. package/uni-ui/lib/uni-indexed-list/style.css +68 -0
  229. package/uni-ui/lib/uni-indexed-list/style.scss +83 -0
  230. package/uni-ui/lib/uni-indexed-list/uni-indexed-list-item.vue +1 -0
  231. package/uni-ui/lib/uni-indexed-list/uni-indexed-list.vue +1 -0
  232. package/uni-ui/lib/uni-link/uni-link.vue +140 -0
  233. package/uni-ui/lib/uni-list/style.css +43 -0
  234. package/uni-ui/lib/uni-list/style.scss +52 -0
  235. package/uni-ui/lib/uni-list/uni-list.vue +1 -0
  236. package/uni-ui/lib/uni-list/uni-refresh.vue +63 -0
  237. package/uni-ui/lib/uni-list/uni-refresh.wxs +87 -0
  238. package/uni-ui/lib/uni-list-ad/style.css +30 -0
  239. package/uni-ui/lib/uni-list-ad/style.scss +35 -0
  240. package/uni-ui/lib/uni-list-ad/uni-list-ad.vue +1 -0
  241. package/uni-ui/lib/uni-list-chat/style.css +257 -0
  242. package/uni-ui/lib/uni-list-chat/style.scss +326 -0
  243. package/uni-ui/lib/uni-list-chat/uni-list-chat.scss +58 -0
  244. package/uni-ui/lib/uni-list-chat/uni-list-chat.vue +1 -0
  245. package/uni-ui/lib/uni-list-item/style.css +170 -0
  246. package/uni-ui/lib/uni-list-item/style.scss +213 -0
  247. package/uni-ui/lib/uni-list-item/uni-list-item.vue +1 -0
  248. package/uni-ui/lib/uni-load-more/i18n/en.json +5 -0
  249. package/uni-ui/lib/uni-load-more/i18n/index.js +8 -0
  250. package/uni-ui/lib/uni-load-more/i18n/zh-Hans.json +5 -0
  251. package/uni-ui/lib/uni-load-more/i18n/zh-Hant.json +5 -0
  252. package/uni-ui/lib/uni-load-more/style.css +194 -0
  253. package/uni-ui/lib/uni-load-more/style.scss +244 -0
  254. package/uni-ui/lib/uni-load-more/uni-load-more.vue +1 -0
  255. package/uni-ui/lib/uni-nav-bar/style.css +3 -0
  256. package/uni-ui/lib/uni-nav-bar/style.scss +6 -0
  257. package/uni-ui/lib/uni-nav-bar/uni-nav-bar.vue +1 -0
  258. package/uni-ui/lib/uni-nav-bar/uni-status-bar.vue +1 -0
  259. package/uni-ui/lib/uni-notice-bar/style.css +109 -0
  260. package/uni-ui/lib/uni-notice-bar/style.scss +125 -0
  261. package/uni-ui/lib/uni-notice-bar/uni-notice-bar.vue +1 -0
  262. package/uni-ui/lib/uni-number-box/style.css +50 -0
  263. package/uni-ui/lib/uni-number-box/style.scss +64 -0
  264. package/uni-ui/lib/uni-number-box/uni-number-box.vue +1 -0
  265. package/uni-ui/lib/uni-pagination/i18n/en.json +5 -0
  266. package/uni-ui/lib/uni-pagination/i18n/es.json +5 -0
  267. package/uni-ui/lib/uni-pagination/i18n/fr.json +5 -0
  268. package/uni-ui/lib/uni-pagination/i18n/index.js +12 -0
  269. package/uni-ui/lib/uni-pagination/i18n/zh-Hans.json +5 -0
  270. package/uni-ui/lib/uni-pagination/i18n/zh-Hant.json +5 -0
  271. package/uni-ui/lib/uni-pagination/style.css +125 -0
  272. package/uni-ui/lib/uni-pagination/style.scss +154 -0
  273. package/uni-ui/lib/uni-pagination/uni-pagination.vue +1 -0
  274. package/uni-ui/lib/uni-popup/i18n/en.json +7 -0
  275. package/uni-ui/lib/uni-popup/i18n/index.js +8 -0
  276. package/uni-ui/lib/uni-popup/i18n/zh-Hans.json +7 -0
  277. package/uni-ui/lib/uni-popup/i18n/zh-Hant.json +7 -0
  278. package/uni-ui/lib/uni-popup/keypress.js +45 -0
  279. package/uni-ui/lib/uni-popup/popup.js +26 -0
  280. package/uni-ui/lib/uni-popup/style.css +41 -0
  281. package/uni-ui/lib/uni-popup/style.scss +51 -0
  282. package/uni-ui/lib/uni-popup/uni-popup.vue +426 -0
  283. package/uni-ui/lib/uni-popup-dialog/keypress.js +45 -0
  284. package/uni-ui/lib/uni-popup-dialog/style.css +82 -0
  285. package/uni-ui/lib/uni-popup-dialog/style.scss +98 -0
  286. package/uni-ui/lib/uni-popup-dialog/uni-popup-dialog.vue +1 -0
  287. package/uni-ui/lib/uni-popup-message/style.css +57 -0
  288. package/uni-ui/lib/uni-popup-message/style.scss +69 -0
  289. package/uni-ui/lib/uni-popup-message/uni-popup-message.vue +1 -0
  290. package/uni-ui/lib/uni-popup-share/style.css +72 -0
  291. package/uni-ui/lib/uni-popup-share/style.scss +81 -0
  292. package/uni-ui/lib/uni-popup-share/uni-popup-share.vue +1 -0
  293. package/uni-ui/lib/uni-rate/style.css +29 -0
  294. package/uni-ui/lib/uni-rate/style.scss +33 -0
  295. package/uni-ui/lib/uni-rate/uni-rate.vue +1 -0
  296. package/uni-ui/lib/uni-row/style.css +58 -0
  297. package/uni-ui/lib/uni-row/style.scss +104 -0
  298. package/uni-ui/lib/uni-row/uni-row.vue +83 -0
  299. package/uni-ui/lib/uni-scss/changelog.md +8 -0
  300. package/uni-ui/lib/uni-scss/index.scss +1 -0
  301. package/uni-ui/lib/uni-scss/package.json +82 -0
  302. package/uni-ui/lib/uni-scss/readme.md +4 -0
  303. package/uni-ui/lib/uni-scss/styles/index.scss +7 -0
  304. package/uni-ui/lib/uni-scss/styles/setting/_border.scss +3 -0
  305. package/uni-ui/lib/uni-scss/styles/setting/_color.scss +66 -0
  306. package/uni-ui/lib/uni-scss/styles/setting/_radius.scss +55 -0
  307. package/uni-ui/lib/uni-scss/styles/setting/_space.scss +56 -0
  308. package/uni-ui/lib/uni-scss/styles/setting/_styles.scss +167 -0
  309. package/uni-ui/lib/uni-scss/styles/setting/_text.scss +24 -0
  310. package/uni-ui/lib/uni-scss/styles/setting/_variables.scss +146 -0
  311. package/uni-ui/lib/uni-scss/styles/tools/functions.scss +19 -0
  312. package/uni-ui/lib/uni-scss/theme.scss +31 -0
  313. package/uni-ui/lib/uni-scss/uni.scss +76 -0
  314. package/uni-ui/lib/uni-scss/variables.scss +62 -0
  315. package/uni-ui/lib/uni-search-bar/i18n/en.json +4 -0
  316. package/uni-ui/lib/uni-search-bar/i18n/index.js +8 -0
  317. package/uni-ui/lib/uni-search-bar/i18n/zh-Hans.json +4 -0
  318. package/uni-ui/lib/uni-search-bar/i18n/zh-Hant.json +4 -0
  319. package/uni-ui/lib/uni-search-bar/style.css +59 -0
  320. package/uni-ui/lib/uni-search-bar/style.scss +70 -0
  321. package/uni-ui/lib/uni-search-bar/uni-search-bar.vue +1 -0
  322. package/uni-ui/lib/uni-section/style.css +55 -0
  323. package/uni-ui/lib/uni-section/style.scss +65 -0
  324. package/uni-ui/lib/uni-section/uni-section.vue +1 -0
  325. package/uni-ui/lib/uni-segmented-control/style.css +48 -0
  326. package/uni-ui/lib/uni-segmented-control/style.scss +55 -0
  327. package/uni-ui/lib/uni-segmented-control/uni-segmented-control.vue +1 -0
  328. package/uni-ui/lib/uni-status-bar/style.css +4 -0
  329. package/uni-ui/lib/uni-status-bar/uni-status-bar.vue +19 -0
  330. package/uni-ui/lib/uni-steps/style.css +152 -0
  331. package/uni-ui/lib/uni-steps/style.scss +179 -0
  332. package/uni-ui/lib/uni-steps/uni-steps.vue +1 -0
  333. package/uni-ui/lib/uni-swipe-action/uni-swipe-action.vue +1 -0
  334. package/uni-ui/lib/uni-swipe-action-item/bindingx.js +302 -0
  335. package/uni-ui/lib/uni-swipe-action-item/isPC.js +12 -0
  336. package/uni-ui/lib/uni-swipe-action-item/mpalipay.js +195 -0
  337. package/uni-ui/lib/uni-swipe-action-item/mpother.js +260 -0
  338. package/uni-ui/lib/uni-swipe-action-item/mpwxs.js +84 -0
  339. package/uni-ui/lib/uni-swipe-action-item/render.js +270 -0
  340. package/uni-ui/lib/uni-swipe-action-item/style.css +90 -0
  341. package/uni-ui/lib/uni-swipe-action-item/style.scss +112 -0
  342. package/uni-ui/lib/uni-swipe-action-item/uni-swipe-action-item.vue +3 -0
  343. package/uni-ui/lib/uni-swipe-action-item/wx.wxs +341 -0
  344. package/uni-ui/lib/uni-swiper-dot/style.css +75 -0
  345. package/uni-ui/lib/uni-swiper-dot/style.scss +95 -0
  346. package/uni-ui/lib/uni-swiper-dot/uni-swiper-dot.vue +1 -0
  347. package/uni-ui/lib/uni-table/style.css +123 -0
  348. package/uni-ui/lib/uni-table/style.scss +152 -0
  349. package/uni-ui/lib/uni-table/uni-table.vue +1 -0
  350. package/uni-ui/lib/uni-tag/style.css +105 -0
  351. package/uni-ui/lib/uni-tag/style.scss +141 -0
  352. package/uni-ui/lib/uni-tag/uni-tag.vue +1 -0
  353. package/uni-ui/lib/uni-tbody/uni-tbody.vue +1 -0
  354. package/uni-ui/lib/uni-td/style.css +13 -0
  355. package/uni-ui/lib/uni-td/style.scss +17 -0
  356. package/uni-ui/lib/uni-td/uni-td.vue +1 -0
  357. package/uni-ui/lib/uni-test/uni-test.vue +11 -0
  358. package/uni-ui/lib/uni-th/filter-dropdown.vue +299 -0
  359. package/uni-ui/lib/uni-th/style.css +63 -0
  360. package/uni-ui/lib/uni-th/style.scss +78 -0
  361. package/uni-ui/lib/uni-th/uni-th.vue +1 -0
  362. package/uni-ui/lib/uni-thead/style.css +30 -0
  363. package/uni-ui/lib/uni-thead/style.scss +52 -0
  364. package/uni-ui/lib/uni-thead/uni-thead.vue +1 -0
  365. package/uni-ui/lib/uni-title/uni-title.vue +1 -0
  366. package/uni-ui/lib/uni-tooltip/uni-tooltip.vue +1 -0
  367. package/uni-ui/lib/uni-tr/style.css +25 -0
  368. package/uni-ui/lib/uni-tr/style.scss +46 -0
  369. package/uni-ui/lib/uni-tr/table-checkbox.vue +1 -0
  370. package/uni-ui/lib/uni-tr/uni-tr.vue +1 -0
  371. package/uni-ui/lib/uni-transition/createAnimation.js +131 -0
  372. package/uni-ui/lib/uni-transition/uni-transition.vue +286 -0
  373. package/uni-ui/package.json +17 -0
  374. package/uview-plus/LICENSE +21 -0
  375. package/uview-plus/README.md +64 -0
  376. package/uview-plus/changelog.md +24 -0
  377. package/uview-plus/components/u--form/u--form.vue +1 -0
  378. package/uview-plus/components/u--image/u--image.vue +1 -0
  379. package/uview-plus/components/u--input/u--input.vue +9 -0
  380. package/uview-plus/components/u--text/u--text.vue +1 -0
  381. package/uview-plus/components/u--textarea/u--textarea.vue +1 -0
  382. package/uview-plus/components/u-action-sheet/props.js +55 -0
  383. package/uview-plus/components/u-action-sheet/style.css +68 -0
  384. package/uview-plus/components/u-action-sheet/style.scss +84 -0
  385. package/uview-plus/components/u-action-sheet/u-action-sheet.vue +158 -0
  386. package/uview-plus/components/u-album/props.js +60 -0
  387. package/uview-plus/components/u-album/style.css +41 -0
  388. package/uview-plus/components/u-album/style.scss +26 -0
  389. package/uview-plus/components/u-album/u-album.vue +203 -0
  390. package/uview-plus/components/u-alert/props.js +45 -0
  391. package/uview-plus/components/u-alert/style.css +101 -0
  392. package/uview-plus/components/u-alert/style.scss +113 -0
  393. package/uview-plus/components/u-alert/u-alert.vue +118 -0
  394. package/uview-plus/components/u-avatar/props.js +79 -0
  395. package/uview-plus/components/u-avatar/style.css +31 -0
  396. package/uview-plus/components/u-avatar/style.scss +25 -0
  397. package/uview-plus/components/u-avatar/u-avatar.vue +168 -0
  398. package/uview-plus/components/u-avatar-group/props.js +53 -0
  399. package/uview-plus/components/u-avatar-group/style.css +39 -0
  400. package/uview-plus/components/u-avatar-group/style.scss +28 -0
  401. package/uview-plus/components/u-avatar-group/u-avatar-group.vue +74 -0
  402. package/uview-plus/components/u-back-top/props.js +55 -0
  403. package/uview-plus/components/u-back-top/style.css +27 -0
  404. package/uview-plus/components/u-back-top/style.scss +19 -0
  405. package/uview-plus/components/u-back-top/u-back-top.vue +95 -0
  406. package/uview-plus/components/u-badge/props.js +78 -0
  407. package/uview-plus/components/u-badge/style.css +68 -0
  408. package/uview-plus/components/u-badge/style.scss +85 -0
  409. package/uview-plus/components/u-badge/u-badge.vue +96 -0
  410. package/uview-plus/components/u-button/nvue-parse.scss +27 -0
  411. package/uview-plus/components/u-button/nvue.scss +1 -0
  412. package/uview-plus/components/u-button/props.js +162 -0
  413. package/uview-plus/components/u-button/style.css +202 -0
  414. package/uview-plus/components/u-button/style.scss +196 -0
  415. package/uview-plus/components/u-button/u-button.vue +262 -0
  416. package/uview-plus/components/u-button/vue-parse.scss +42 -0
  417. package/uview-plus/components/u-button/vue.scss +80 -0
  418. package/uview-plus/components/u-calendar/header.vue +1 -0
  419. package/uview-plus/components/u-calendar/month.vue +478 -0
  420. package/uview-plus/components/u-calendar/props.js +145 -0
  421. package/uview-plus/components/u-calendar/style.css +14 -0
  422. package/uview-plus/components/u-calendar/style.scss +7 -0
  423. package/uview-plus/components/u-calendar/u-calendar.vue +322 -0
  424. package/uview-plus/components/u-calendar/util.js +86 -0
  425. package/uview-plus/components/u-car-keyboard/props.js +15 -0
  426. package/uview-plus/components/u-car-keyboard/style.css +80 -0
  427. package/uview-plus/components/u-car-keyboard/style.scss +90 -0
  428. package/uview-plus/components/u-car-keyboard/u-car-keyboard.vue +1 -0
  429. package/uview-plus/components/u-cell/props.js +111 -0
  430. package/uview-plus/components/u-cell/style.css +98 -0
  431. package/uview-plus/components/u-cell/style.scss +127 -0
  432. package/uview-plus/components/u-cell/u-cell.vue +124 -0
  433. package/uview-plus/components/u-cell-group/props.js +15 -0
  434. package/uview-plus/components/u-cell-group/style.css +25 -0
  435. package/uview-plus/components/u-cell-group/style.scss +24 -0
  436. package/uview-plus/components/u-cell-group/u-cell-group.vue +37 -0
  437. package/uview-plus/components/u-checkbox/props.js +70 -0
  438. package/uview-plus/components/u-checkbox/style.css +86 -0
  439. package/uview-plus/components/u-checkbox/style.scss +103 -0
  440. package/uview-plus/components/u-checkbox/u-checkbox.vue +250 -0
  441. package/uview-plus/components/u-checkbox-group/props.js +91 -0
  442. package/uview-plus/components/u-checkbox-group/style.css +23 -0
  443. package/uview-plus/components/u-checkbox-group/style.scss +14 -0
  444. package/uview-plus/components/u-checkbox-group/u-checkbox-group.vue +112 -0
  445. package/uview-plus/components/u-circle-progress/props.js +9 -0
  446. package/uview-plus/components/u-circle-progress/style.css +80 -0
  447. package/uview-plus/components/u-circle-progress/style.scss +86 -0
  448. package/uview-plus/components/u-circle-progress/u-circle-progress.vue +99 -0
  449. package/uview-plus/components/u-code/props.js +35 -0
  450. package/uview-plus/components/u-code/style.css +11 -0
  451. package/uview-plus/components/u-code/style.scss +1 -0
  452. package/uview-plus/components/u-code/u-code.vue +129 -0
  453. package/uview-plus/components/u-code-input/props.js +80 -0
  454. package/uview-plus/components/u-code-input/style.css +78 -0
  455. package/uview-plus/components/u-code-input/style.scss +75 -0
  456. package/uview-plus/components/u-code-input/u-code-input.vue +169 -0
  457. package/uview-plus/components/u-col/props.js +30 -0
  458. package/uview-plus/components/u-col/style.css +61 -0
  459. package/uview-plus/components/u-col/style.scss +67 -0
  460. package/uview-plus/components/u-col/u-col.vue +92 -0
  461. package/uview-plus/components/u-collapse/props.js +20 -0
  462. package/uview-plus/components/u-collapse/style.css +11 -0
  463. package/uview-plus/components/u-collapse/style.scss +1 -0
  464. package/uview-plus/components/u-collapse/u-collapse.vue +87 -0
  465. package/uview-plus/components/u-collapse-item/props.js +60 -0
  466. package/uview-plus/components/u-collapse-item/style.css +21 -0
  467. package/uview-plus/components/u-collapse-item/style.scss +15 -0
  468. package/uview-plus/components/u-collapse-item/u-collapse-item.vue +1 -0
  469. package/uview-plus/components/u-column-notice/props.js +56 -0
  470. package/uview-plus/components/u-column-notice/style.css +48 -0
  471. package/uview-plus/components/u-column-notice/style.scss +35 -0
  472. package/uview-plus/components/u-column-notice/u-column-notice.vue +95 -0
  473. package/uview-plus/components/u-count-down/props.js +25 -0
  474. package/uview-plus/components/u-count-down/style.css +16 -0
  475. package/uview-plus/components/u-count-down/style.scss +12 -0
  476. package/uview-plus/components/u-count-down/u-count-down.vue +1 -0
  477. package/uview-plus/components/u-count-down/utils.js +62 -0
  478. package/uview-plus/components/u-count-to/props.js +60 -0
  479. package/uview-plus/components/u-count-to/style.css +17 -0
  480. package/uview-plus/components/u-count-to/style.scss +8 -0
  481. package/uview-plus/components/u-count-to/u-count-to.vue +179 -0
  482. package/uview-plus/components/u-datetime-picker/props.js +126 -0
  483. package/uview-plus/components/u-datetime-picker/style.css +11 -0
  484. package/uview-plus/components/u-datetime-picker/style.scss +1 -0
  485. package/uview-plus/components/u-datetime-picker/u-datetime-picker.vue +379 -0
  486. package/uview-plus/components/u-divider/props.js +45 -0
  487. package/uview-plus/components/u-divider/style.css +28 -0
  488. package/uview-plus/components/u-divider/style.scss +23 -0
  489. package/uview-plus/components/u-divider/u-divider.vue +73 -0
  490. package/uview-plus/components/u-dropdown/props.js +66 -0
  491. package/uview-plus/components/u-dropdown/style.css +32 -0
  492. package/uview-plus/components/u-dropdown/style.scss +18 -0
  493. package/uview-plus/components/u-dropdown/u-dropdown.vue +1 -0
  494. package/uview-plus/components/u-dropdown-item/props.js +37 -0
  495. package/uview-plus/components/u-dropdown-item/style.css +16 -0
  496. package/uview-plus/components/u-dropdown-item/style.scss +9 -0
  497. package/uview-plus/components/u-dropdown-item/u-dropdown-item.vue +1 -0
  498. package/uview-plus/components/u-empty/props.js +60 -0
  499. package/uview-plus/components/u-empty/style.css +38 -0
  500. package/uview-plus/components/u-empty/style.scss +23 -0
  501. package/uview-plus/components/u-empty/u-empty.vue +98 -0
  502. package/uview-plus/components/u-form/props.js +46 -0
  503. package/uview-plus/components/u-form/u-form.vue +1 -0
  504. package/uview-plus/components/u-form-item/props.js +44 -0
  505. package/uview-plus/components/u-form-item/style.css +95 -0
  506. package/uview-plus/components/u-form-item/style.scss +76 -0
  507. package/uview-plus/components/u-form-item/u-form-item.vue +159 -0
  508. package/uview-plus/components/u-gap/props.js +25 -0
  509. package/uview-plus/components/u-gap/style.css +11 -0
  510. package/uview-plus/components/u-gap/style.scss +1 -0
  511. package/uview-plus/components/u-gap/u-gap.vue +38 -0
  512. package/uview-plus/components/u-grid/props.js +20 -0
  513. package/uview-plus/components/u-grid/style.css +27 -0
  514. package/uview-plus/components/u-grid/style.scss +15 -0
  515. package/uview-plus/components/u-grid/u-grid.vue +80 -0
  516. package/uview-plus/components/u-grid-item/props.js +15 -0
  517. package/uview-plus/components/u-grid-item/style.css +41 -0
  518. package/uview-plus/components/u-grid-item/style.scss +44 -0
  519. package/uview-plus/components/u-grid-item/u-grid-item.vue +165 -0
  520. package/uview-plus/components/u-icon/icons.js +214 -0
  521. package/uview-plus/components/u-icon/props.js +90 -0
  522. package/uview-plus/components/u-icon/style.css +74 -0
  523. package/uview-plus/components/u-icon/style.scss +85 -0
  524. package/uview-plus/components/u-icon/u-icon.vue +133 -0
  525. package/uview-plus/components/u-image/props.js +85 -0
  526. package/uview-plus/components/u-image/style.css +35 -0
  527. package/uview-plus/components/u-image/style.scss +34 -0
  528. package/uview-plus/components/u-image/u-image.vue +182 -0
  529. package/uview-plus/components/u-index-anchor/props.js +30 -0
  530. package/uview-plus/components/u-index-anchor/style.css +29 -0
  531. package/uview-plus/components/u-index-anchor/style.scss +15 -0
  532. package/uview-plus/components/u-index-anchor/u-index-anchor.vue +78 -0
  533. package/uview-plus/components/u-index-item/props.js +4 -0
  534. package/uview-plus/components/u-index-item/style.css +11 -0
  535. package/uview-plus/components/u-index-item/style.scss +1 -0
  536. package/uview-plus/components/u-index-item/u-index-item.vue +81 -0
  537. package/uview-plus/components/u-index-list/props.js +30 -0
  538. package/uview-plus/components/u-index-list/style.css +61 -0
  539. package/uview-plus/components/u-index-list/style.scss +53 -0
  540. package/uview-plus/components/u-index-list/u-index-list.vue +367 -0
  541. package/uview-plus/components/u-input/props.js +196 -0
  542. package/uview-plus/components/u-input/style.css +75 -0
  543. package/uview-plus/components/u-input/style.scss +64 -0
  544. package/uview-plus/components/u-input/u-input.vue +287 -0
  545. package/uview-plus/components/u-keyboard/props.js +85 -0
  546. package/uview-plus/components/u-keyboard/style.css +37 -0
  547. package/uview-plus/components/u-keyboard/style.scss +31 -0
  548. package/uview-plus/components/u-keyboard/u-keyboard.vue +115 -0
  549. package/uview-plus/components/u-line/props.js +34 -0
  550. package/uview-plus/components/u-line/style.css +16 -0
  551. package/uview-plus/components/u-line/style.scss +7 -0
  552. package/uview-plus/components/u-line/u-line.vue +50 -0
  553. package/uview-plus/components/u-line-progress/props.js +29 -0
  554. package/uview-plus/components/u-line-progress/style.css +50 -0
  555. package/uview-plus/components/u-line-progress/style.scss +38 -0
  556. package/uview-plus/components/u-line-progress/u-line-progress.vue +99 -0
  557. package/uview-plus/components/u-link/props.js +40 -0
  558. package/uview-plus/components/u-link/style.css +22 -0
  559. package/uview-plus/components/u-link/style.scss +11 -0
  560. package/uview-plus/components/u-link/u-link.vue +68 -0
  561. package/uview-plus/components/u-list/props.js +76 -0
  562. package/uview-plus/components/u-list/style.css +17 -0
  563. package/uview-plus/components/u-list/style.scss +5 -0
  564. package/uview-plus/components/u-list/u-list.vue +152 -0
  565. package/uview-plus/components/u-list-item/props.js +10 -0
  566. package/uview-plus/components/u-list-item/style.css +11 -0
  567. package/uview-plus/components/u-list-item/style.scss +4 -0
  568. package/uview-plus/components/u-list-item/u-list-item.vue +105 -0
  569. package/uview-plus/components/u-loading-icon/props.js +60 -0
  570. package/uview-plus/components/u-loading-icon/style.css +148 -0
  571. package/uview-plus/components/u-loading-icon/style.scss +153 -0
  572. package/uview-plus/components/u-loading-icon/u-loading-icon.vue +1 -0
  573. package/uview-plus/components/u-loading-page/props.js +50 -0
  574. package/uview-plus/components/u-loading-page/style.css +44 -0
  575. package/uview-plus/components/u-loading-page/style.scss +37 -0
  576. package/uview-plus/components/u-loading-page/u-loading-page.vue +75 -0
  577. package/uview-plus/components/u-loadmore/props.js +95 -0
  578. package/uview-plus/components/u-loadmore/style.css +40 -0
  579. package/uview-plus/components/u-loadmore/style.scss +29 -0
  580. package/uview-plus/components/u-loadmore/u-loadmore.vue +101 -0
  581. package/uview-plus/components/u-message-input/style.css +115 -0
  582. package/uview-plus/components/u-message-input/style.scss +134 -0
  583. package/uview-plus/components/u-message-input/u-message-input.vue +205 -0
  584. package/uview-plus/components/u-modal/props.js +85 -0
  585. package/uview-plus/components/u-modal/style.css +70 -0
  586. package/uview-plus/components/u-modal/style.scss +65 -0
  587. package/uview-plus/components/u-modal/u-modal.vue +1 -0
  588. package/uview-plus/components/u-navbar/props.js +85 -0
  589. package/uview-plus/components/u-navbar/style.css +62 -0
  590. package/uview-plus/components/u-navbar/style.scss +58 -0
  591. package/uview-plus/components/u-navbar/u-navbar.vue +114 -0
  592. package/uview-plus/components/u-no-network/props.js +20 -0
  593. package/uview-plus/components/u-no-network/style.css +49 -0
  594. package/uview-plus/components/u-no-network/style.scss +36 -0
  595. package/uview-plus/components/u-no-network/u-no-network.vue +168 -0
  596. package/uview-plus/components/u-notice-bar/props.js +71 -0
  597. package/uview-plus/components/u-notice-bar/style.css +16 -0
  598. package/uview-plus/components/u-notice-bar/style.scss +7 -0
  599. package/uview-plus/components/u-notice-bar/u-notice-bar.vue +98 -0
  600. package/uview-plus/components/u-notify/props.js +50 -0
  601. package/uview-plus/components/u-notify/style.css +39 -0
  602. package/uview-plus/components/u-notify/style.scss +40 -0
  603. package/uview-plus/components/u-notify/u-notify.vue +166 -0
  604. package/uview-plus/components/u-number-box/props.js +119 -0
  605. package/uview-plus/components/u-number-box/style.css +67 -0
  606. package/uview-plus/components/u-number-box/style.scss +70 -0
  607. package/uview-plus/components/u-number-box/u-number-box.vue +343 -0
  608. package/uview-plus/components/u-number-keyboard/props.js +20 -0
  609. package/uview-plus/components/u-number-keyboard/style.css +56 -0
  610. package/uview-plus/components/u-number-keyboard/style.scss +62 -0
  611. package/uview-plus/components/u-number-keyboard/u-number-keyboard.vue +118 -0
  612. package/uview-plus/components/u-overlay/props.js +25 -0
  613. package/uview-plus/components/u-overlay/style.css +19 -0
  614. package/uview-plus/components/u-overlay/style.scss +14 -0
  615. package/uview-plus/components/u-overlay/u-overlay.vue +48 -0
  616. package/uview-plus/components/u-parse/node/node.vue +535 -0
  617. package/uview-plus/components/u-parse/parser.js +1333 -0
  618. package/uview-plus/components/u-parse/props.js +47 -0
  619. package/uview-plus/components/u-parse/u-parse.vue +519 -0
  620. package/uview-plus/components/u-picker/props.js +80 -0
  621. package/uview-plus/components/u-picker/style.css +57 -0
  622. package/uview-plus/components/u-picker/style.scss +45 -0
  623. package/uview-plus/components/u-picker/u-picker.vue +231 -0
  624. package/uview-plus/components/u-picker-column/props.js +4 -0
  625. package/uview-plus/components/u-picker-column/style.css +11 -0
  626. package/uview-plus/components/u-picker-column/style.scss +1 -0
  627. package/uview-plus/components/u-picker-column/u-picker-column.vue +25 -0
  628. package/uview-plus/components/u-popup/props.js +80 -0
  629. package/uview-plus/components/u-popup/style.css +70 -0
  630. package/uview-plus/components/u-popup/style.scss +75 -0
  631. package/uview-plus/components/u-popup/u-popup.vue +1 -0
  632. package/uview-plus/components/u-radio/props.js +70 -0
  633. package/uview-plus/components/u-radio/style.css +86 -0
  634. package/uview-plus/components/u-radio/style.scss +102 -0
  635. package/uview-plus/components/u-radio/u-radio.vue +238 -0
  636. package/uview-plus/components/u-radio-group/props.js +94 -0
  637. package/uview-plus/components/u-radio-group/style.css +26 -0
  638. package/uview-plus/components/u-radio-group/style.scss +16 -0
  639. package/uview-plus/components/u-radio-group/u-radio-group.vue +121 -0
  640. package/uview-plus/components/u-rate/props.js +79 -0
  641. package/uview-plus/components/u-rate/style.css +43 -0
  642. package/uview-plus/components/u-rate/style.scss +38 -0
  643. package/uview-plus/components/u-rate/u-rate.vue +249 -0
  644. package/uview-plus/components/u-read-more/props.js +62 -0
  645. package/uview-plus/components/u-read-more/style.css +33 -0
  646. package/uview-plus/components/u-read-more/style.scss +22 -0
  647. package/uview-plus/components/u-read-more/u-read-more.vue +119 -0
  648. package/uview-plus/components/u-row/props.js +20 -0
  649. package/uview-plus/components/u-row/style.css +17 -0
  650. package/uview-plus/components/u-row/style.scss +5 -0
  651. package/uview-plus/components/u-row/u-row.vue +82 -0
  652. package/uview-plus/components/u-row-notice/props.js +40 -0
  653. package/uview-plus/components/u-row-notice/style.css +61 -0
  654. package/uview-plus/components/u-row-notice/style.scss +50 -0
  655. package/uview-plus/components/u-row-notice/u-row-notice.vue +256 -0
  656. package/uview-plus/components/u-safe-bottom/props.js +4 -0
  657. package/uview-plus/components/u-safe-bottom/style.css +5 -0
  658. package/uview-plus/components/u-safe-bottom/style.scss +5 -0
  659. package/uview-plus/components/u-safe-bottom/u-safe-bottom.vue +1 -0
  660. package/uview-plus/components/u-scroll-list/nvue.js +3 -0
  661. package/uview-plus/components/u-scroll-list/other.js +0 -0
  662. package/uview-plus/components/u-scroll-list/props.js +35 -0
  663. package/uview-plus/components/u-scroll-list/scrollWxs.wxs +50 -0
  664. package/uview-plus/components/u-scroll-list/style.css +45 -0
  665. package/uview-plus/components/u-scroll-list/style.scss +32 -0
  666. package/uview-plus/components/u-scroll-list/u-scroll-list.vue +193 -0
  667. package/uview-plus/components/u-search/props.js +123 -0
  668. package/uview-plus/components/u-search/style.css +92 -0
  669. package/uview-plus/components/u-search/style.scss +98 -0
  670. package/uview-plus/components/u-search/u-search.vue +220 -0
  671. package/uview-plus/components/u-skeleton/props.js +60 -0
  672. package/uview-plus/components/u-skeleton/style.css +62 -0
  673. package/uview-plus/components/u-skeleton/style.scss +59 -0
  674. package/uview-plus/components/u-skeleton/u-skeleton.vue +188 -0
  675. package/uview-plus/components/u-slider/mpother.js +113 -0
  676. package/uview-plus/components/u-slider/mpwxs.js +42 -0
  677. package/uview-plus/components/u-slider/mpwxs.wxs +121 -0
  678. package/uview-plus/components/u-slider/nvue - /345/211/257/346/234/254.js" +175 -0
  679. package/uview-plus/components/u-slider/nvue.js +190 -0
  680. package/uview-plus/components/u-slider/props.js +55 -0
  681. package/uview-plus/components/u-slider/style.css +11 -0
  682. package/uview-plus/components/u-slider/style.scss +1 -0
  683. package/uview-plus/components/u-slider/u-slider.vue +1 -0
  684. package/uview-plus/components/u-status-bar/props.js +9 -0
  685. package/uview-plus/components/u-status-bar/style.css +5 -0
  686. package/uview-plus/components/u-status-bar/style.scss +6 -0
  687. package/uview-plus/components/u-status-bar/u-status-bar.vue +37 -0
  688. package/uview-plus/components/u-steps/props.js +40 -0
  689. package/uview-plus/components/u-steps/style.css +24 -0
  690. package/uview-plus/components/u-steps/style.scss +14 -0
  691. package/uview-plus/components/u-steps/u-steps.vue +63 -0
  692. package/uview-plus/components/u-steps-item/props.js +25 -0
  693. package/uview-plus/components/u-steps-item/style.css +119 -0
  694. package/uview-plus/components/u-steps-item/style.scss +111 -0
  695. package/uview-plus/components/u-steps-item/u-steps-item.vue +225 -0
  696. package/uview-plus/components/u-sticky/props.js +41 -0
  697. package/uview-plus/components/u-sticky/style.css +5 -0
  698. package/uview-plus/components/u-sticky/style.scss +6 -0
  699. package/uview-plus/components/u-sticky/u-sticky.vue +201 -0
  700. package/uview-plus/components/u-subsection/props.js +50 -0
  701. package/uview-plus/components/u-subsection/style.css +95 -0
  702. package/uview-plus/components/u-subsection/style.scss +90 -0
  703. package/uview-plus/components/u-subsection/u-subsection.vue +188 -0
  704. package/uview-plus/components/u-swipe-action/props.js +10 -0
  705. package/uview-plus/components/u-swipe-action/u-swipe-action.vue +65 -0
  706. package/uview-plus/components/u-swipe-action-item/index - backup.wxs +256 -0
  707. package/uview-plus/components/u-swipe-action-item/index.wxs +229 -0
  708. package/uview-plus/components/u-swipe-action-item/nvue - backup.js +264 -0
  709. package/uview-plus/components/u-swipe-action-item/nvue.js +172 -0
  710. package/uview-plus/components/u-swipe-action-item/props.js +42 -0
  711. package/uview-plus/components/u-swipe-action-item/style.css +61 -0
  712. package/uview-plus/components/u-swipe-action-item/style.scss +45 -0
  713. package/uview-plus/components/u-swipe-action-item/u-swipe-action-item.vue +188 -0
  714. package/uview-plus/components/u-swipe-action-item/wxs.js +15 -0
  715. package/uview-plus/components/u-swiper/props.js +126 -0
  716. package/uview-plus/components/u-swiper/style.css +58 -0
  717. package/uview-plus/components/u-swiper/style.scss +50 -0
  718. package/uview-plus/components/u-swiper/u-swiper.vue +196 -0
  719. package/uview-plus/components/u-swiper-indicator/props.js +30 -0
  720. package/uview-plus/components/u-swiper-indicator/style.css +37 -0
  721. package/uview-plus/components/u-swiper-indicator/style.scss +31 -0
  722. package/uview-plus/components/u-swiper-indicator/u-swiper-indicator.vue +70 -0
  723. package/uview-plus/components/u-switch/props.js +63 -0
  724. package/uview-plus/components/u-switch/style.css +58 -0
  725. package/uview-plus/components/u-switch/style.scss +48 -0
  726. package/uview-plus/components/u-switch/u-switch.vue +165 -0
  727. package/uview-plus/components/u-tabbar/props.js +45 -0
  728. package/uview-plus/components/u-tabbar/style.css +40 -0
  729. package/uview-plus/components/u-tabbar/style.scss +25 -0
  730. package/uview-plus/components/u-tabbar/u-tabbar.vue +115 -0
  731. package/uview-plus/components/u-tabbar-item/props.js +35 -0
  732. package/uview-plus/components/u-tabbar-item/style.css +42 -0
  733. package/uview-plus/components/u-tabbar-item/style.scss +30 -0
  734. package/uview-plus/components/u-tabbar-item/u-tabbar-item.vue +105 -0
  735. package/uview-plus/components/u-table/props.js +4 -0
  736. package/uview-plus/components/u-table/style.css +11 -0
  737. package/uview-plus/components/u-table/style.scss +1 -0
  738. package/uview-plus/components/u-table/u-table.vue +24 -0
  739. package/uview-plus/components/u-tabs/props.js +65 -0
  740. package/uview-plus/components/u-tabs/style.css +69 -0
  741. package/uview-plus/components/u-tabs/style.scss +58 -0
  742. package/uview-plus/components/u-tabs/u-tabs.vue +294 -0
  743. package/uview-plus/components/u-tabs-item/props.js +4 -0
  744. package/uview-plus/components/u-tabs-item/u-tabs-item.vue +26 -0
  745. package/uview-plus/components/u-tag/props.js +85 -0
  746. package/uview-plus/components/u-tag/style.css +180 -0
  747. package/uview-plus/components/u-tag/style.scss +206 -0
  748. package/uview-plus/components/u-tag/u-tag.vue +1 -0
  749. package/uview-plus/components/u-td/props.js +4 -0
  750. package/uview-plus/components/u-td/style.css +11 -0
  751. package/uview-plus/components/u-td/style.scss +1 -0
  752. package/uview-plus/components/u-td/u-td.vue +26 -0
  753. package/uview-plus/components/u-text/props.js +111 -0
  754. package/uview-plus/components/u-text/style.css +65 -0
  755. package/uview-plus/components/u-text/style.scss +62 -0
  756. package/uview-plus/components/u-text/u-text.vue +144 -0
  757. package/uview-plus/components/u-text/value.js +85 -0
  758. package/uview-plus/components/u-textarea/props.js +125 -0
  759. package/uview-plus/components/u-textarea/style.css +46 -0
  760. package/uview-plus/components/u-textarea/style.scss +39 -0
  761. package/uview-plus/components/u-textarea/u-textarea.vue +222 -0
  762. package/uview-plus/components/u-toast/style.css +78 -0
  763. package/uview-plus/components/u-toast/style.scss +108 -0
  764. package/uview-plus/components/u-toast/u-toast.vue +180 -0
  765. package/uview-plus/components/u-toolbar/props.js +35 -0
  766. package/uview-plus/components/u-toolbar/style.css +37 -0
  767. package/uview-plus/components/u-toolbar/style.scss +32 -0
  768. package/uview-plus/components/u-toolbar/u-toolbar.vue +62 -0
  769. package/uview-plus/components/u-tooltip/props.js +60 -0
  770. package/uview-plus/components/u-tooltip/style.css +75 -0
  771. package/uview-plus/components/u-tooltip/style.scss +63 -0
  772. package/uview-plus/components/u-tooltip/u-tooltip.vue +279 -0
  773. package/uview-plus/components/u-tr/props.js +4 -0
  774. package/uview-plus/components/u-tr/style.css +11 -0
  775. package/uview-plus/components/u-tr/style.scss +1 -0
  776. package/uview-plus/components/u-tr/u-tr.vue +26 -0
  777. package/uview-plus/components/u-transition/nvue-ani-map.js +1 -0
  778. package/uview-plus/components/u-transition/props.js +25 -0
  779. package/uview-plus/components/u-transition/style.css +109 -0
  780. package/uview-plus/components/u-transition/style.scss +9 -0
  781. package/uview-plus/components/u-transition/transition.js +164 -0
  782. package/uview-plus/components/u-transition/u-transition.vue +86 -0
  783. package/uview-plus/components/u-transition/vue.ani-style.scss +113 -0
  784. package/uview-plus/components/u-upload/mixin.js +21 -0
  785. package/uview-plus/components/u-upload/props.js +125 -0
  786. package/uview-plus/components/u-upload/style.css +164 -0
  787. package/uview-plus/components/u-upload/style.scss +200 -0
  788. package/uview-plus/components/u-upload/u-upload.vue +316 -0
  789. package/uview-plus/components/u-upload/utils.js +151 -0
  790. package/uview-plus/components/uview-plus/uview-plus.vue +8 -0
  791. package/uview-plus/index.css +4091 -0
  792. package/uview-plus/index.js +81 -0
  793. package/uview-plus/index.scss +24 -0
  794. package/uview-plus/libs/config/color.js +17 -0
  795. package/uview-plus/libs/config/config.js +33 -0
  796. package/uview-plus/libs/config/props/actionSheet.js +25 -0
  797. package/uview-plus/libs/config/props/album.js +25 -0
  798. package/uview-plus/libs/config/props/alert.js +22 -0
  799. package/uview-plus/libs/config/props/avatar.js +28 -0
  800. package/uview-plus/libs/config/props/avatarGroup.js +23 -0
  801. package/uview-plus/libs/config/props/backtop.js +27 -0
  802. package/uview-plus/libs/config/props/badge.js +27 -0
  803. package/uview-plus/libs/config/props/button.js +42 -0
  804. package/uview-plus/libs/config/props/calendar.js +42 -0
  805. package/uview-plus/libs/config/props/carKeyboard.js +15 -0
  806. package/uview-plus/libs/config/props/cell.js +35 -0
  807. package/uview-plus/libs/config/props/cellGroup.js +17 -0
  808. package/uview-plus/libs/config/props/checkbox.js +27 -0
  809. package/uview-plus/libs/config/props/checkboxGroup.js +29 -0
  810. package/uview-plus/libs/config/props/circleProgress.js +15 -0
  811. package/uview-plus/libs/config/props/code.js +21 -0
  812. package/uview-plus/libs/config/props/codeInput.js +29 -0
  813. package/uview-plus/libs/config/props/col.js +19 -0
  814. package/uview-plus/libs/config/props/collapse.js +17 -0
  815. package/uview-plus/libs/config/props/collapseItem.js +25 -0
  816. package/uview-plus/libs/config/props/columnNotice.js +24 -0
  817. package/uview-plus/libs/config/props/countDown.js +18 -0
  818. package/uview-plus/libs/config/props/countTo.js +25 -0
  819. package/uview-plus/libs/config/props/datetimePicker.js +36 -0
  820. package/uview-plus/libs/config/props/divider.js +23 -0
  821. package/uview-plus/libs/config/props/empty.js +26 -0
  822. package/uview-plus/libs/config/props/form.js +22 -0
  823. package/uview-plus/libs/config/props/formItem.js +22 -0
  824. package/uview-plus/libs/config/props/gap.js +19 -0
  825. package/uview-plus/libs/config/props/grid.js +17 -0
  826. package/uview-plus/libs/config/props/gridItem.js +16 -0
  827. package/uview-plus/libs/config/props/icon.js +36 -0
  828. package/uview-plus/libs/config/props/image.js +30 -0
  829. package/uview-plus/libs/config/props/indexAnchor.js +19 -0
  830. package/uview-plus/libs/config/props/indexList.js +19 -0
  831. package/uview-plus/libs/config/props/input.js +48 -0
  832. package/uview-plus/libs/config/props/keyboard.js +30 -0
  833. package/uview-plus/libs/config/props/line.js +20 -0
  834. package/uview-plus/libs/config/props/lineProgress.js +19 -0
  835. package/uview-plus/libs/config/props/link.js +26 -0
  836. package/uview-plus/libs/config/props/list.js +28 -0
  837. package/uview-plus/libs/config/props/listItem.js +15 -0
  838. package/uview-plus/libs/config/props/loadingIcon.js +30 -0
  839. package/uview-plus/libs/config/props/loadingPage.js +23 -0
  840. package/uview-plus/libs/config/props/loadmore.js +32 -0
  841. package/uview-plus/libs/config/props/modal.js +30 -0
  842. package/uview-plus/libs/config/props/navbar.js +32 -0
  843. package/uview-plus/libs/config/props/noNetwork.js +18 -0
  844. package/uview-plus/libs/config/props/noticeBar.js +27 -0
  845. package/uview-plus/libs/config/props/notify.js +22 -0
  846. package/uview-plus/libs/config/props/numberBox.js +35 -0
  847. package/uview-plus/libs/config/props/numberKeyboard.js +17 -0
  848. package/uview-plus/libs/config/props/overlay.js +18 -0
  849. package/uview-plus/libs/config/props/parse.js +22 -0
  850. package/uview-plus/libs/config/props/picker.js +29 -0
  851. package/uview-plus/libs/config/props/popup.js +29 -0
  852. package/uview-plus/libs/config/props/radio.js +27 -0
  853. package/uview-plus/libs/config/props/radioGroup.js +30 -0
  854. package/uview-plus/libs/config/props/rate.js +26 -0
  855. package/uview-plus/libs/config/props/readMore.js +22 -0
  856. package/uview-plus/libs/config/props/row.js +17 -0
  857. package/uview-plus/libs/config/props/rowNotice.js +21 -0
  858. package/uview-plus/libs/config/props/scrollList.js +20 -0
  859. package/uview-plus/libs/config/props/search.js +37 -0
  860. package/uview-plus/libs/config/props/section.js +24 -0
  861. package/uview-plus/libs/config/props/skeleton.js +25 -0
  862. package/uview-plus/libs/config/props/slider.js +25 -0
  863. package/uview-plus/libs/config/props/statusBar.js +15 -0
  864. package/uview-plus/libs/config/props/steps.js +21 -0
  865. package/uview-plus/libs/config/props/stepsItem.js +18 -0
  866. package/uview-plus/libs/config/props/sticky.js +20 -0
  867. package/uview-plus/libs/config/props/subsection.js +23 -0
  868. package/uview-plus/libs/config/props/swipeAction.js +15 -0
  869. package/uview-plus/libs/config/props/swipeActionItem.js +21 -0
  870. package/uview-plus/libs/config/props/swiper.js +39 -0
  871. package/uview-plus/libs/config/props/swipterIndicator.js +19 -0
  872. package/uview-plus/libs/config/props/switch.js +24 -0
  873. package/uview-plus/libs/config/props/tabbar.js +22 -0
  874. package/uview-plus/libs/config/props/tabbarItem.js +20 -0
  875. package/uview-plus/libs/config/props/tabs.js +32 -0
  876. package/uview-plus/libs/config/props/tag.js +29 -0
  877. package/uview-plus/libs/config/props/text.js +38 -0
  878. package/uview-plus/libs/config/props/textarea.js +36 -0
  879. package/uview-plus/libs/config/props/toast.js +30 -0
  880. package/uview-plus/libs/config/props/toolbar.js +21 -0
  881. package/uview-plus/libs/config/props/tooltip.js +25 -0
  882. package/uview-plus/libs/config/props/transition.js +18 -0
  883. package/uview-plus/libs/config/props/upload.js +36 -0
  884. package/uview-plus/libs/config/props.js +190 -0
  885. package/uview-plus/libs/config/zIndex.js +20 -0
  886. package/uview-plus/libs/css/color-libcss.scss +117 -0
  887. package/uview-plus/libs/css/color.scss +155 -0
  888. package/uview-plus/libs/css/common-libcss.scss +132 -0
  889. package/uview-plus/libs/css/common.scss +97 -0
  890. package/uview-plus/libs/css/components-libcss.scss +11 -0
  891. package/uview-plus/libs/css/components.scss +15 -0
  892. package/uview-plus/libs/css/flex-libcss.scss +2815 -0
  893. package/uview-plus/libs/css/flex.scss +296 -0
  894. package/uview-plus/libs/css/h5-libcss.scss +0 -0
  895. package/uview-plus/libs/css/h5.scss +0 -0
  896. package/uview-plus/libs/css/mixin-libcss.scss +0 -0
  897. package/uview-plus/libs/css/mixin.scss +8 -0
  898. package/uview-plus/libs/css/mp-libcss.scss +0 -0
  899. package/uview-plus/libs/css/mp.scss +0 -0
  900. package/uview-plus/libs/css/nvue-libcss.scss +0 -0
  901. package/uview-plus/libs/css/nvue.scss +0 -0
  902. package/uview-plus/libs/css/vue-libcss.scss +35 -0
  903. package/uview-plus/libs/css/vue.scss +27 -0
  904. package/uview-plus/libs/function/colorGradient.js +134 -0
  905. package/uview-plus/libs/function/debounce.js +29 -0
  906. package/uview-plus/libs/function/digit.js +167 -0
  907. package/uview-plus/libs/function/index.js +708 -0
  908. package/uview-plus/libs/function/platform.js +75 -0
  909. package/uview-plus/libs/function/test.js +288 -0
  910. package/uview-plus/libs/function/throttle.js +30 -0
  911. package/uview-plus/libs/luch-request/adapters/index.js +97 -0
  912. package/uview-plus/libs/luch-request/core/InterceptorManager.js +50 -0
  913. package/uview-plus/libs/luch-request/core/Request.js +198 -0
  914. package/uview-plus/libs/luch-request/core/buildFullPath.js +20 -0
  915. package/uview-plus/libs/luch-request/core/defaults.js +29 -0
  916. package/uview-plus/libs/luch-request/core/dispatchRequest.js +3 -0
  917. package/uview-plus/libs/luch-request/core/mergeConfig.js +103 -0
  918. package/uview-plus/libs/luch-request/core/settle.js +16 -0
  919. package/uview-plus/libs/luch-request/helpers/buildURL.js +69 -0
  920. package/uview-plus/libs/luch-request/helpers/combineURLs.js +14 -0
  921. package/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
  922. package/uview-plus/libs/luch-request/index.d.ts +116 -0
  923. package/uview-plus/libs/luch-request/index.js +3 -0
  924. package/uview-plus/libs/luch-request/utils/clone.js +264 -0
  925. package/uview-plus/libs/luch-request/utils.js +131 -0
  926. package/uview-plus/libs/mixin/button.js +13 -0
  927. package/uview-plus/libs/mixin/mixin.js +167 -0
  928. package/uview-plus/libs/mixin/mpMixin.js +8 -0
  929. package/uview-plus/libs/mixin/mpShare.js +13 -0
  930. package/uview-plus/libs/mixin/openType.js +25 -0
  931. package/uview-plus/libs/mixin/style.js +252 -0
  932. package/uview-plus/libs/mixin/touch.js +61 -0
  933. package/uview-plus/libs/util/async-validator.js +1343 -0
  934. package/uview-plus/libs/util/calendar.js +546 -0
  935. package/uview-plus/libs/util/emitter.js +51 -0
  936. package/uview-plus/libs/util/route.js +124 -0
  937. package/uview-plus/package.json +91 -0
  938. package/uview-plus/theme.css +29 -0
  939. package/uview-plus/theme.scss +44 -0
  940. package/uview-ui/LICENSE +21 -0
  941. package/uview-ui/README.md +66 -0
  942. package/uview-ui/changelog.md +362 -0
  943. package/uview-ui/components/u--form/u--form.vue +1 -0
  944. package/uview-ui/components/u--image/u--image.vue +1 -0
  945. package/uview-ui/components/u--input/u--input.vue +1 -0
  946. package/uview-ui/components/u--text/u--text.vue +1 -0
  947. package/uview-ui/components/u--textarea/u--textarea.vue +1 -0
  948. package/uview-ui/components/u-action-sheet/props.js +55 -0
  949. package/uview-ui/components/u-action-sheet/style.css +68 -0
  950. package/uview-ui/components/u-action-sheet/style.scss +84 -0
  951. package/uview-ui/components/u-action-sheet/u-action-sheet.vue +158 -0
  952. package/uview-ui/components/u-album/props.js +60 -0
  953. package/uview-ui/components/u-album/style.css +41 -0
  954. package/uview-ui/components/u-album/style.scss +26 -0
  955. package/uview-ui/components/u-album/u-album.vue +203 -0
  956. package/uview-ui/components/u-alert/props.js +45 -0
  957. package/uview-ui/components/u-alert/style.css +101 -0
  958. package/uview-ui/components/u-alert/style.scss +113 -0
  959. package/uview-ui/components/u-alert/u-alert.vue +118 -0
  960. package/uview-ui/components/u-avatar/props.js +79 -0
  961. package/uview-ui/components/u-avatar/style.css +31 -0
  962. package/uview-ui/components/u-avatar/style.scss +25 -0
  963. package/uview-ui/components/u-avatar/u-avatar.vue +168 -0
  964. package/uview-ui/components/u-avatar-group/props.js +53 -0
  965. package/uview-ui/components/u-avatar-group/style.css +39 -0
  966. package/uview-ui/components/u-avatar-group/style.scss +28 -0
  967. package/uview-ui/components/u-avatar-group/u-avatar-group.vue +74 -0
  968. package/uview-ui/components/u-back-top/props.js +55 -0
  969. package/uview-ui/components/u-back-top/style.css +27 -0
  970. package/uview-ui/components/u-back-top/style.scss +19 -0
  971. package/uview-ui/components/u-back-top/u-back-top.vue +95 -0
  972. package/uview-ui/components/u-badge/props.js +73 -0
  973. package/uview-ui/components/u-badge/style.css +68 -0
  974. package/uview-ui/components/u-badge/style.scss +85 -0
  975. package/uview-ui/components/u-badge/u-badge.vue +96 -0
  976. package/uview-ui/components/u-button/nvue-parse.scss +27 -0
  977. package/uview-ui/components/u-button/nvue.scss +1 -0
  978. package/uview-ui/components/u-button/props.js +162 -0
  979. package/uview-ui/components/u-button/style.css +202 -0
  980. package/uview-ui/components/u-button/style.scss +196 -0
  981. package/uview-ui/components/u-button/u-button.vue +261 -0
  982. package/uview-ui/components/u-button/vue-parse.scss +42 -0
  983. package/uview-ui/components/u-button/vue.scss +80 -0
  984. package/uview-ui/components/u-calendar/header.vue +1 -0
  985. package/uview-ui/components/u-calendar/month.vue +476 -0
  986. package/uview-ui/components/u-calendar/props.js +145 -0
  987. package/uview-ui/components/u-calendar/style.css +14 -0
  988. package/uview-ui/components/u-calendar/style.scss +7 -0
  989. package/uview-ui/components/u-calendar/u-calendar.vue +325 -0
  990. package/uview-ui/components/u-calendar/util.js +85 -0
  991. package/uview-ui/components/u-car-keyboard/props.js +14 -0
  992. package/uview-ui/components/u-car-keyboard/style.css +80 -0
  993. package/uview-ui/components/u-car-keyboard/style.scss +90 -0
  994. package/uview-ui/components/u-car-keyboard/u-car-keyboard.vue +1 -0
  995. package/uview-ui/components/u-cell/props.js +111 -0
  996. package/uview-ui/components/u-cell/style.css +98 -0
  997. package/uview-ui/components/u-cell/style.scss +127 -0
  998. package/uview-ui/components/u-cell/u-cell.vue +125 -0
  999. package/uview-ui/components/u-cell-group/props.js +15 -0
  1000. package/uview-ui/components/u-cell-group/style.css +25 -0
  1001. package/uview-ui/components/u-cell-group/style.scss +24 -0
  1002. package/uview-ui/components/u-cell-group/u-cell-group.vue +37 -0
  1003. package/uview-ui/components/u-checkbox/props.js +70 -0
  1004. package/uview-ui/components/u-checkbox/style.css +84 -0
  1005. package/uview-ui/components/u-checkbox/style.scss +101 -0
  1006. package/uview-ui/components/u-checkbox/u-checkbox.vue +239 -0
  1007. package/uview-ui/components/u-checkbox-group/props.js +82 -0
  1008. package/uview-ui/components/u-checkbox-group/style.css +23 -0
  1009. package/uview-ui/components/u-checkbox-group/style.scss +11 -0
  1010. package/uview-ui/components/u-checkbox-group/u-checkbox-group.vue +96 -0
  1011. package/uview-ui/components/u-circle-progress/props.js +9 -0
  1012. package/uview-ui/components/u-circle-progress/style.css +80 -0
  1013. package/uview-ui/components/u-circle-progress/style.scss +86 -0
  1014. package/uview-ui/components/u-circle-progress/u-circle-progress.vue +99 -0
  1015. package/uview-ui/components/u-code/props.js +35 -0
  1016. package/uview-ui/components/u-code/style.css +11 -0
  1017. package/uview-ui/components/u-code/style.scss +1 -0
  1018. package/uview-ui/components/u-code/u-code.vue +129 -0
  1019. package/uview-ui/components/u-code-input/props.js +80 -0
  1020. package/uview-ui/components/u-code-input/style.css +78 -0
  1021. package/uview-ui/components/u-code-input/style.scss +75 -0
  1022. package/uview-ui/components/u-code-input/u-code-input.vue +169 -0
  1023. package/uview-ui/components/u-col/props.js +30 -0
  1024. package/uview-ui/components/u-col/style.css +61 -0
  1025. package/uview-ui/components/u-col/style.scss +67 -0
  1026. package/uview-ui/components/u-col/u-col.vue +88 -0
  1027. package/uview-ui/components/u-collapse/props.js +20 -0
  1028. package/uview-ui/components/u-collapse/style.css +11 -0
  1029. package/uview-ui/components/u-collapse/style.scss +1 -0
  1030. package/uview-ui/components/u-collapse/u-collapse.vue +89 -0
  1031. package/uview-ui/components/u-collapse-item/props.js +60 -0
  1032. package/uview-ui/components/u-collapse-item/style.css +21 -0
  1033. package/uview-ui/components/u-collapse-item/style.scss +15 -0
  1034. package/uview-ui/components/u-collapse-item/u-collapse-item.vue +1 -0
  1035. package/uview-ui/components/u-column-notice/props.js +56 -0
  1036. package/uview-ui/components/u-column-notice/style.css +48 -0
  1037. package/uview-ui/components/u-column-notice/style.scss +35 -0
  1038. package/uview-ui/components/u-column-notice/u-column-notice.vue +95 -0
  1039. package/uview-ui/components/u-count-down/props.js +25 -0
  1040. package/uview-ui/components/u-count-down/style.css +16 -0
  1041. package/uview-ui/components/u-count-down/style.scss +12 -0
  1042. package/uview-ui/components/u-count-down/u-count-down.vue +1 -0
  1043. package/uview-ui/components/u-count-down/utils.js +62 -0
  1044. package/uview-ui/components/u-count-to/props.js +60 -0
  1045. package/uview-ui/components/u-count-to/style.css +17 -0
  1046. package/uview-ui/components/u-count-to/style.scss +8 -0
  1047. package/uview-ui/components/u-count-to/u-count-to.vue +179 -0
  1048. package/uview-ui/components/u-datetime-picker/props.js +117 -0
  1049. package/uview-ui/components/u-datetime-picker/style.css +11 -0
  1050. package/uview-ui/components/u-datetime-picker/style.scss +1 -0
  1051. package/uview-ui/components/u-datetime-picker/u-datetime-picker.vue +365 -0
  1052. package/uview-ui/components/u-divider/props.js +45 -0
  1053. package/uview-ui/components/u-divider/style.css +28 -0
  1054. package/uview-ui/components/u-divider/style.scss +23 -0
  1055. package/uview-ui/components/u-divider/u-divider.vue +73 -0
  1056. package/uview-ui/components/u-dropdown/props.js +65 -0
  1057. package/uview-ui/components/u-dropdown/style.css +32 -0
  1058. package/uview-ui/components/u-dropdown/style.scss +18 -0
  1059. package/uview-ui/components/u-dropdown/u-dropdown.vue +1 -0
  1060. package/uview-ui/components/u-dropdown-item/props.js +36 -0
  1061. package/uview-ui/components/u-dropdown-item/style.css +32 -0
  1062. package/uview-ui/components/u-dropdown-item/style.scss +18 -0
  1063. package/uview-ui/components/u-dropdown-item/u-dropdown-item.vue +1 -0
  1064. package/uview-ui/components/u-empty/props.js +60 -0
  1065. package/uview-ui/components/u-empty/style.css +38 -0
  1066. package/uview-ui/components/u-empty/style.scss +23 -0
  1067. package/uview-ui/components/u-empty/u-empty.vue +98 -0
  1068. package/uview-ui/components/u-form/props.js +46 -0
  1069. package/uview-ui/components/u-form/u-form.vue +1 -0
  1070. package/uview-ui/components/u-form-item/props.js +49 -0
  1071. package/uview-ui/components/u-form-item/style.css +95 -0
  1072. package/uview-ui/components/u-form-item/style.scss +76 -0
  1073. package/uview-ui/components/u-form-item/u-form-item.vue +159 -0
  1074. package/uview-ui/components/u-gap/props.js +25 -0
  1075. package/uview-ui/components/u-gap/style.css +11 -0
  1076. package/uview-ui/components/u-gap/style.scss +1 -0
  1077. package/uview-ui/components/u-gap/u-gap.vue +38 -0
  1078. package/uview-ui/components/u-grid/props.js +20 -0
  1079. package/uview-ui/components/u-grid/style.css +27 -0
  1080. package/uview-ui/components/u-grid/style.scss +15 -0
  1081. package/uview-ui/components/u-grid/u-grid.vue +79 -0
  1082. package/uview-ui/components/u-grid-item/props.js +15 -0
  1083. package/uview-ui/components/u-grid-item/style.css +41 -0
  1084. package/uview-ui/components/u-grid-item/style.scss +44 -0
  1085. package/uview-ui/components/u-grid-item/u-grid-item.vue +160 -0
  1086. package/uview-ui/components/u-icon/icons.js +214 -0
  1087. package/uview-ui/components/u-icon/props.js +90 -0
  1088. package/uview-ui/components/u-icon/style.css +74 -0
  1089. package/uview-ui/components/u-icon/style.scss +85 -0
  1090. package/uview-ui/components/u-icon/u-icon.vue +132 -0
  1091. package/uview-ui/components/u-image/props.js +85 -0
  1092. package/uview-ui/components/u-image/style.css +35 -0
  1093. package/uview-ui/components/u-image/style.scss +34 -0
  1094. package/uview-ui/components/u-image/u-image.vue +181 -0
  1095. package/uview-ui/components/u-index-anchor/props.js +30 -0
  1096. package/uview-ui/components/u-index-anchor/style.css +29 -0
  1097. package/uview-ui/components/u-index-anchor/style.scss +15 -0
  1098. package/uview-ui/components/u-index-anchor/u-index-anchor.vue +78 -0
  1099. package/uview-ui/components/u-index-item/props.js +3 -0
  1100. package/uview-ui/components/u-index-item/style.css +11 -0
  1101. package/uview-ui/components/u-index-item/style.scss +1 -0
  1102. package/uview-ui/components/u-index-item/u-index-item.vue +81 -0
  1103. package/uview-ui/components/u-index-list/props.js +30 -0
  1104. package/uview-ui/components/u-index-list/style.css +61 -0
  1105. package/uview-ui/components/u-index-list/style.scss +53 -0
  1106. package/uview-ui/components/u-index-list/u-index-list.vue +367 -0
  1107. package/uview-ui/components/u-input/props.js +188 -0
  1108. package/uview-ui/components/u-input/style.css +75 -0
  1109. package/uview-ui/components/u-input/style.scss +64 -0
  1110. package/uview-ui/components/u-input/u-input.vue +260 -0
  1111. package/uview-ui/components/u-keyboard/props.js +85 -0
  1112. package/uview-ui/components/u-keyboard/style.css +37 -0
  1113. package/uview-ui/components/u-keyboard/style.scss +31 -0
  1114. package/uview-ui/components/u-keyboard/u-keyboard.vue +115 -0
  1115. package/uview-ui/components/u-line/props.js +34 -0
  1116. package/uview-ui/components/u-line/style.css +16 -0
  1117. package/uview-ui/components/u-line/style.scss +7 -0
  1118. package/uview-ui/components/u-line/u-line.vue +50 -0
  1119. package/uview-ui/components/u-line-progress/props.js +29 -0
  1120. package/uview-ui/components/u-line-progress/style.css +50 -0
  1121. package/uview-ui/components/u-line-progress/style.scss +38 -0
  1122. package/uview-ui/components/u-line-progress/u-line-progress.vue +99 -0
  1123. package/uview-ui/components/u-link/props.js +40 -0
  1124. package/uview-ui/components/u-link/style.css +22 -0
  1125. package/uview-ui/components/u-link/style.scss +11 -0
  1126. package/uview-ui/components/u-link/u-link.vue +68 -0
  1127. package/uview-ui/components/u-list/props.js +76 -0
  1128. package/uview-ui/components/u-list/style.css +17 -0
  1129. package/uview-ui/components/u-list/style.scss +5 -0
  1130. package/uview-ui/components/u-list/u-list.vue +152 -0
  1131. package/uview-ui/components/u-list-item/props.js +10 -0
  1132. package/uview-ui/components/u-list-item/style.css +11 -0
  1133. package/uview-ui/components/u-list-item/style.scss +4 -0
  1134. package/uview-ui/components/u-list-item/u-list-item.vue +105 -0
  1135. package/uview-ui/components/u-loading-icon/props.js +60 -0
  1136. package/uview-ui/components/u-loading-icon/style.css +148 -0
  1137. package/uview-ui/components/u-loading-icon/style.scss +153 -0
  1138. package/uview-ui/components/u-loading-icon/u-loading-icon.vue +1 -0
  1139. package/uview-ui/components/u-loading-page/props.js +50 -0
  1140. package/uview-ui/components/u-loading-page/style.css +44 -0
  1141. package/uview-ui/components/u-loading-page/style.scss +37 -0
  1142. package/uview-ui/components/u-loading-page/u-loading-page.vue +75 -0
  1143. package/uview-ui/components/u-loadmore/props.js +95 -0
  1144. package/uview-ui/components/u-loadmore/style.css +40 -0
  1145. package/uview-ui/components/u-loadmore/style.scss +29 -0
  1146. package/uview-ui/components/u-loadmore/u-loadmore.vue +101 -0
  1147. package/uview-ui/components/u-modal/props.js +85 -0
  1148. package/uview-ui/components/u-modal/style.css +70 -0
  1149. package/uview-ui/components/u-modal/style.scss +65 -0
  1150. package/uview-ui/components/u-modal/u-modal.vue +1 -0
  1151. package/uview-ui/components/u-navbar/props.js +85 -0
  1152. package/uview-ui/components/u-navbar/style.css +62 -0
  1153. package/uview-ui/components/u-navbar/style.scss +58 -0
  1154. package/uview-ui/components/u-navbar/u-navbar.vue +114 -0
  1155. package/uview-ui/components/u-no-network/props.js +20 -0
  1156. package/uview-ui/components/u-no-network/style.css +49 -0
  1157. package/uview-ui/components/u-no-network/style.scss +36 -0
  1158. package/uview-ui/components/u-no-network/u-no-network.vue +168 -0
  1159. package/uview-ui/components/u-notice-bar/props.js +71 -0
  1160. package/uview-ui/components/u-notice-bar/style.css +16 -0
  1161. package/uview-ui/components/u-notice-bar/style.scss +7 -0
  1162. package/uview-ui/components/u-notice-bar/u-notice-bar.vue +98 -0
  1163. package/uview-ui/components/u-notify/props.js +50 -0
  1164. package/uview-ui/components/u-notify/style.css +39 -0
  1165. package/uview-ui/components/u-notify/style.scss +40 -0
  1166. package/uview-ui/components/u-notify/u-notify.vue +166 -0
  1167. package/uview-ui/components/u-number-box/props.js +110 -0
  1168. package/uview-ui/components/u-number-box/style.css +67 -0
  1169. package/uview-ui/components/u-number-box/style.scss +70 -0
  1170. package/uview-ui/components/u-number-box/u-number-box.vue +320 -0
  1171. package/uview-ui/components/u-number-keyboard/props.js +20 -0
  1172. package/uview-ui/components/u-number-keyboard/style.css +56 -0
  1173. package/uview-ui/components/u-number-keyboard/style.scss +62 -0
  1174. package/uview-ui/components/u-number-keyboard/u-number-keyboard.vue +118 -0
  1175. package/uview-ui/components/u-overlay/props.js +25 -0
  1176. package/uview-ui/components/u-overlay/style.css +19 -0
  1177. package/uview-ui/components/u-overlay/style.scss +14 -0
  1178. package/uview-ui/components/u-overlay/u-overlay.vue +48 -0
  1179. package/uview-ui/components/u-parse/node/node.vue +1 -0
  1180. package/uview-ui/components/u-parse/parser.js +1075 -0
  1181. package/uview-ui/components/u-parse/props.js +46 -0
  1182. package/uview-ui/components/u-parse/u-parse.vue +363 -0
  1183. package/uview-ui/components/u-picker/props.js +80 -0
  1184. package/uview-ui/components/u-picker/style.css +57 -0
  1185. package/uview-ui/components/u-picker/style.scss +45 -0
  1186. package/uview-ui/components/u-picker/u-picker.vue +228 -0
  1187. package/uview-ui/components/u-picker-column/props.js +3 -0
  1188. package/uview-ui/components/u-picker-column/style.css +11 -0
  1189. package/uview-ui/components/u-picker-column/style.scss +1 -0
  1190. package/uview-ui/components/u-picker-column/u-picker-column.vue +25 -0
  1191. package/uview-ui/components/u-popup/props.js +80 -0
  1192. package/uview-ui/components/u-popup/style.css +70 -0
  1193. package/uview-ui/components/u-popup/style.scss +75 -0
  1194. package/uview-ui/components/u-popup/u-popup.vue +1 -0
  1195. package/uview-ui/components/u-radio/props.js +65 -0
  1196. package/uview-ui/components/u-radio/style.css +84 -0
  1197. package/uview-ui/components/u-radio/style.scss +100 -0
  1198. package/uview-ui/components/u-radio/u-radio.vue +234 -0
  1199. package/uview-ui/components/u-radio-group/props.js +86 -0
  1200. package/uview-ui/components/u-radio-group/style.css +26 -0
  1201. package/uview-ui/components/u-radio-group/style.scss +13 -0
  1202. package/uview-ui/components/u-radio-group/u-radio-group.vue +97 -0
  1203. package/uview-ui/components/u-rate/props.js +70 -0
  1204. package/uview-ui/components/u-rate/style.css +43 -0
  1205. package/uview-ui/components/u-rate/style.scss +38 -0
  1206. package/uview-ui/components/u-rate/u-rate.vue +231 -0
  1207. package/uview-ui/components/u-read-more/props.js +62 -0
  1208. package/uview-ui/components/u-read-more/style.css +33 -0
  1209. package/uview-ui/components/u-read-more/style.scss +22 -0
  1210. package/uview-ui/components/u-read-more/u-read-more.vue +119 -0
  1211. package/uview-ui/components/u-row/props.js +20 -0
  1212. package/uview-ui/components/u-row/style.css +17 -0
  1213. package/uview-ui/components/u-row/style.scss +5 -0
  1214. package/uview-ui/components/u-row/u-row.vue +82 -0
  1215. package/uview-ui/components/u-row-notice/props.js +40 -0
  1216. package/uview-ui/components/u-row-notice/style.css +59 -0
  1217. package/uview-ui/components/u-row-notice/style.scss +48 -0
  1218. package/uview-ui/components/u-row-notice/u-row-notice.vue +256 -0
  1219. package/uview-ui/components/u-safe-bottom/props.js +3 -0
  1220. package/uview-ui/components/u-safe-bottom/style.css +5 -0
  1221. package/uview-ui/components/u-safe-bottom/style.scss +5 -0
  1222. package/uview-ui/components/u-safe-bottom/u-safe-bottom.vue +1 -0
  1223. package/uview-ui/components/u-scroll-list/nvue.js +3 -0
  1224. package/uview-ui/components/u-scroll-list/other.js +0 -0
  1225. package/uview-ui/components/u-scroll-list/props.js +35 -0
  1226. package/uview-ui/components/u-scroll-list/scrollWxs.wxs +50 -0
  1227. package/uview-ui/components/u-scroll-list/style.css +45 -0
  1228. package/uview-ui/components/u-scroll-list/style.scss +32 -0
  1229. package/uview-ui/components/u-scroll-list/u-scroll-list.vue +191 -0
  1230. package/uview-ui/components/u-search/props.js +119 -0
  1231. package/uview-ui/components/u-search/style.css +92 -0
  1232. package/uview-ui/components/u-search/style.scss +98 -0
  1233. package/uview-ui/components/u-search/u-search.vue +204 -0
  1234. package/uview-ui/components/u-skeleton/props.js +60 -0
  1235. package/uview-ui/components/u-skeleton/style.css +62 -0
  1236. package/uview-ui/components/u-skeleton/style.scss +59 -0
  1237. package/uview-ui/components/u-skeleton/u-skeleton.vue +188 -0
  1238. package/uview-ui/components/u-slider/mpother.js +113 -0
  1239. package/uview-ui/components/u-slider/mpwxs.js +42 -0
  1240. package/uview-ui/components/u-slider/mpwxs.wxs +121 -0
  1241. package/uview-ui/components/u-slider/nvue - /345/211/257/346/234/254.js" +175 -0
  1242. package/uview-ui/components/u-slider/nvue.js +190 -0
  1243. package/uview-ui/components/u-slider/props.js +55 -0
  1244. package/uview-ui/components/u-slider/style.css +11 -0
  1245. package/uview-ui/components/u-slider/style.scss +1 -0
  1246. package/uview-ui/components/u-slider/u-slider.vue +1 -0
  1247. package/uview-ui/components/u-status-bar/props.js +9 -0
  1248. package/uview-ui/components/u-status-bar/style.css +5 -0
  1249. package/uview-ui/components/u-status-bar/style.scss +6 -0
  1250. package/uview-ui/components/u-status-bar/u-status-bar.vue +37 -0
  1251. package/uview-ui/components/u-steps/props.js +40 -0
  1252. package/uview-ui/components/u-steps/style.css +24 -0
  1253. package/uview-ui/components/u-steps/style.scss +14 -0
  1254. package/uview-ui/components/u-steps/u-steps.vue +63 -0
  1255. package/uview-ui/components/u-steps-item/props.js +25 -0
  1256. package/uview-ui/components/u-steps-item/style.css +119 -0
  1257. package/uview-ui/components/u-steps-item/style.scss +111 -0
  1258. package/uview-ui/components/u-steps-item/u-steps-item.vue +225 -0
  1259. package/uview-ui/components/u-sticky/props.js +41 -0
  1260. package/uview-ui/components/u-sticky/style.css +5 -0
  1261. package/uview-ui/components/u-sticky/style.scss +6 -0
  1262. package/uview-ui/components/u-sticky/u-sticky.vue +201 -0
  1263. package/uview-ui/components/u-subsection/props.js +50 -0
  1264. package/uview-ui/components/u-subsection/style.css +95 -0
  1265. package/uview-ui/components/u-subsection/style.scss +90 -0
  1266. package/uview-ui/components/u-subsection/u-subsection.vue +188 -0
  1267. package/uview-ui/components/u-swipe-action/props.js +10 -0
  1268. package/uview-ui/components/u-swipe-action/u-swipe-action.vue +65 -0
  1269. package/uview-ui/components/u-swipe-action-item/index - backup.wxs +256 -0
  1270. package/uview-ui/components/u-swipe-action-item/index.wxs +225 -0
  1271. package/uview-ui/components/u-swipe-action-item/nvue - backup.js +264 -0
  1272. package/uview-ui/components/u-swipe-action-item/nvue.js +172 -0
  1273. package/uview-ui/components/u-swipe-action-item/props.js +42 -0
  1274. package/uview-ui/components/u-swipe-action-item/style.css +61 -0
  1275. package/uview-ui/components/u-swipe-action-item/style.scss +45 -0
  1276. package/uview-ui/components/u-swipe-action-item/u-swipe-action-item.vue +147 -0
  1277. package/uview-ui/components/u-swipe-action-item/wxs.js +15 -0
  1278. package/uview-ui/components/u-swiper/props.js +126 -0
  1279. package/uview-ui/components/u-swiper/style.css +58 -0
  1280. package/uview-ui/components/u-swiper/style.scss +50 -0
  1281. package/uview-ui/components/u-swiper/u-swiper.vue +196 -0
  1282. package/uview-ui/components/u-swiper-indicator/props.js +30 -0
  1283. package/uview-ui/components/u-swiper-indicator/style.css +37 -0
  1284. package/uview-ui/components/u-swiper-indicator/style.scss +31 -0
  1285. package/uview-ui/components/u-swiper-indicator/u-swiper-indicator.vue +70 -0
  1286. package/uview-ui/components/u-switch/props.js +55 -0
  1287. package/uview-ui/components/u-switch/style.css +58 -0
  1288. package/uview-ui/components/u-switch/style.scss +48 -0
  1289. package/uview-ui/components/u-switch/u-switch.vue +121 -0
  1290. package/uview-ui/components/u-tabbar/props.js +45 -0
  1291. package/uview-ui/components/u-tabbar/style.css +39 -0
  1292. package/uview-ui/components/u-tabbar/style.scss +24 -0
  1293. package/uview-ui/components/u-tabbar/u-tabbar.vue +115 -0
  1294. package/uview-ui/components/u-tabbar-item/props.js +35 -0
  1295. package/uview-ui/components/u-tabbar-item/style.css +39 -0
  1296. package/uview-ui/components/u-tabbar-item/style.scss +28 -0
  1297. package/uview-ui/components/u-tabbar-item/u-tabbar-item.vue +101 -0
  1298. package/uview-ui/components/u-table/props.js +3 -0
  1299. package/uview-ui/components/u-table/style.css +11 -0
  1300. package/uview-ui/components/u-table/style.scss +1 -0
  1301. package/uview-ui/components/u-table/u-table.vue +24 -0
  1302. package/uview-ui/components/u-tabs/props.js +65 -0
  1303. package/uview-ui/components/u-tabs/style.css +69 -0
  1304. package/uview-ui/components/u-tabs/style.scss +58 -0
  1305. package/uview-ui/components/u-tabs/u-tabs.vue +294 -0
  1306. package/uview-ui/components/u-tabs-item/props.js +3 -0
  1307. package/uview-ui/components/u-tabs-item/u-tabs-item.vue +26 -0
  1308. package/uview-ui/components/u-tag/props.js +85 -0
  1309. package/uview-ui/components/u-tag/style.css +180 -0
  1310. package/uview-ui/components/u-tag/style.scss +206 -0
  1311. package/uview-ui/components/u-tag/u-tag.vue +1 -0
  1312. package/uview-ui/components/u-td/props.js +3 -0
  1313. package/uview-ui/components/u-td/style.css +11 -0
  1314. package/uview-ui/components/u-td/style.scss +1 -0
  1315. package/uview-ui/components/u-td/u-td.vue +26 -0
  1316. package/uview-ui/components/u-text/props.js +111 -0
  1317. package/uview-ui/components/u-text/style.css +65 -0
  1318. package/uview-ui/components/u-text/style.scss +62 -0
  1319. package/uview-ui/components/u-text/u-text.vue +143 -0
  1320. package/uview-ui/components/u-text/value.js +85 -0
  1321. package/uview-ui/components/u-textarea/props.js +120 -0
  1322. package/uview-ui/components/u-textarea/style.css +46 -0
  1323. package/uview-ui/components/u-textarea/style.scss +39 -0
  1324. package/uview-ui/components/u-textarea/u-textarea.vue +194 -0
  1325. package/uview-ui/components/u-toast/style.css +78 -0
  1326. package/uview-ui/components/u-toast/style.scss +108 -0
  1327. package/uview-ui/components/u-toast/u-toast.vue +180 -0
  1328. package/uview-ui/components/u-toolbar/props.js +35 -0
  1329. package/uview-ui/components/u-toolbar/style.css +37 -0
  1330. package/uview-ui/components/u-toolbar/style.scss +32 -0
  1331. package/uview-ui/components/u-toolbar/u-toolbar.vue +62 -0
  1332. package/uview-ui/components/u-tooltip/clipboard.min.js +58 -0
  1333. package/uview-ui/components/u-tooltip/props.js +60 -0
  1334. package/uview-ui/components/u-tooltip/style.css +75 -0
  1335. package/uview-ui/components/u-tooltip/style.scss +63 -0
  1336. package/uview-ui/components/u-tooltip/u-tooltip.vue +278 -0
  1337. package/uview-ui/components/u-tr/props.js +3 -0
  1338. package/uview-ui/components/u-tr/style.css +11 -0
  1339. package/uview-ui/components/u-tr/style.scss +1 -0
  1340. package/uview-ui/components/u-tr/u-tr.vue +26 -0
  1341. package/uview-ui/components/u-transition/nvue.ani-map.js +1 -0
  1342. package/uview-ui/components/u-transition/props.js +25 -0
  1343. package/uview-ui/components/u-transition/style.css +109 -0
  1344. package/uview-ui/components/u-transition/style.scss +9 -0
  1345. package/uview-ui/components/u-transition/transition.js +157 -0
  1346. package/uview-ui/components/u-transition/u-transition.vue +85 -0
  1347. package/uview-ui/components/u-transition/vue.ani-style.scss +113 -0
  1348. package/uview-ui/components/u-upload/mixin.js +21 -0
  1349. package/uview-ui/components/u-upload/props.js +125 -0
  1350. package/uview-ui/components/u-upload/style.css +164 -0
  1351. package/uview-ui/components/u-upload/style.scss +200 -0
  1352. package/uview-ui/components/u-upload/u-upload.vue +312 -0
  1353. package/uview-ui/components/u-upload/utils.js +151 -0
  1354. package/uview-ui/components/uview-ui/uview-ui.vue +8 -0
  1355. package/uview-ui/index.css +352 -0
  1356. package/uview-ui/index.js +79 -0
  1357. package/uview-ui/index.scss +23 -0
  1358. package/uview-ui/libs/config/color.js +17 -0
  1359. package/uview-ui/libs/config/config.js +34 -0
  1360. package/uview-ui/libs/config/props/actionSheet.js +25 -0
  1361. package/uview-ui/libs/config/props/album.js +25 -0
  1362. package/uview-ui/libs/config/props/alert.js +22 -0
  1363. package/uview-ui/libs/config/props/avatar.js +28 -0
  1364. package/uview-ui/libs/config/props/avatarGroup.js +23 -0
  1365. package/uview-ui/libs/config/props/backtop.js +27 -0
  1366. package/uview-ui/libs/config/props/badge.js +27 -0
  1367. package/uview-ui/libs/config/props/button.js +42 -0
  1368. package/uview-ui/libs/config/props/calendar.js +42 -0
  1369. package/uview-ui/libs/config/props/carKeyboard.js +15 -0
  1370. package/uview-ui/libs/config/props/cell.js +35 -0
  1371. package/uview-ui/libs/config/props/cellGroup.js +17 -0
  1372. package/uview-ui/libs/config/props/checkbox.js +27 -0
  1373. package/uview-ui/libs/config/props/checkboxGroup.js +29 -0
  1374. package/uview-ui/libs/config/props/circleProgress.js +15 -0
  1375. package/uview-ui/libs/config/props/code.js +21 -0
  1376. package/uview-ui/libs/config/props/codeInput.js +29 -0
  1377. package/uview-ui/libs/config/props/col.js +19 -0
  1378. package/uview-ui/libs/config/props/collapse.js +17 -0
  1379. package/uview-ui/libs/config/props/collapseItem.js +25 -0
  1380. package/uview-ui/libs/config/props/columnNotice.js +24 -0
  1381. package/uview-ui/libs/config/props/countDown.js +18 -0
  1382. package/uview-ui/libs/config/props/countTo.js +25 -0
  1383. package/uview-ui/libs/config/props/datetimePicker.js +36 -0
  1384. package/uview-ui/libs/config/props/divider.js +23 -0
  1385. package/uview-ui/libs/config/props/empty.js +26 -0
  1386. package/uview-ui/libs/config/props/form.js +22 -0
  1387. package/uview-ui/libs/config/props/formItem.js +23 -0
  1388. package/uview-ui/libs/config/props/gap.js +19 -0
  1389. package/uview-ui/libs/config/props/grid.js +17 -0
  1390. package/uview-ui/libs/config/props/gridItem.js +16 -0
  1391. package/uview-ui/libs/config/props/icon.js +36 -0
  1392. package/uview-ui/libs/config/props/image.js +30 -0
  1393. package/uview-ui/libs/config/props/indexAnchor.js +19 -0
  1394. package/uview-ui/libs/config/props/indexList.js +19 -0
  1395. package/uview-ui/libs/config/props/input.js +48 -0
  1396. package/uview-ui/libs/config/props/keyboard.js +30 -0
  1397. package/uview-ui/libs/config/props/line.js +20 -0
  1398. package/uview-ui/libs/config/props/lineProgress.js +19 -0
  1399. package/uview-ui/libs/config/props/link.js +26 -0
  1400. package/uview-ui/libs/config/props/list.js +28 -0
  1401. package/uview-ui/libs/config/props/listItem.js +15 -0
  1402. package/uview-ui/libs/config/props/loadingIcon.js +30 -0
  1403. package/uview-ui/libs/config/props/loadingPage.js +23 -0
  1404. package/uview-ui/libs/config/props/loadmore.js +32 -0
  1405. package/uview-ui/libs/config/props/modal.js +30 -0
  1406. package/uview-ui/libs/config/props/navbar.js +32 -0
  1407. package/uview-ui/libs/config/props/noNetwork.js +18 -0
  1408. package/uview-ui/libs/config/props/noticeBar.js +27 -0
  1409. package/uview-ui/libs/config/props/notify.js +22 -0
  1410. package/uview-ui/libs/config/props/numberBox.js +35 -0
  1411. package/uview-ui/libs/config/props/numberKeyboard.js +17 -0
  1412. package/uview-ui/libs/config/props/overlay.js +18 -0
  1413. package/uview-ui/libs/config/props/parse.js +22 -0
  1414. package/uview-ui/libs/config/props/picker.js +29 -0
  1415. package/uview-ui/libs/config/props/popup.js +29 -0
  1416. package/uview-ui/libs/config/props/radio.js +27 -0
  1417. package/uview-ui/libs/config/props/radioGroup.js +30 -0
  1418. package/uview-ui/libs/config/props/rate.js +26 -0
  1419. package/uview-ui/libs/config/props/readMore.js +22 -0
  1420. package/uview-ui/libs/config/props/row.js +17 -0
  1421. package/uview-ui/libs/config/props/rowNotice.js +21 -0
  1422. package/uview-ui/libs/config/props/scrollList.js +20 -0
  1423. package/uview-ui/libs/config/props/search.js +37 -0
  1424. package/uview-ui/libs/config/props/section.js +24 -0
  1425. package/uview-ui/libs/config/props/skeleton.js +25 -0
  1426. package/uview-ui/libs/config/props/slider.js +25 -0
  1427. package/uview-ui/libs/config/props/statusBar.js +15 -0
  1428. package/uview-ui/libs/config/props/steps.js +21 -0
  1429. package/uview-ui/libs/config/props/stepsItem.js +18 -0
  1430. package/uview-ui/libs/config/props/sticky.js +20 -0
  1431. package/uview-ui/libs/config/props/subsection.js +23 -0
  1432. package/uview-ui/libs/config/props/swipeAction.js +15 -0
  1433. package/uview-ui/libs/config/props/swipeActionItem.js +21 -0
  1434. package/uview-ui/libs/config/props/swiper.js +39 -0
  1435. package/uview-ui/libs/config/props/swipterIndicator.js +19 -0
  1436. package/uview-ui/libs/config/props/switch.js +24 -0
  1437. package/uview-ui/libs/config/props/tabbar.js +22 -0
  1438. package/uview-ui/libs/config/props/tabbarItem.js +20 -0
  1439. package/uview-ui/libs/config/props/tabs.js +32 -0
  1440. package/uview-ui/libs/config/props/tag.js +29 -0
  1441. package/uview-ui/libs/config/props/text.js +38 -0
  1442. package/uview-ui/libs/config/props/textarea.js +36 -0
  1443. package/uview-ui/libs/config/props/toast.js +30 -0
  1444. package/uview-ui/libs/config/props/toolbar.js +21 -0
  1445. package/uview-ui/libs/config/props/tooltip.js +25 -0
  1446. package/uview-ui/libs/config/props/transition.js +18 -0
  1447. package/uview-ui/libs/config/props/upload.js +36 -0
  1448. package/uview-ui/libs/config/props.js +190 -0
  1449. package/uview-ui/libs/config/zIndex.js +20 -0
  1450. package/uview-ui/libs/css/color-libcss.scss +117 -0
  1451. package/uview-ui/libs/css/color.scss +155 -0
  1452. package/uview-ui/libs/css/common-libcss.scss +132 -0
  1453. package/uview-ui/libs/css/common.scss +97 -0
  1454. package/uview-ui/libs/css/components-libcss.scss +11 -0
  1455. package/uview-ui/libs/css/components.scss +15 -0
  1456. package/uview-ui/libs/css/flex-libcss.scss +169 -0
  1457. package/uview-ui/libs/css/flex.scss +257 -0
  1458. package/uview-ui/libs/css/h5-libcss.scss +0 -0
  1459. package/uview-ui/libs/css/h5.scss +0 -0
  1460. package/uview-ui/libs/css/mixin-libcss.scss +0 -0
  1461. package/uview-ui/libs/css/mixin.scss +8 -0
  1462. package/uview-ui/libs/css/mp-libcss.scss +0 -0
  1463. package/uview-ui/libs/css/mp.scss +0 -0
  1464. package/uview-ui/libs/css/nvue-libcss.scss +0 -0
  1465. package/uview-ui/libs/css/nvue.scss +0 -0
  1466. package/uview-ui/libs/css/vue-libcss.scss +35 -0
  1467. package/uview-ui/libs/css/vue.scss +27 -0
  1468. package/uview-ui/libs/function/colorGradient.js +134 -0
  1469. package/uview-ui/libs/function/debounce.js +29 -0
  1470. package/uview-ui/libs/function/digit.js +167 -0
  1471. package/uview-ui/libs/function/index.js +731 -0
  1472. package/uview-ui/libs/function/platform.js +75 -0
  1473. package/uview-ui/libs/function/test.js +288 -0
  1474. package/uview-ui/libs/function/throttle.js +30 -0
  1475. package/uview-ui/libs/luch-request/adapters/index.js +97 -0
  1476. package/uview-ui/libs/luch-request/core/InterceptorManager.js +50 -0
  1477. package/uview-ui/libs/luch-request/core/Request.js +198 -0
  1478. package/uview-ui/libs/luch-request/core/buildFullPath.js +20 -0
  1479. package/uview-ui/libs/luch-request/core/defaults.js +29 -0
  1480. package/uview-ui/libs/luch-request/core/dispatchRequest.js +3 -0
  1481. package/uview-ui/libs/luch-request/core/mergeConfig.js +103 -0
  1482. package/uview-ui/libs/luch-request/core/settle.js +16 -0
  1483. package/uview-ui/libs/luch-request/helpers/buildURL.js +69 -0
  1484. package/uview-ui/libs/luch-request/helpers/combineURLs.js +14 -0
  1485. package/uview-ui/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
  1486. package/uview-ui/libs/luch-request/index.d.ts +116 -0
  1487. package/uview-ui/libs/luch-request/index.js +3 -0
  1488. package/uview-ui/libs/luch-request/utils/clone.js +264 -0
  1489. package/uview-ui/libs/luch-request/utils.js +131 -0
  1490. package/uview-ui/libs/mixin/button.js +13 -0
  1491. package/uview-ui/libs/mixin/mixin.js +164 -0
  1492. package/uview-ui/libs/mixin/mpMixin.js +8 -0
  1493. package/uview-ui/libs/mixin/mpShare.js +13 -0
  1494. package/uview-ui/libs/mixin/openType.js +25 -0
  1495. package/uview-ui/libs/mixin/style.js +252 -0
  1496. package/uview-ui/libs/mixin/touch.js +61 -0
  1497. package/uview-ui/libs/util/async-validator.js +1343 -0
  1498. package/uview-ui/libs/util/calendar.js +546 -0
  1499. package/uview-ui/libs/util/dayjs.js +308 -0
  1500. package/uview-ui/libs/util/emitter.js +51 -0
  1501. package/uview-ui/libs/util/route.js +124 -0
  1502. package/uview-ui/package.json +87 -0
  1503. package/uview-ui/theme.css +29 -0
  1504. package/uview-ui/theme.scss +44 -0
  1505. package/ui-cv/cv-banner/cv-banner.vue +0 -131
  1506. package/ui-cv/cv-banner-card/cv-banner-card.vue +0 -145
  1507. package/ui-cv/cv-base-audio/cv-base-audio.vue +0 -279
  1508. package/ui-cv/cv-block/cv-block.vue +0 -91
  1509. package/ui-cv/cv-box/cv-box.vue +0 -73
  1510. package/ui-cv/cv-btn-base/cv-btn-base.vue +0 -70
  1511. package/ui-cv/cv-cell-row/cv-cell-row.vue +0 -220
  1512. package/ui-cv/cv-checkbox-group/cv-checkbox-group.vue +0 -257
  1513. package/ui-cv/cv-checkbox-opt-base/cv-checkbox-opt-base.vue +0 -97
  1514. package/ui-cv/cv-checkbox-opt-tag/cv-checkbox-opt-tag.vue +0 -111
  1515. package/ui-cv/cv-code-sms/cv-code-sms.vue +0 -229
  1516. package/ui-cv/cv-date-base/cv-date-base.vue +0 -105
  1517. package/ui-cv/cv-datetime-base/cv-datetime-base.vue +0 -152
  1518. package/ui-cv/cv-datetime-linkage/cv-datetime-linkage.vue +0 -489
  1519. package/ui-cv/cv-dialog-bottom/cv-dialog-bottom.vue +0 -172
  1520. package/ui-cv/cv-dialog-full/cv-dialog-full.vue +0 -159
  1521. package/ui-cv/cv-dialog-loading/cv-dialog-loading.vue +0 -103
  1522. package/ui-cv/cv-dialog-share/cv-dialog-share.vue +0 -157
  1523. package/ui-cv/cv-draw-barcode/cv-draw-barcode.vue +0 -209
  1524. package/ui-cv/cv-draw-posters/cv-draw-posters.vue +0 -492
  1525. package/ui-cv/cv-draw-progress/cv-draw-progress.vue +0 -141
  1526. package/ui-cv/cv-draw-qrcode/cv-draw-qrcode.vue +0 -305
  1527. package/ui-cv/cv-editor-parse/cv-editor-parse.vue +0 -112
  1528. package/ui-cv/cv-editor-quill/cv-editor-quill.vue +0 -485
  1529. package/ui-cv/cv-filter-hm/cv-filter-hm.vue +0 -867
  1530. package/ui-cv/cv-form-base/cv-form-base.vue +0 -469
  1531. package/ui-cv/cv-form-group/cv-form-group.vue +0 -123
  1532. package/ui-cv/cv-form-item/cv-form-item.vue +0 -558
  1533. package/ui-cv/cv-geo-local/cv-geo-local.vue +0 -264
  1534. package/ui-cv/cv-geo-region/cv-geo-region.vue +0 -243
  1535. package/ui-cv/cv-grid-item/cv-grid-item.vue +0 -213
  1536. package/ui-cv/cv-icons/cv-icons.vue +0 -133
  1537. package/ui-cv/cv-input-digit/cv-input-digit.vue +0 -112
  1538. package/ui-cv/cv-input-idcard/cv-input-idcard.vue +0 -107
  1539. package/ui-cv/cv-input-number/cv-input-number.vue +0 -112
  1540. package/ui-cv/cv-input-password/cv-input-password.vue +0 -125
  1541. package/ui-cv/cv-input-text/cv-input-text.vue +0 -118
  1542. package/ui-cv/cv-layout-topbar/cv-layout-topbar.vue +0 -238
  1543. package/ui-cv/cv-link/cv-link.vue +0 -58
  1544. package/ui-cv/cv-lists-base/cv-lists-base.vue +0 -650
  1545. package/ui-cv/cv-lists-swiper/cv-lists-swipe2r.vue +0 -197
  1546. package/ui-cv/cv-lists-swiper/cv-lists-swiper.vue +0 -517
  1547. package/ui-cv/cv-load-empty/cv-load-empty.vue +0 -57
  1548. package/ui-cv/cv-load-more/cv-load-more.vue +0 -407
  1549. package/ui-cv/cv-load-more2/cv-load-more2.vue +0 -44
  1550. package/ui-cv/cv-markdown-show/cv-markdown-show.vue +0 -109
  1551. package/ui-cv/cv-message/cv-message.vue +0 -37
  1552. package/ui-cv/cv-picker1/cv-picker1.vue +0 -205
  1553. package/ui-cv/cv-picker2/cv-picker2.vue +0 -252
  1554. package/ui-cv/cv-picker3/cv-picker3.vue +0 -313
  1555. package/ui-cv/cv-radio-group/cv-radio-group.vue +0 -196
  1556. package/ui-cv/cv-radio-opt-base/cv-radio-opt-base.vue +0 -91
  1557. package/ui-cv/cv-radio-opt-tag/cv-radio-opt-tag.vue +0 -107
  1558. package/ui-cv/cv-rate/cv-rate.vue +0 -182
  1559. package/ui-cv/cv-search/cv-search.vue +0 -186
  1560. package/ui-cv/cv-skeleton/cv-skeleton.vue +0 -171
  1561. package/ui-cv/cv-skeleton/cv-skeleton2.vue +0 -210
  1562. package/ui-cv/cv-skeleton-group/cv-skeleton-group.vue +0 -21
  1563. package/ui-cv/cv-specs/cv-specs.vue +0 -320
  1564. package/ui-cv/cv-switch/cv-switch.vue +0 -111
  1565. package/ui-cv/cv-tab-lists/cv-tab-lists.vue +0 -708
  1566. package/ui-cv/cv-tabs-box/cv-tabs-box.vue +0 -97
  1567. package/ui-cv/cv-tabs-item/cv-tabs-item.vue +0 -82
  1568. package/ui-cv/cv-textarea/cv-textarea.vue +0 -141
  1569. package/ui-cv/cv-time-base/cv-time-base.vue +0 -101
  1570. package/ui-cv/cv-treaty/cv-treaty.vue +0 -93
  1571. package/ui-cv/cv-upload-avatar/cv-upload-avatar.vue +0 -142
  1572. package/ui-cv/cv-upload-image/cv-upload-image.vue +0 -478
  1573. package/ui-uni/README.md +0 -1
  1574. package/ui-uni/amap-wx/js/util.js +0 -181
  1575. package/ui-uni/api-set-tabbar.nvue +0 -156
  1576. package/ui-uni/marked/index.js +0 -1
  1577. package/ui-uni/mpvue-citypicker/city-data/area.js +0 -12542
  1578. package/ui-uni/mpvue-citypicker/city-data/city.js +0 -1503
  1579. package/ui-uni/mpvue-citypicker/city-data/province.js +0 -139
  1580. package/ui-uni/mpvue-citypicker/mpvueCityPicker.vue +0 -230
  1581. package/ui-uni/mpvue-echarts/src/echarts.vue +0 -123
  1582. package/ui-uni/mpvue-picker/mpvuePicker.vue +0 -483
  1583. package/ui-uni/mpvueGestureLock/gestureLock.js +0 -175
  1584. package/ui-uni/mpvueGestureLock/index.vue +0 -138
  1585. package/ui-uni/page-foot/page-foot.vue +0 -38
  1586. package/ui-uni/page-head/page-head.vue +0 -16
  1587. package/ui-uni/product.vue +0 -66
  1588. package/ui-uni/tab-nvue/mediaList.vue +0 -175
  1589. package/ui-uni/u-link/u-link.vue +0 -59
  1590. package/ui-uni/uParse/src/components/wxParseAudio.vue +0 -26
  1591. package/ui-uni/uParse/src/components/wxParseImg.vue +0 -94
  1592. package/ui-uni/uParse/src/components/wxParseTable.vue +0 -55
  1593. package/ui-uni/uParse/src/components/wxParseTemplate0.vue +0 -103
  1594. package/ui-uni/uParse/src/components/wxParseTemplate1.vue +0 -88
  1595. package/ui-uni/uParse/src/components/wxParseTemplate10.vue +0 -88
  1596. package/ui-uni/uParse/src/components/wxParseTemplate11.vue +0 -86
  1597. package/ui-uni/uParse/src/components/wxParseTemplate2.vue +0 -88
  1598. package/ui-uni/uParse/src/components/wxParseTemplate3.vue +0 -88
  1599. package/ui-uni/uParse/src/components/wxParseTemplate4.vue +0 -88
  1600. package/ui-uni/uParse/src/components/wxParseTemplate5.vue +0 -88
  1601. package/ui-uni/uParse/src/components/wxParseTemplate6.vue +0 -88
  1602. package/ui-uni/uParse/src/components/wxParseTemplate7.vue +0 -88
  1603. package/ui-uni/uParse/src/components/wxParseTemplate8.vue +0 -88
  1604. package/ui-uni/uParse/src/components/wxParseTemplate9.vue +0 -88
  1605. package/ui-uni/uParse/src/components/wxParseVideo.vue +0 -15
  1606. package/ui-uni/uParse/src/editor.css +0 -495
  1607. package/ui-uni/uParse/src/libs/html2json.js +0 -261
  1608. package/ui-uni/uParse/src/libs/htmlparser.js +0 -156
  1609. package/ui-uni/uParse/src/libs/wxDiscode.js +0 -195
  1610. package/ui-uni/uParse/src/wxParse.vue +0 -206
  1611. package/ui-uni/uni-badge/uni-badge.vue +0 -250
  1612. package/ui-uni/uni-calendar/uni-calendar-item.vue +0 -171
  1613. package/ui-uni/uni-calendar/uni-calendar.vue +0 -504
  1614. package/ui-uni/uni-calendar/util.js +0 -352
  1615. package/ui-uni/uni-card/uni-card.vue +0 -420
  1616. package/ui-uni/uni-col/uni-col.vue +0 -2968
  1617. package/ui-uni/uni-collapse/uni-collapse.vue +0 -146
  1618. package/ui-uni/uni-collapse-item/uni-collapse-item.vue +0 -378
  1619. package/ui-uni/uni-combox/uni-combox.vue +0 -237
  1620. package/ui-uni/uni-countdown/uni-countdown.vue +0 -234
  1621. package/ui-uni/uni-data-checkbox/uni-data-checkbox.vue +0 -792
  1622. package/ui-uni/uni-data-indexed-list/clientdb.js +0 -362
  1623. package/ui-uni/uni-data-indexed-list/uni-data-indexed-list-item.vue +0 -142
  1624. package/ui-uni/uni-data-indexed-list/uni-data-indexed-list.vue +0 -364
  1625. package/ui-uni/uni-data-picker/uni-data-picker.vue +0 -468
  1626. package/ui-uni/uni-data-pickerview/uni-data-picker.js +0 -545
  1627. package/ui-uni/uni-data-pickerview/uni-data-pickerview.vue +0 -298
  1628. package/ui-uni/uni-dateformat/uni-dateformat.vue +0 -88
  1629. package/ui-uni/uni-datetime-picker/calendar-item.vue +0 -171
  1630. package/ui-uni/uni-datetime-picker/calendar.js +0 -546
  1631. package/ui-uni/uni-datetime-picker/calendar.vue +0 -747
  1632. package/ui-uni/uni-datetime-picker/keypress.js +0 -45
  1633. package/ui-uni/uni-datetime-picker/time-picker.vue +0 -899
  1634. package/ui-uni/uni-datetime-picker/uni-datetime-picker.vue +0 -874
  1635. package/ui-uni/uni-datetime-picker/util.js +0 -408
  1636. package/ui-uni/uni-drawer/keypress.js +0 -45
  1637. package/ui-uni/uni-drawer/uni-drawer.vue +0 -185
  1638. package/ui-uni/uni-easyinput/uni-easyinput.vue +0 -438
  1639. package/ui-uni/uni-fab/uni-fab.vue +0 -443
  1640. package/ui-uni/uni-fab/uni-fab.vue.bak +0 -382
  1641. package/ui-uni/uni-fav/uni-fav.vue +0 -136
  1642. package/ui-uni/uni-file-picker/choose-and-upload-file.js +0 -224
  1643. package/ui-uni/uni-file-picker/uni-file-picker.vue +0 -614
  1644. package/ui-uni/uni-file-picker/upload-file.vue +0 -309
  1645. package/ui-uni/uni-file-picker/upload-image.vue +0 -288
  1646. package/ui-uni/uni-forms/uni-forms.vue +0 -467
  1647. package/ui-uni/uni-forms-item/uni-forms-item.vue +0 -500
  1648. package/ui-uni/uni-goods-nav/uni-goods-nav.vue +0 -220
  1649. package/ui-uni/uni-grid/uni-grid.vue +0 -141
  1650. package/ui-uni/uni-grid-item/uni-grid-item.vue +0 -123
  1651. package/ui-uni/uni-group/uni-group.vue +0 -123
  1652. package/ui-uni/uni-icons/icons.js +0 -132
  1653. package/ui-uni/uni-icons/uni-icons.vue +0 -72
  1654. package/ui-uni/uni-icons/uni.ttf +0 -0
  1655. package/ui-uni/uni-indexed-list/uni-indexed-list-item.vue +0 -142
  1656. package/ui-uni/uni-indexed-list/uni-indexed-list.vue +0 -357
  1657. package/ui-uni/uni-link/uni-link.vue +0 -117
  1658. package/ui-uni/uni-list/uni-list.vue +0 -107
  1659. package/ui-uni/uni-list/uni-refresh.vue +0 -65
  1660. package/ui-uni/uni-list/uni-refresh.wxs +0 -87
  1661. package/ui-uni/uni-list-ad/uni-list-ad.vue +0 -106
  1662. package/ui-uni/uni-list-chat/uni-list-chat.scss +0 -58
  1663. package/ui-uni/uni-list-chat/uni-list-chat.vue +0 -498
  1664. package/ui-uni/uni-list-item/uni-list-item.vue +0 -428
  1665. package/ui-uni/uni-load-more/uni-load-more.vue +0 -366
  1666. package/ui-uni/uni-nav-bar/uni-nav-bar.vue +0 -244
  1667. package/ui-uni/uni-nav-bar/uni-status-bar.vue +0 -25
  1668. package/ui-uni/uni-notice-bar/uni-notice-bar.vue +0 -394
  1669. package/ui-uni/uni-number-box/uni-number-box.vue +0 -224
  1670. package/ui-uni/uni-pagination/uni-pagination.vue +0 -376
  1671. package/ui-uni/uni-popup/keypress.js +0 -45
  1672. package/ui-uni/uni-popup/popup.js +0 -23
  1673. package/ui-uni/uni-popup/uni-popup.vue +0 -429
  1674. package/ui-uni/uni-popup-dialog/keypress.js +0 -45
  1675. package/ui-uni/uni-popup-dialog/uni-popup-dialog.vue +0 -243
  1676. package/ui-uni/uni-popup-message/uni-popup-message.vue +0 -143
  1677. package/ui-uni/uni-popup-share/uni-popup-share.vue +0 -175
  1678. package/ui-uni/uni-rate/uni-rate.vue +0 -357
  1679. package/ui-uni/uni-row/uni-row.vue +0 -155
  1680. package/ui-uni/uni-search-bar/uni-search-bar.vue +0 -262
  1681. package/ui-uni/uni-section/uni-section.vue +0 -125
  1682. package/ui-uni/uni-segmented-control/uni-segmented-control.vue +0 -137
  1683. package/ui-uni/uni-status-bar/uni-status-bar.vue +0 -23
  1684. package/ui-uni/uni-steps/uni-steps.vue +0 -250
  1685. package/ui-uni/uni-swipe-action/uni-swipe-action.vue +0 -38
  1686. package/ui-uni/uni-swipe-action-item/bindingx.js +0 -293
  1687. package/ui-uni/uni-swipe-action-item/index.wxs +0 -323
  1688. package/ui-uni/uni-swipe-action-item/isPC.js +0 -12
  1689. package/ui-uni/uni-swipe-action-item/mpalipay.js +0 -208
  1690. package/ui-uni/uni-swipe-action-item/mpother.js +0 -253
  1691. package/ui-uni/uni-swipe-action-item/mpwxs.js +0 -123
  1692. package/ui-uni/uni-swipe-action-item/uni-swipe-action-item.vue +0 -316
  1693. package/ui-uni/uni-swiper-dot/uni-swiper-dot.vue +0 -205
  1694. package/ui-uni/uni-table/uni-table.vue +0 -455
  1695. package/ui-uni/uni-tag/uni-tag.vue +0 -283
  1696. package/ui-uni/uni-tbody/uni-tbody.vue +0 -30
  1697. package/ui-uni/uni-td/uni-td.vue +0 -88
  1698. package/ui-uni/uni-test/uni-test.vue +0 -17
  1699. package/ui-uni/uni-th/filter-dropdown.vue +0 -509
  1700. package/ui-uni/uni-th/uni-th.vue +0 -259
  1701. package/ui-uni/uni-thead/uni-thead.vue +0 -114
  1702. package/ui-uni/uni-title/uni-title.vue +0 -171
  1703. package/ui-uni/uni-tr/table-checkbox.vue +0 -172
  1704. package/ui-uni/uni-tr/uni-tr.vue +0 -156
  1705. package/ui-uni/uni-transition/createAnimation.js +0 -128
  1706. package/ui-uni/uni-transition/uni-transition.vue +0 -287
  1707. /package/{ui-uni → other}/mpvue-echarts/src/wx-canvas.js +0 -0
  1708. /package/{ui-uni → other}/u-charts/u-charts.js +0 -0
  1709. /package/{ui-uni/uParse/src → other/uParse}/wxParse.css +0 -0
  1710. /package/{ui-uni/amap-wx → plugins/map}/lib/amap-wx.js +0 -0
  1711. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcode.js +0 -0
  1712. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/Barcode.js +0 -0
  1713. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128.js +0 -0
  1714. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128A.js +0 -0
  1715. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128B.js +0 -0
  1716. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128C.js +0 -0
  1717. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128_AUTO.js +0 -0
  1718. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/auto.js +0 -0
  1719. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/constants.js +0 -0
  1720. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/index.js +0 -0
  1721. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE39/index.js +0 -0
  1722. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN.js +0 -0
  1723. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN13.js +0 -0
  1724. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN2.js +0 -0
  1725. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN5.js +0 -0
  1726. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN8.js +0 -0
  1727. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/UPC.js +0 -0
  1728. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/UPCE.js +0 -0
  1729. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/constants.js +0 -0
  1730. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/encoder.js +0 -0
  1731. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/index.js +0 -0
  1732. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/GenericBarcode/index.js +0 -0
  1733. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/ITF.js +0 -0
  1734. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/ITF14.js +0 -0
  1735. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/constants.js +0 -0
  1736. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/index.js +0 -0
  1737. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI.js +0 -0
  1738. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI10.js +0 -0
  1739. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI1010.js +0 -0
  1740. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI11.js +0 -0
  1741. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI1110.js +0 -0
  1742. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/checksums.js +0 -0
  1743. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/index.js +0 -0
  1744. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/codabar/index.js +0 -0
  1745. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/common.js +0 -0
  1746. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/index.js +0 -0
  1747. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/index.tmp.js +0 -0
  1748. /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/pharmacode/index.js +0 -0
  1749. /package/ui-cv/{cv-draw-qrcode → components/cv-draw-qrcode}/qrcode.js +0 -0
  1750. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseAudio.vue +0 -0
  1751. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseImg.vue +0 -0
  1752. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTable.vue +0 -0
  1753. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate0.vue +0 -0
  1754. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate1.vue +0 -0
  1755. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate10.vue +0 -0
  1756. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate11.vue +0 -0
  1757. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate2.vue +0 -0
  1758. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate3.vue +0 -0
  1759. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate4.vue +0 -0
  1760. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate5.vue +0 -0
  1761. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate6.vue +0 -0
  1762. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate7.vue +0 -0
  1763. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate8.vue +0 -0
  1764. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate9.vue +0 -0
  1765. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseVideo.vue +0 -0
  1766. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/html2json.js +0 -0
  1767. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/htmlparser.js +0 -0
  1768. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/wxDiscode.js +0 -0
  1769. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/readme.md +0 -0
  1770. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/u-parse.css +0 -0
  1771. /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/u-parse.vue +0 -0
  1772. /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/compressImage.vue +0 -0
  1773. /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/editor-icon.css +0 -0
  1774. /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/editor-icon.ttf +0 -0
  1775. /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/index.js +0 -0
  1776. /package/ui-cv/{cv-form-base → components/cv-form-base}/validate.js +0 -0
  1777. /package/ui-cv/{cv-form-group → components/cv-form-group}/cv-form-group2.vue +0 -0
  1778. /package/ui-cv/{cv-form-item → components/cv-form-item}/cv-form-item2.vue +0 -0
  1779. /package/ui-cv/{cv-grid-group → components/cv-grid-group}/cv-grid-group.vue +0 -0
  1780. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action-icons.js +0 -0
  1781. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action.css +0 -0
  1782. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action.js +0 -0
  1783. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow-icons.js +0 -0
  1784. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow.css +0 -0
  1785. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow.js +0 -0
  1786. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base-icons.js +0 -0
  1787. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base.css +0 -0
  1788. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base.js +0 -0
  1789. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default-icons.js +0 -0
  1790. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default.css +0 -0
  1791. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default.js +0 -0
  1792. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall-icons.js +0 -0
  1793. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall.css +0 -0
  1794. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall.js +0 -0
  1795. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media-icons.js +0 -0
  1796. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media.css +0 -0
  1797. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media.js +0 -0
  1798. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order-icons.js +0 -0
  1799. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order.css +0 -0
  1800. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order.js +0 -0
  1801. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people-icons.js +0 -0
  1802. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people.css +0 -0
  1803. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people.js +0 -0
  1804. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status-icons.js +0 -0
  1805. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status.css +0 -0
  1806. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status.js +0 -0
  1807. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet-icons.js +0 -0
  1808. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet.css +0 -0
  1809. /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet.js +0 -0
  1810. /package/ui-cv/{cv-icons → components/cv-icons}/icons/default-icons.js +0 -0
  1811. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-action.js +0 -0
  1812. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-arrow.js +0 -0
  1813. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-base.js +0 -0
  1814. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-mall.js +0 -0
  1815. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-media.js +0 -0
  1816. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-order.js +0 -0
  1817. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-people.js +0 -0
  1818. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-status.js +0 -0
  1819. /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-wallet.js +0 -0
  1820. /package/ui-cv/{cv-icons → components/cv-icons}/icons.js +0 -0
  1821. /package/ui-cv/{cv-input-text → components/cv-input-text}/input.css +0 -0
  1822. /package/ui-cv/{cv-load-more → components/cv-load-more}/config.json +0 -0
  1823. /package/ui-cv/{cv-load-more2 → components/cv-load-more2}/load-more.vue +0 -0
  1824. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/11.8.0-es/highlight.min.js +0 -0
  1825. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/atom-one-dark.css +0 -0
  1826. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/atom-one-light.css +0 -0
  1827. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/github-dark.min.css +0 -0
  1828. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/html-parser.js +0 -0
  1829. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/markdown-it.min.js +0 -0
  1830. /package/{ui-uni/marked → ui-cv/components/cv-markdown-show}/lib/marked.js +0 -0
  1831. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/markdown.css +0 -0
  1832. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/package.json +0 -0
  1833. /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/readme.md +0 -0
  1834. /package/ui-cv/{cv-rate → components/cv-rate}/uni-rate.vue +0 -0
  1835. /package/{ui-uni → uni-ui/lib}/uni-calendar/calendar.js +0 -0
  1836. /package/{ui-uni → uni-ui/lib}/uni-data-picker/keypress.js +0 -0
  1837. /package/{ui-uni → uni-ui/lib}/uni-dateformat/date-format.js +0 -0
  1838. /package/{ui-uni → uni-ui/lib}/uni-easyinput/common.js +0 -0
  1839. /package/{ui-uni → uni-ui/lib}/uni-file-picker/utils.js +0 -0
@@ -1,1503 +0,0 @@
1
- /* eslint-disable */
2
- var cityData = [
3
- [{
4
- "label": "市辖区",
5
- "value": "1101"
6
- }],
7
- [{
8
- "label": "市辖区",
9
- "value": "1201"
10
- }],
11
- [{
12
- "label": "石家庄市",
13
- "value": "1301"
14
- },
15
- {
16
- "label": "唐山市",
17
- "value": "1302"
18
- },
19
- {
20
- "label": "秦皇岛市",
21
- "value": "1303"
22
- },
23
- {
24
- "label": "邯郸市",
25
- "value": "1304"
26
- },
27
- {
28
- "label": "邢台市",
29
- "value": "1305"
30
- },
31
- {
32
- "label": "保定市",
33
- "value": "1306"
34
- },
35
- {
36
- "label": "张家口市",
37
- "value": "1307"
38
- },
39
- {
40
- "label": "承德市",
41
- "value": "1308"
42
- },
43
- {
44
- "label": "沧州市",
45
- "value": "1309"
46
- },
47
- {
48
- "label": "廊坊市",
49
- "value": "1310"
50
- },
51
- {
52
- "label": "衡水市",
53
- "value": "1311"
54
- }
55
- ],
56
- [{
57
- "label": "太原市",
58
- "value": "1401"
59
- },
60
- {
61
- "label": "大同市",
62
- "value": "1402"
63
- },
64
- {
65
- "label": "阳泉市",
66
- "value": "1403"
67
- },
68
- {
69
- "label": "长治市",
70
- "value": "1404"
71
- },
72
- {
73
- "label": "晋城市",
74
- "value": "1405"
75
- },
76
- {
77
- "label": "朔州市",
78
- "value": "1406"
79
- },
80
- {
81
- "label": "晋中市",
82
- "value": "1407"
83
- },
84
- {
85
- "label": "运城市",
86
- "value": "1408"
87
- },
88
- {
89
- "label": "忻州市",
90
- "value": "1409"
91
- },
92
- {
93
- "label": "临汾市",
94
- "value": "1410"
95
- },
96
- {
97
- "label": "吕梁市",
98
- "value": "1411"
99
- }
100
- ],
101
- [{
102
- "label": "呼和浩特市",
103
- "value": "1501"
104
- },
105
- {
106
- "label": "包头市",
107
- "value": "1502"
108
- },
109
- {
110
- "label": "乌海市",
111
- "value": "1503"
112
- },
113
- {
114
- "label": "赤峰市",
115
- "value": "1504"
116
- },
117
- {
118
- "label": "通辽市",
119
- "value": "1505"
120
- },
121
- {
122
- "label": "鄂尔多斯市",
123
- "value": "1506"
124
- },
125
- {
126
- "label": "呼伦贝尔市",
127
- "value": "1507"
128
- },
129
- {
130
- "label": "巴彦淖尔市",
131
- "value": "1508"
132
- },
133
- {
134
- "label": "乌兰察布市",
135
- "value": "1509"
136
- },
137
- {
138
- "label": "兴安盟",
139
- "value": "1522"
140
- },
141
- {
142
- "label": "锡林郭勒盟",
143
- "value": "1525"
144
- },
145
- {
146
- "label": "阿拉善盟",
147
- "value": "1529"
148
- }
149
- ],
150
- [{
151
- "label": "沈阳市",
152
- "value": "2101"
153
- },
154
- {
155
- "label": "大连市",
156
- "value": "2102"
157
- },
158
- {
159
- "label": "鞍山市",
160
- "value": "2103"
161
- },
162
- {
163
- "label": "抚顺市",
164
- "value": "2104"
165
- },
166
- {
167
- "label": "本溪市",
168
- "value": "2105"
169
- },
170
- {
171
- "label": "丹东市",
172
- "value": "2106"
173
- },
174
- {
175
- "label": "锦州市",
176
- "value": "2107"
177
- },
178
- {
179
- "label": "营口市",
180
- "value": "2108"
181
- },
182
- {
183
- "label": "阜新市",
184
- "value": "2109"
185
- },
186
- {
187
- "label": "辽阳市",
188
- "value": "2110"
189
- },
190
- {
191
- "label": "盘锦市",
192
- "value": "2111"
193
- },
194
- {
195
- "label": "铁岭市",
196
- "value": "2112"
197
- },
198
- {
199
- "label": "朝阳市",
200
- "value": "2113"
201
- },
202
- {
203
- "label": "葫芦岛市",
204
- "value": "2114"
205
- }
206
- ],
207
- [{
208
- "label": "长春市",
209
- "value": "2201"
210
- },
211
- {
212
- "label": "吉林市",
213
- "value": "2202"
214
- },
215
- {
216
- "label": "四平市",
217
- "value": "2203"
218
- },
219
- {
220
- "label": "辽源市",
221
- "value": "2204"
222
- },
223
- {
224
- "label": "通化市",
225
- "value": "2205"
226
- },
227
- {
228
- "label": "白山市",
229
- "value": "2206"
230
- },
231
- {
232
- "label": "松原市",
233
- "value": "2207"
234
- },
235
- {
236
- "label": "白城市",
237
- "value": "2208"
238
- },
239
- {
240
- "label": "延边朝鲜族自治州",
241
- "value": "2224"
242
- }
243
- ],
244
- [{
245
- "label": "哈尔滨市",
246
- "value": "2301"
247
- },
248
- {
249
- "label": "齐齐哈尔市",
250
- "value": "2302"
251
- },
252
- {
253
- "label": "鸡西市",
254
- "value": "2303"
255
- },
256
- {
257
- "label": "鹤岗市",
258
- "value": "2304"
259
- },
260
- {
261
- "label": "双鸭山市",
262
- "value": "2305"
263
- },
264
- {
265
- "label": "大庆市",
266
- "value": "2306"
267
- },
268
- {
269
- "label": "伊春市",
270
- "value": "2307"
271
- },
272
- {
273
- "label": "佳木斯市",
274
- "value": "2308"
275
- },
276
- {
277
- "label": "七台河市",
278
- "value": "2309"
279
- },
280
- {
281
- "label": "牡丹江市",
282
- "value": "2310"
283
- },
284
- {
285
- "label": "黑河市",
286
- "value": "2311"
287
- },
288
- {
289
- "label": "绥化市",
290
- "value": "2312"
291
- },
292
- {
293
- "label": "大兴安岭地区",
294
- "value": "2327"
295
- }
296
- ],
297
- [{
298
- "label": "市辖区",
299
- "value": "3101"
300
- }],
301
- [{
302
- "label": "南京市",
303
- "value": "3201"
304
- },
305
- {
306
- "label": "无锡市",
307
- "value": "3202"
308
- },
309
- {
310
- "label": "徐州市",
311
- "value": "3203"
312
- },
313
- {
314
- "label": "常州市",
315
- "value": "3204"
316
- },
317
- {
318
- "label": "苏州市",
319
- "value": "3205"
320
- },
321
- {
322
- "label": "南通市",
323
- "value": "3206"
324
- },
325
- {
326
- "label": "连云港市",
327
- "value": "3207"
328
- },
329
- {
330
- "label": "淮安市",
331
- "value": "3208"
332
- },
333
- {
334
- "label": "盐城市",
335
- "value": "3209"
336
- },
337
- {
338
- "label": "扬州市",
339
- "value": "3210"
340
- },
341
- {
342
- "label": "镇江市",
343
- "value": "3211"
344
- },
345
- {
346
- "label": "泰州市",
347
- "value": "3212"
348
- },
349
- {
350
- "label": "宿迁市",
351
- "value": "3213"
352
- }
353
- ],
354
- [{
355
- "label": "杭州市",
356
- "value": "3301"
357
- },
358
- {
359
- "label": "宁波市",
360
- "value": "3302"
361
- },
362
- {
363
- "label": "温州市",
364
- "value": "3303"
365
- },
366
- {
367
- "label": "嘉兴市",
368
- "value": "3304"
369
- },
370
- {
371
- "label": "湖州市",
372
- "value": "3305"
373
- },
374
- {
375
- "label": "绍兴市",
376
- "value": "3306"
377
- },
378
- {
379
- "label": "金华市",
380
- "value": "3307"
381
- },
382
- {
383
- "label": "衢州市",
384
- "value": "3308"
385
- },
386
- {
387
- "label": "舟山市",
388
- "value": "3309"
389
- },
390
- {
391
- "label": "台州市",
392
- "value": "3310"
393
- },
394
- {
395
- "label": "丽水市",
396
- "value": "3311"
397
- }
398
- ],
399
- [{
400
- "label": "合肥市",
401
- "value": "3401"
402
- },
403
- {
404
- "label": "芜湖市",
405
- "value": "3402"
406
- },
407
- {
408
- "label": "蚌埠市",
409
- "value": "3403"
410
- },
411
- {
412
- "label": "淮南市",
413
- "value": "3404"
414
- },
415
- {
416
- "label": "马鞍山市",
417
- "value": "3405"
418
- },
419
- {
420
- "label": "淮北市",
421
- "value": "3406"
422
- },
423
- {
424
- "label": "铜陵市",
425
- "value": "3407"
426
- },
427
- {
428
- "label": "安庆市",
429
- "value": "3408"
430
- },
431
- {
432
- "label": "黄山市",
433
- "value": "3410"
434
- },
435
- {
436
- "label": "滁州市",
437
- "value": "3411"
438
- },
439
- {
440
- "label": "阜阳市",
441
- "value": "3412"
442
- },
443
- {
444
- "label": "宿州市",
445
- "value": "3413"
446
- },
447
- {
448
- "label": "六安市",
449
- "value": "3415"
450
- },
451
- {
452
- "label": "亳州市",
453
- "value": "3416"
454
- },
455
- {
456
- "label": "池州市",
457
- "value": "3417"
458
- },
459
- {
460
- "label": "宣城市",
461
- "value": "3418"
462
- }
463
- ],
464
- [{
465
- "label": "福州市",
466
- "value": "3501"
467
- },
468
- {
469
- "label": "厦门市",
470
- "value": "3502"
471
- },
472
- {
473
- "label": "莆田市",
474
- "value": "3503"
475
- },
476
- {
477
- "label": "三明市",
478
- "value": "3504"
479
- },
480
- {
481
- "label": "泉州市",
482
- "value": "3505"
483
- },
484
- {
485
- "label": "漳州市",
486
- "value": "3506"
487
- },
488
- {
489
- "label": "南平市",
490
- "value": "3507"
491
- },
492
- {
493
- "label": "龙岩市",
494
- "value": "3508"
495
- },
496
- {
497
- "label": "宁德市",
498
- "value": "3509"
499
- }
500
- ],
501
- [{
502
- "label": "南昌市",
503
- "value": "3601"
504
- },
505
- {
506
- "label": "景德镇市",
507
- "value": "3602"
508
- },
509
- {
510
- "label": "萍乡市",
511
- "value": "3603"
512
- },
513
- {
514
- "label": "九江市",
515
- "value": "3604"
516
- },
517
- {
518
- "label": "新余市",
519
- "value": "3605"
520
- },
521
- {
522
- "label": "鹰潭市",
523
- "value": "3606"
524
- },
525
- {
526
- "label": "赣州市",
527
- "value": "3607"
528
- },
529
- {
530
- "label": "吉安市",
531
- "value": "3608"
532
- },
533
- {
534
- "label": "宜春市",
535
- "value": "3609"
536
- },
537
- {
538
- "label": "抚州市",
539
- "value": "3610"
540
- },
541
- {
542
- "label": "上饶市",
543
- "value": "3611"
544
- }
545
- ],
546
- [{
547
- "label": "济南市",
548
- "value": "3701"
549
- },
550
- {
551
- "label": "青岛市",
552
- "value": "3702"
553
- },
554
- {
555
- "label": "淄博市",
556
- "value": "3703"
557
- },
558
- {
559
- "label": "枣庄市",
560
- "value": "3704"
561
- },
562
- {
563
- "label": "东营市",
564
- "value": "3705"
565
- },
566
- {
567
- "label": "烟台市",
568
- "value": "3706"
569
- },
570
- {
571
- "label": "潍坊市",
572
- "value": "3707"
573
- },
574
- {
575
- "label": "济宁市",
576
- "value": "3708"
577
- },
578
- {
579
- "label": "泰安市",
580
- "value": "3709"
581
- },
582
- {
583
- "label": "威海市",
584
- "value": "3710"
585
- },
586
- {
587
- "label": "日照市",
588
- "value": "3711"
589
- },
590
- {
591
- "label": "莱芜市",
592
- "value": "3712"
593
- },
594
- {
595
- "label": "临沂市",
596
- "value": "3713"
597
- },
598
- {
599
- "label": "德州市",
600
- "value": "3714"
601
- },
602
- {
603
- "label": "聊城市",
604
- "value": "3715"
605
- },
606
- {
607
- "label": "滨州市",
608
- "value": "3716"
609
- },
610
- {
611
- "label": "菏泽市",
612
- "value": "3717"
613
- }
614
- ],
615
- [{
616
- "label": "郑州市",
617
- "value": "4101"
618
- },
619
- {
620
- "label": "开封市",
621
- "value": "4102"
622
- },
623
- {
624
- "label": "洛阳市",
625
- "value": "4103"
626
- },
627
- {
628
- "label": "平顶山市",
629
- "value": "4104"
630
- },
631
- {
632
- "label": "安阳市",
633
- "value": "4105"
634
- },
635
- {
636
- "label": "鹤壁市",
637
- "value": "4106"
638
- },
639
- {
640
- "label": "新乡市",
641
- "value": "4107"
642
- },
643
- {
644
- "label": "焦作市",
645
- "value": "4108"
646
- },
647
- {
648
- "label": "濮阳市",
649
- "value": "4109"
650
- },
651
- {
652
- "label": "许昌市",
653
- "value": "4110"
654
- },
655
- {
656
- "label": "漯河市",
657
- "value": "4111"
658
- },
659
- {
660
- "label": "三门峡市",
661
- "value": "4112"
662
- },
663
- {
664
- "label": "南阳市",
665
- "value": "4113"
666
- },
667
- {
668
- "label": "商丘市",
669
- "value": "4114"
670
- },
671
- {
672
- "label": "信阳市",
673
- "value": "4115"
674
- },
675
- {
676
- "label": "周口市",
677
- "value": "4116"
678
- },
679
- {
680
- "label": "驻马店市",
681
- "value": "4117"
682
- },
683
- {
684
- "label": "省直辖县级行政区划",
685
- "value": "4190"
686
- }
687
- ],
688
- [{
689
- "label": "武汉市",
690
- "value": "4201"
691
- },
692
- {
693
- "label": "黄石市",
694
- "value": "4202"
695
- },
696
- {
697
- "label": "十堰市",
698
- "value": "4203"
699
- },
700
- {
701
- "label": "宜昌市",
702
- "value": "4205"
703
- },
704
- {
705
- "label": "襄阳市",
706
- "value": "4206"
707
- },
708
- {
709
- "label": "鄂州市",
710
- "value": "4207"
711
- },
712
- {
713
- "label": "荆门市",
714
- "value": "4208"
715
- },
716
- {
717
- "label": "孝感市",
718
- "value": "4209"
719
- },
720
- {
721
- "label": "荆州市",
722
- "value": "4210"
723
- },
724
- {
725
- "label": "黄冈市",
726
- "value": "4211"
727
- },
728
- {
729
- "label": "咸宁市",
730
- "value": "4212"
731
- },
732
- {
733
- "label": "随州市",
734
- "value": "4213"
735
- },
736
- {
737
- "label": "恩施土家族苗族自治州",
738
- "value": "4228"
739
- },
740
- {
741
- "label": "省直辖县级行政区划",
742
- "value": "4290"
743
- }
744
- ],
745
- [{
746
- "label": "长沙市",
747
- "value": "4301"
748
- },
749
- {
750
- "label": "株洲市",
751
- "value": "4302"
752
- },
753
- {
754
- "label": "湘潭市",
755
- "value": "4303"
756
- },
757
- {
758
- "label": "衡阳市",
759
- "value": "4304"
760
- },
761
- {
762
- "label": "邵阳市",
763
- "value": "4305"
764
- },
765
- {
766
- "label": "岳阳市",
767
- "value": "4306"
768
- },
769
- {
770
- "label": "常德市",
771
- "value": "4307"
772
- },
773
- {
774
- "label": "张家界市",
775
- "value": "4308"
776
- },
777
- {
778
- "label": "益阳市",
779
- "value": "4309"
780
- },
781
- {
782
- "label": "郴州市",
783
- "value": "4310"
784
- },
785
- {
786
- "label": "永州市",
787
- "value": "4311"
788
- },
789
- {
790
- "label": "怀化市",
791
- "value": "4312"
792
- },
793
- {
794
- "label": "娄底市",
795
- "value": "4313"
796
- },
797
- {
798
- "label": "湘西土家族苗族自治州",
799
- "value": "4331"
800
- }
801
- ],
802
- [{
803
- "label": "广州市",
804
- "value": "4401"
805
- },
806
- {
807
- "label": "韶关市",
808
- "value": "4402"
809
- },
810
- {
811
- "label": "深圳市",
812
- "value": "4403"
813
- },
814
- {
815
- "label": "珠海市",
816
- "value": "4404"
817
- },
818
- {
819
- "label": "汕头市",
820
- "value": "4405"
821
- },
822
- {
823
- "label": "佛山市",
824
- "value": "4406"
825
- },
826
- {
827
- "label": "江门市",
828
- "value": "4407"
829
- },
830
- {
831
- "label": "湛江市",
832
- "value": "4408"
833
- },
834
- {
835
- "label": "茂名市",
836
- "value": "4409"
837
- },
838
- {
839
- "label": "肇庆市",
840
- "value": "4412"
841
- },
842
- {
843
- "label": "惠州市",
844
- "value": "4413"
845
- },
846
- {
847
- "label": "梅州市",
848
- "value": "4414"
849
- },
850
- {
851
- "label": "汕尾市",
852
- "value": "4415"
853
- },
854
- {
855
- "label": "河源市",
856
- "value": "4416"
857
- },
858
- {
859
- "label": "阳江市",
860
- "value": "4417"
861
- },
862
- {
863
- "label": "清远市",
864
- "value": "4418"
865
- },
866
- {
867
- "label": "东莞市",
868
- "value": "4419"
869
- },
870
- {
871
- "label": "中山市",
872
- "value": "4420"
873
- },
874
- {
875
- "label": "潮州市",
876
- "value": "4451"
877
- },
878
- {
879
- "label": "揭阳市",
880
- "value": "4452"
881
- },
882
- {
883
- "label": "云浮市",
884
- "value": "4453"
885
- }
886
- ],
887
- [{
888
- "label": "南宁市",
889
- "value": "4501"
890
- },
891
- {
892
- "label": "柳州市",
893
- "value": "4502"
894
- },
895
- {
896
- "label": "桂林市",
897
- "value": "4503"
898
- },
899
- {
900
- "label": "梧州市",
901
- "value": "4504"
902
- },
903
- {
904
- "label": "北海市",
905
- "value": "4505"
906
- },
907
- {
908
- "label": "防城港市",
909
- "value": "4506"
910
- },
911
- {
912
- "label": "钦州市",
913
- "value": "4507"
914
- },
915
- {
916
- "label": "贵港市",
917
- "value": "4508"
918
- },
919
- {
920
- "label": "玉林市",
921
- "value": "4509"
922
- },
923
- {
924
- "label": "百色市",
925
- "value": "4510"
926
- },
927
- {
928
- "label": "贺州市",
929
- "value": "4511"
930
- },
931
- {
932
- "label": "河池市",
933
- "value": "4512"
934
- },
935
- {
936
- "label": "来宾市",
937
- "value": "4513"
938
- },
939
- {
940
- "label": "崇左市",
941
- "value": "4514"
942
- }
943
- ],
944
- [{
945
- "label": "海口市",
946
- "value": "4601"
947
- },
948
- {
949
- "label": "三亚市",
950
- "value": "4602"
951
- },
952
- {
953
- "label": "三沙市",
954
- "value": "4603"
955
- },
956
- {
957
- "label": "儋州市",
958
- "value": "4604"
959
- },
960
- {
961
- "label": "省直辖县级行政区划",
962
- "value": "4690"
963
- }
964
- ],
965
- [{
966
- "label": "市辖区",
967
- "value": "5001"
968
- },
969
- {
970
- "label": "县",
971
- "value": "5002"
972
- }
973
- ],
974
- [{
975
- "label": "成都市",
976
- "value": "5101"
977
- },
978
- {
979
- "label": "自贡市",
980
- "value": "5103"
981
- },
982
- {
983
- "label": "攀枝花市",
984
- "value": "5104"
985
- },
986
- {
987
- "label": "泸州市",
988
- "value": "5105"
989
- },
990
- {
991
- "label": "德阳市",
992
- "value": "5106"
993
- },
994
- {
995
- "label": "绵阳市",
996
- "value": "5107"
997
- },
998
- {
999
- "label": "广元市",
1000
- "value": "5108"
1001
- },
1002
- {
1003
- "label": "遂宁市",
1004
- "value": "5109"
1005
- },
1006
- {
1007
- "label": "内江市",
1008
- "value": "5110"
1009
- },
1010
- {
1011
- "label": "乐山市",
1012
- "value": "5111"
1013
- },
1014
- {
1015
- "label": "南充市",
1016
- "value": "5113"
1017
- },
1018
- {
1019
- "label": "眉山市",
1020
- "value": "5114"
1021
- },
1022
- {
1023
- "label": "宜宾市",
1024
- "value": "5115"
1025
- },
1026
- {
1027
- "label": "广安市",
1028
- "value": "5116"
1029
- },
1030
- {
1031
- "label": "达州市",
1032
- "value": "5117"
1033
- },
1034
- {
1035
- "label": "雅安市",
1036
- "value": "5118"
1037
- },
1038
- {
1039
- "label": "巴中市",
1040
- "value": "5119"
1041
- },
1042
- {
1043
- "label": "资阳市",
1044
- "value": "5120"
1045
- },
1046
- {
1047
- "label": "阿坝藏族羌族自治州",
1048
- "value": "5132"
1049
- },
1050
- {
1051
- "label": "甘孜藏族自治州",
1052
- "value": "5133"
1053
- },
1054
- {
1055
- "label": "凉山彝族自治州",
1056
- "value": "5134"
1057
- }
1058
- ],
1059
- [{
1060
- "label": "贵阳市",
1061
- "value": "5201"
1062
- },
1063
- {
1064
- "label": "六盘水市",
1065
- "value": "5202"
1066
- },
1067
- {
1068
- "label": "遵义市",
1069
- "value": "5203"
1070
- },
1071
- {
1072
- "label": "安顺市",
1073
- "value": "5204"
1074
- },
1075
- {
1076
- "label": "毕节市",
1077
- "value": "5205"
1078
- },
1079
- {
1080
- "label": "铜仁市",
1081
- "value": "5206"
1082
- },
1083
- {
1084
- "label": "黔西南布依族苗族自治州",
1085
- "value": "5223"
1086
- },
1087
- {
1088
- "label": "黔东南苗族侗族自治州",
1089
- "value": "5226"
1090
- },
1091
- {
1092
- "label": "黔南布依族苗族自治州",
1093
- "value": "5227"
1094
- }
1095
- ],
1096
- [{
1097
- "label": "昆明市",
1098
- "value": "5301"
1099
- },
1100
- {
1101
- "label": "曲靖市",
1102
- "value": "5303"
1103
- },
1104
- {
1105
- "label": "玉溪市",
1106
- "value": "5304"
1107
- },
1108
- {
1109
- "label": "保山市",
1110
- "value": "5305"
1111
- },
1112
- {
1113
- "label": "昭通市",
1114
- "value": "5306"
1115
- },
1116
- {
1117
- "label": "丽江市",
1118
- "value": "5307"
1119
- },
1120
- {
1121
- "label": "普洱市",
1122
- "value": "5308"
1123
- },
1124
- {
1125
- "label": "临沧市",
1126
- "value": "5309"
1127
- },
1128
- {
1129
- "label": "楚雄彝族自治州",
1130
- "value": "5323"
1131
- },
1132
- {
1133
- "label": "红河哈尼族彝族自治州",
1134
- "value": "5325"
1135
- },
1136
- {
1137
- "label": "文山壮族苗族自治州",
1138
- "value": "5326"
1139
- },
1140
- {
1141
- "label": "西双版纳傣族自治州",
1142
- "value": "5328"
1143
- },
1144
- {
1145
- "label": "大理白族自治州",
1146
- "value": "5329"
1147
- },
1148
- {
1149
- "label": "德宏傣族景颇族自治州",
1150
- "value": "5331"
1151
- },
1152
- {
1153
- "label": "怒江傈僳族自治州",
1154
- "value": "5333"
1155
- },
1156
- {
1157
- "label": "迪庆藏族自治州",
1158
- "value": "5334"
1159
- }
1160
- ],
1161
- [{
1162
- "label": "拉萨市",
1163
- "value": "5401"
1164
- },
1165
- {
1166
- "label": "日喀则市",
1167
- "value": "5402"
1168
- },
1169
- {
1170
- "label": "昌都市",
1171
- "value": "5403"
1172
- },
1173
- {
1174
- "label": "林芝市",
1175
- "value": "5404"
1176
- },
1177
- {
1178
- "label": "山南市",
1179
- "value": "5405"
1180
- },
1181
- {
1182
- "label": "那曲地区",
1183
- "value": "5424"
1184
- },
1185
- {
1186
- "label": "阿里地区",
1187
- "value": "5425"
1188
- }
1189
- ],
1190
- [{
1191
- "label": "西安市",
1192
- "value": "6101"
1193
- },
1194
- {
1195
- "label": "铜川市",
1196
- "value": "6102"
1197
- },
1198
- {
1199
- "label": "宝鸡市",
1200
- "value": "6103"
1201
- },
1202
- {
1203
- "label": "咸阳市",
1204
- "value": "6104"
1205
- },
1206
- {
1207
- "label": "渭南市",
1208
- "value": "6105"
1209
- },
1210
- {
1211
- "label": "延安市",
1212
- "value": "6106"
1213
- },
1214
- {
1215
- "label": "汉中市",
1216
- "value": "6107"
1217
- },
1218
- {
1219
- "label": "榆林市",
1220
- "value": "6108"
1221
- },
1222
- {
1223
- "label": "安康市",
1224
- "value": "6109"
1225
- },
1226
- {
1227
- "label": "商洛市",
1228
- "value": "6110"
1229
- }
1230
- ],
1231
- [{
1232
- "label": "兰州市",
1233
- "value": "6201"
1234
- },
1235
- {
1236
- "label": "嘉峪关市",
1237
- "value": "6202"
1238
- },
1239
- {
1240
- "label": "金昌市",
1241
- "value": "6203"
1242
- },
1243
- {
1244
- "label": "白银市",
1245
- "value": "6204"
1246
- },
1247
- {
1248
- "label": "天水市",
1249
- "value": "6205"
1250
- },
1251
- {
1252
- "label": "武威市",
1253
- "value": "6206"
1254
- },
1255
- {
1256
- "label": "张掖市",
1257
- "value": "6207"
1258
- },
1259
- {
1260
- "label": "平凉市",
1261
- "value": "6208"
1262
- },
1263
- {
1264
- "label": "酒泉市",
1265
- "value": "6209"
1266
- },
1267
- {
1268
- "label": "庆阳市",
1269
- "value": "6210"
1270
- },
1271
- {
1272
- "label": "定西市",
1273
- "value": "6211"
1274
- },
1275
- {
1276
- "label": "陇南市",
1277
- "value": "6212"
1278
- },
1279
- {
1280
- "label": "临夏回族自治州",
1281
- "value": "6229"
1282
- },
1283
- {
1284
- "label": "甘南藏族自治州",
1285
- "value": "6230"
1286
- }
1287
- ],
1288
- [{
1289
- "label": "西宁市",
1290
- "value": "6301"
1291
- },
1292
- {
1293
- "label": "海东市",
1294
- "value": "6302"
1295
- },
1296
- {
1297
- "label": "海北藏族自治州",
1298
- "value": "6322"
1299
- },
1300
- {
1301
- "label": "黄南藏族自治州",
1302
- "value": "6323"
1303
- },
1304
- {
1305
- "label": "海南藏族自治州",
1306
- "value": "6325"
1307
- },
1308
- {
1309
- "label": "果洛藏族自治州",
1310
- "value": "6326"
1311
- },
1312
- {
1313
- "label": "玉树藏族自治州",
1314
- "value": "6327"
1315
- },
1316
- {
1317
- "label": "海西蒙古族藏族自治州",
1318
- "value": "6328"
1319
- }
1320
- ],
1321
- [{
1322
- "label": "银川市",
1323
- "value": "6401"
1324
- },
1325
- {
1326
- "label": "石嘴山市",
1327
- "value": "6402"
1328
- },
1329
- {
1330
- "label": "吴忠市",
1331
- "value": "6403"
1332
- },
1333
- {
1334
- "label": "固原市",
1335
- "value": "6404"
1336
- },
1337
- {
1338
- "label": "中卫市",
1339
- "value": "6405"
1340
- }
1341
- ],
1342
- [{
1343
- "label": "乌鲁木齐市",
1344
- "value": "6501"
1345
- },
1346
- {
1347
- "label": "克拉玛依市",
1348
- "value": "6502"
1349
- },
1350
- {
1351
- "label": "吐鲁番市",
1352
- "value": "6504"
1353
- },
1354
- {
1355
- "label": "哈密市",
1356
- "value": "6505"
1357
- },
1358
- {
1359
- "label": "昌吉回族自治州",
1360
- "value": "6523"
1361
- },
1362
- {
1363
- "label": "博尔塔拉蒙古自治州",
1364
- "value": "6527"
1365
- },
1366
- {
1367
- "label": "巴音郭楞蒙古自治州",
1368
- "value": "6528"
1369
- },
1370
- {
1371
- "label": "阿克苏地区",
1372
- "value": "6529"
1373
- },
1374
- {
1375
- "label": "克孜勒苏柯尔克孜自治州",
1376
- "value": "6530"
1377
- },
1378
- {
1379
- "label": "喀什地区",
1380
- "value": "6531"
1381
- },
1382
- {
1383
- "label": "和田地区",
1384
- "value": "6532"
1385
- },
1386
- {
1387
- "label": "伊犁哈萨克自治州",
1388
- "value": "6540"
1389
- },
1390
- {
1391
- "label": "塔城地区",
1392
- "value": "6542"
1393
- },
1394
- {
1395
- "label": "阿勒泰地区",
1396
- "value": "6543"
1397
- },
1398
- {
1399
- "label": "自治区直辖县级行政区划",
1400
- "value": "6590"
1401
- }
1402
- ],
1403
- [{
1404
- "label": "台北",
1405
- "value": "6601"
1406
- },
1407
- {
1408
- "label": "高雄",
1409
- "value": "6602"
1410
- },
1411
- {
1412
- "label": "基隆",
1413
- "value": "6603"
1414
- },
1415
- {
1416
- "label": "台中",
1417
- "value": "6604"
1418
- },
1419
- {
1420
- "label": "台南",
1421
- "value": "6605"
1422
- },
1423
- {
1424
- "label": "新竹",
1425
- "value": "6606"
1426
- },
1427
- {
1428
- "label": "嘉义",
1429
- "value": "6607"
1430
- },
1431
- {
1432
- "label": "宜兰",
1433
- "value": "6608"
1434
- },
1435
- {
1436
- "label": "桃园",
1437
- "value": "6609"
1438
- },
1439
- {
1440
- "label": "苗栗",
1441
- "value": "6610"
1442
- },
1443
- {
1444
- "label": "彰化",
1445
- "value": "6611"
1446
- },
1447
- {
1448
- "label": "南投",
1449
- "value": "6612"
1450
- },
1451
- {
1452
- "label": "云林",
1453
- "value": "6613"
1454
- },
1455
- {
1456
- "label": "屏东",
1457
- "value": "6614"
1458
- },
1459
- {
1460
- "label": "台东",
1461
- "value": "6615"
1462
- },
1463
- {
1464
- "label": "花莲",
1465
- "value": "6616"
1466
- },
1467
- {
1468
- "label": "澎湖",
1469
- "value": "6617"
1470
- }
1471
- ],
1472
- [{
1473
- "label": "香港岛",
1474
- "value": "6701"
1475
- },
1476
- {
1477
- "label": "九龙",
1478
- "value": "6702"
1479
- },
1480
- {
1481
- "label": "新界",
1482
- "value": "6703"
1483
- }
1484
- ],
1485
- [{
1486
- "label": "澳门半岛",
1487
- "value": "6801"
1488
- },
1489
- {
1490
- "label": "氹仔岛",
1491
- "value": "6802"
1492
- },
1493
- {
1494
- "label": "路环岛",
1495
- "value": "6803"
1496
- },
1497
- {
1498
- "label": "路氹城",
1499
- "value": "6804"
1500
- }
1501
- ]
1502
- ]
1503
- export default cityData;