@10yun/cv-mobile-ui 0.5.29 → 0.5.31

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 (350) hide show
  1. package/package.json +5 -1
  2. package/plugins/luch-request/adapters/index.js +131 -0
  3. package/plugins/luch-request/core/InterceptorManager.js +50 -0
  4. package/plugins/luch-request/core/Request.js +199 -0
  5. package/plugins/luch-request/core/buildFullPath.js +20 -0
  6. package/plugins/luch-request/core/defaults.js +32 -0
  7. package/plugins/luch-request/core/dispatchRequest.js +5 -0
  8. package/plugins/luch-request/core/mergeConfig.js +125 -0
  9. package/plugins/luch-request/core/settle.js +16 -0
  10. package/plugins/luch-request/helpers/buildURL.js +71 -0
  11. package/plugins/luch-request/helpers/combineURLs.js +12 -0
  12. package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
  13. package/plugins/luch-request/index.d.ts +197 -0
  14. package/plugins/luch-request/index.js +2 -0
  15. package/plugins/luch-request/readme.md +3 -0
  16. package/plugins/luch-request/utils/clone.js +264 -0
  17. package/plugins/luch-request/utils.js +131 -0
  18. package/plugins/request.js +2 -2
  19. package/ui-cv/components/cv-btn-base/cv-btn-base.vue +1 -1
  20. package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
  21. package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
  22. package/ui-fireui/fui-alert/fui-alert.vue +141 -0
  23. package/ui-fireui/fui-badge/fui-badge.vue +158 -0
  24. package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
  25. package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
  26. package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
  27. package/ui-fireui/fui-button/fui-button.vue +424 -0
  28. package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
  29. package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
  30. package/ui-fireui/fui-card/fui-card.vue +231 -0
  31. package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
  32. package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
  33. package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
  34. package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
  35. package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
  36. package/ui-fireui/fui-divider/fui-divider.vue +118 -0
  37. package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
  38. package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
  39. package/ui-fireui/fui-fab/fui-fab.vue +284 -0
  40. package/ui-fireui/fui-footer/fui-footer.vue +131 -0
  41. package/ui-fireui/fui-grid/fui-grid.vue +42 -0
  42. package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
  43. package/ui-fireui/fui-icon/fui-icon.vue +820 -0
  44. package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
  45. package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
  46. package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
  47. package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
  48. package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
  49. package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
  50. package/ui-fireui/fui-loading/fui-loading.vue +78 -0
  51. package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
  52. package/ui-fireui/fui-modal/fui-modal.vue +392 -0
  53. package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
  54. package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
  55. package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
  56. package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
  57. package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
  58. package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
  59. package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
  60. package/ui-fireui/fui-rate/fui-rate.vue +167 -0
  61. package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
  62. package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
  63. package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
  64. package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
  65. package/ui-fireui/fui-steps/fui-steps.vue +214 -0
  66. package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
  67. package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
  68. package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
  69. package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
  70. package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
  71. package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
  72. package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
  73. package/ui-fireui/fui-tag/fui-tag.vue +374 -0
  74. package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
  75. package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
  76. package/ui-fireui/fui-tips/fui-tips.vue +161 -0
  77. package/ui-fireui/fui-toast/fui-toast.vue +117 -0
  78. package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
  79. package/ui-fireui/fui-upload/fui-upload.vue +446 -0
  80. package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
  81. package/uview-plus/README.md +2 -2
  82. package/uview-plus/changelog-wu-tool.md +21 -0
  83. package/uview-plus/changelog-wu.md +91 -0
  84. package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
  85. package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
  86. package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
  87. package/uview-plus/components/u-action-sheet/u-action-sheet.vue +8 -8
  88. package/uview-plus/components/u-album/u-album.vue +1 -1
  89. package/uview-plus/components/u-alert/u-alert.vue +5 -5
  90. package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
  91. package/uview-plus/components/u-app-update/_doc/package.json +89 -0
  92. package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
  93. package/uview-plus/components/u-app-update/config.js +120 -0
  94. package/uview-plus/components/u-app-update/img/act.png +0 -0
  95. package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
  96. package/uview-plus/components/u-app-update/img/close.png +0 -0
  97. package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
  98. package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
  99. package/uview-plus/components/u-app-update/pages/index.vue +8 -0
  100. package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
  101. package/uview-plus/components/u-avatar/u-avatar.vue +2 -2
  102. package/uview-plus/components/u-avatar-group/u-avatar-group.vue +79 -3
  103. package/uview-plus/components/u-back-top/u-back-top.vue +4 -4
  104. package/uview-plus/components/u-badge/u-badge.vue +1 -1
  105. package/uview-plus/components/u-button/u-button.vue +8 -8
  106. package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
  107. package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
  108. package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
  109. package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
  110. package/uview-plus/components/u-button-wu/vue.scss +81 -0
  111. package/uview-plus/components/u-calendar/u-calendar.vue +5 -6
  112. package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
  113. package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
  114. package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
  115. package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
  116. package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
  117. package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
  118. package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
  119. package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
  120. package/uview-plus/components/u-calendar-wu/props.js +166 -0
  121. package/uview-plus/components/u-calendar-wu/style.css +196 -0
  122. package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
  123. package/uview-plus/components/u-calendar-wu/util.js +552 -0
  124. package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
  125. package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
  126. package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
  127. package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
  128. package/uview-plus/components/u-car-keyboard/u-car-keyboard.vue +2 -2
  129. package/uview-plus/components/u-card/u-card.vue +139 -3
  130. package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
  131. package/uview-plus/components/u-cell/_doc/package.json +89 -0
  132. package/uview-plus/components/u-cell/_doc/readme.md +25 -0
  133. package/uview-plus/components/u-cell/u-cell.vue +4 -4
  134. package/uview-plus/components/u-cell-group/u-cell-group.vue +2 -2
  135. package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
  136. package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
  137. package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
  138. package/uview-plus/components/u-checkbox/u-checkbox.vue +4 -4
  139. package/uview-plus/components/u-checkbox-group/u-checkbox-group.vue +1 -1
  140. package/uview-plus/components/u-code/_doc/changelog.md +6 -0
  141. package/uview-plus/components/u-code/_doc/package.json +86 -0
  142. package/uview-plus/components/u-code/_doc/readme.md +16 -0
  143. package/uview-plus/components/u-code/u-code.vue +1 -1
  144. package/uview-plus/components/u-code-input/u-code-input.vue +1 -1
  145. package/uview-plus/components/u-col/u-col.vue +1 -1
  146. package/uview-plus/components/u-collapse/u-collapse.vue +2 -2
  147. package/uview-plus/components/u-collapse-item/u-collapse-item.vue +218 -3
  148. package/uview-plus/components/u-column-notice/u-column-notice.vue +3 -3
  149. package/uview-plus/components/u-count-down/u-count-down.vue +1 -1
  150. package/uview-plus/components/u-count-to/u-count-to.vue +1 -1
  151. package/uview-plus/components/u-datetime-picker/u-datetime-picker.vue +3 -3
  152. package/uview-plus/components/u-divider/u-divider.vue +3 -3
  153. package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
  154. package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
  155. package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
  156. package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
  157. package/uview-plus/components/u-dropdown/u-dropdown.vue +3 -3
  158. package/uview-plus/components/u-dropdown-item/u-dropdown-item.vue +1 -1
  159. package/uview-plus/components/u-empty/u-empty.vue +30 -4
  160. package/uview-plus/components/u-form-item/u-form-item.vue +4 -4
  161. package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
  162. package/uview-plus/components/u-gap/_doc/package.json +86 -0
  163. package/uview-plus/components/u-gap/_doc/readme.md +22 -0
  164. package/uview-plus/components/u-gap/u-gap.vue +1 -1
  165. package/uview-plus/components/u-grid/u-grid.vue +1 -1
  166. package/uview-plus/components/u-grid-item/u-grid-item.vue +1 -1
  167. package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
  168. package/uview-plus/components/u-icon/_doc/package.json +85 -0
  169. package/uview-plus/components/u-icon/_doc/readme.md +10 -0
  170. package/uview-plus/components/u-icon/icon.js +23 -25
  171. package/uview-plus/components/u-icon/icons.js +213 -213
  172. package/uview-plus/components/u-icon/style.css +3 -3
  173. package/uview-plus/components/u-icon/u-icon.vue +1 -1
  174. package/uview-plus/components/u-icon/u-icon2.vue +149 -0
  175. package/uview-plus/components/u-image/u-image.vue +5 -5
  176. package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
  177. package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
  178. package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
  179. package/uview-plus/components/u-image-wu/props.js +94 -0
  180. package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
  181. package/uview-plus/components/u-index-anchor/u-index-anchor.vue +1 -1
  182. package/uview-plus/components/u-index-list/u-index-list.vue +2 -2
  183. package/uview-plus/components/u-input/_doc/changelog.md +6 -0
  184. package/uview-plus/components/u-input/_doc/package.json +88 -0
  185. package/uview-plus/components/u-input/_doc/readme.md +16 -0
  186. package/uview-plus/components/u-input/u-input.vue +4 -4
  187. package/uview-plus/components/u-keyboard/u-keyboard.vue +6 -6
  188. package/uview-plus/components/u-lazy-load/u-lazy-load.vue +257 -3
  189. package/uview-plus/components/u-line/_doc/changelog.md +8 -0
  190. package/uview-plus/components/u-line/_doc/package.json +86 -0
  191. package/uview-plus/components/u-line/_doc/readme.md +16 -0
  192. package/uview-plus/components/u-line/u-line.vue +1 -1
  193. package/uview-plus/components/u-line-progress/u-line-progress.vue +1 -1
  194. package/uview-plus/components/u-link/_doc/changelog.md +8 -0
  195. package/uview-plus/components/u-link/_doc/package.json +86 -0
  196. package/uview-plus/components/u-link/_doc/readme.md +20 -0
  197. package/uview-plus/components/u-link/u-link.vue +1 -1
  198. package/uview-plus/components/u-list/u-list.vue +1 -1
  199. package/uview-plus/components/u-list-item/u-list-item.vue +1 -1
  200. package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
  201. package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
  202. package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
  203. package/uview-plus/components/u-loading-icon/props.js +1 -1
  204. package/uview-plus/components/u-loading-icon/u-loading-icon.vue +191 -3
  205. package/uview-plus/components/u-loading-page/u-loading-page.vue +4 -4
  206. package/uview-plus/components/u-loadmore/u-loadmore.vue +4 -4
  207. package/uview-plus/components/u-mask/u-mask.vue +120 -113
  208. package/uview-plus/components/u-message-input/u-message-input.vue +1 -1
  209. package/uview-plus/components/u-modal/u-modal.vue +6 -6
  210. package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
  211. package/uview-plus/components/u-navbar/_doc/package.json +89 -0
  212. package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
  213. package/uview-plus/components/u-navbar/u-navbar.vue +4 -4
  214. package/uview-plus/components/u-navbar-mini/u-navbar-mini.vue +2 -2
  215. package/uview-plus/components/u-navbar-wu/props.js +102 -0
  216. package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
  217. package/uview-plus/components/u-no-network/u-no-network.vue +5 -5
  218. package/uview-plus/components/u-notice-bar/u-notice-bar.vue +5 -5
  219. package/uview-plus/components/u-notify/u-notify.vue +6 -6
  220. package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
  221. package/uview-plus/components/u-number-box/_doc/package.json +88 -0
  222. package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
  223. package/uview-plus/components/u-number-box/u-number-box.vue +9 -3
  224. package/uview-plus/components/u-number-keyboard/u-number-keyboard.vue +1 -1
  225. package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
  226. package/uview-plus/components/u-overlay/_doc/package.json +88 -0
  227. package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
  228. package/uview-plus/components/u-overlay/u-overlay.vue +3 -3
  229. package/uview-plus/components/u-picker/u-picker.vue +5 -5
  230. package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
  231. package/uview-plus/components/u-popup/_doc/package.json +92 -0
  232. package/uview-plus/components/u-popup/_doc/readme.md +16 -0
  233. package/uview-plus/components/u-popup/u-popup.vue +8 -8
  234. package/uview-plus/components/u-popup-wu/keypress.js +45 -0
  235. package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
  236. package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
  237. package/uview-plus/components/u-radio/_doc/package.json +88 -0
  238. package/uview-plus/components/u-radio/_doc/readme.md +25 -0
  239. package/uview-plus/components/u-radio/u-radio.vue +4 -4
  240. package/uview-plus/components/u-radio-group/u-radio-group.vue +1 -1
  241. package/uview-plus/components/u-rate/u-rate.vue +5 -5
  242. package/uview-plus/components/u-read-more/u-read-more.vue +126 -3
  243. package/uview-plus/components/u-row/_doc/changelog.md +8 -0
  244. package/uview-plus/components/u-row/_doc/package.json +86 -0
  245. package/uview-plus/components/u-row/_doc/readme.md +16 -0
  246. package/uview-plus/components/u-row/u-row.vue +1 -1
  247. package/uview-plus/components/u-row-notice/u-row-notice.vue +3 -3
  248. package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
  249. package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
  250. package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
  251. package/uview-plus/components/u-safe-bottom/u-safe-bottom.vue +48 -3
  252. package/uview-plus/components/u-search/u-search.vue +4 -4
  253. package/uview-plus/components/u-select/u-select.vue +175 -3
  254. package/uview-plus/components/u-skeleton/u-skeleton.vue +3 -3
  255. package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
  256. package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
  257. package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
  258. package/uview-plus/components/u-sku-wu/props.js +86 -0
  259. package/uview-plus/components/u-sku-wu/style.css +271 -0
  260. package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
  261. package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
  262. package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
  263. package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
  264. package/uview-plus/components/u-status-bar/u-status-bar.vue +1 -1
  265. package/uview-plus/components/u-steps/u-steps.vue +1 -1
  266. package/uview-plus/components/u-steps-item/u-steps-item.vue +7 -7
  267. package/uview-plus/components/u-sticky/u-sticky.vue +1 -1
  268. package/uview-plus/components/u-subsection/u-subsection.vue +1 -1
  269. package/uview-plus/components/u-swipe-action/u-swipe-action.vue +1 -1
  270. package/uview-plus/components/u-swipe-action-item/u-swipe-action-item.vue +3 -3
  271. package/uview-plus/components/u-swiper/u-swiper.vue +1 -1
  272. package/uview-plus/components/u-swiper-indicator/u-swiper-indicator.vue +1 -1
  273. package/uview-plus/components/u-switch/u-switch.vue +2 -2
  274. package/uview-plus/components/u-tabbar/u-tabbar.vue +2 -2
  275. package/uview-plus/components/u-tabbar-item/u-tabbar-item.vue +9 -4
  276. package/uview-plus/components/u-table/u-table.vue +1 -1
  277. package/uview-plus/components/u-tabs/u-tabs.vue +3 -3
  278. package/uview-plus/components/u-tag/u-tag.vue +5 -5
  279. package/uview-plus/components/u-text/_doc/changelog.md +10 -0
  280. package/uview-plus/components/u-text/_doc/package.json +89 -0
  281. package/uview-plus/components/u-text/_doc/readme.md +20 -0
  282. package/uview-plus/components/u-text/u-text.vue +159 -3
  283. package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
  284. package/uview-plus/components/u-textarea/_doc/package.json +86 -0
  285. package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
  286. package/uview-plus/components/u-toast/u-toast.vue +8 -8
  287. package/uview-plus/components/u-tooltip/u-tooltip.vue +6 -6
  288. package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
  289. package/uview-plus/components/u-transition/_doc/package.json +86 -0
  290. package/uview-plus/components/u-transition/_doc/readme.md +16 -0
  291. package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
  292. package/uview-plus/components/u-transition-wu/props.js +32 -0
  293. package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
  294. package/uview-plus/components/u-upload/u-upload.vue +10 -10
  295. package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
  296. package/uview-plus/components/u-waterfall/u-waterfall.vue +221 -3
  297. package/uview-plus/index.js +109 -94
  298. package/uview-plus/libs/config/config.js +46 -48
  299. package/uview-plus/libs/css/color.scss +32 -311
  300. package/uview-plus/libs/css/components-wu.scss +30 -0
  301. package/uview-plus/libs/css/vue.scss +10 -10
  302. package/uview-plus/libs/ctocode/index.js +120 -0
  303. package/uview-plus/libs/function/calc.js +61 -55
  304. package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
  305. package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
  306. package/uview-plus/libs/function/color/color-convert/README.md +68 -0
  307. package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
  308. package/uview-plus/libs/function/color/color-convert/index.js +81 -0
  309. package/uview-plus/libs/function/color/color-convert/package.json +48 -0
  310. package/uview-plus/libs/function/color/color-convert/route.js +97 -0
  311. package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
  312. package/uview-plus/libs/function/color/color-name/README.md +11 -0
  313. package/uview-plus/libs/function/color/color-name/index.js +152 -0
  314. package/uview-plus/libs/function/color/color-name/package.json +28 -0
  315. package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
  316. package/uview-plus/libs/function/color/color-string/README.md +62 -0
  317. package/uview-plus/libs/function/color/color-string/index.js +244 -0
  318. package/uview-plus/libs/function/color/color-string/package.json +39 -0
  319. package/uview-plus/libs/function/color/color.js +496 -0
  320. package/uview-plus/libs/function/color/index.js +158 -0
  321. package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
  322. package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
  323. package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
  324. package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
  325. package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
  326. package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
  327. package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
  328. package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
  329. package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
  330. package/uview-plus/libs/function/colorGradient.js +108 -106
  331. package/uview-plus/libs/function/debounce.js +17 -17
  332. package/uview-plus/libs/function/digit.js +1 -3
  333. package/uview-plus/libs/function/http.js +3 -3
  334. package/uview-plus/libs/function/index-wu.js +198 -0
  335. package/uview-plus/libs/function/index.js +579 -566
  336. package/uview-plus/libs/function/platform.js +18 -18
  337. package/uview-plus/libs/function/test.js +135 -137
  338. package/uview-plus/libs/function/throttle.js +17 -17
  339. package/uview-plus/libs/luch-request/core/Request.js +199 -199
  340. package/uview-plus/libs/mixin/mpMixin.js +1 -0
  341. package/uview-plus/libs/mixin/openType.js +33 -0
  342. package/uview-plus/libs/util/async-validator.js +1343 -1343
  343. package/uview-plus/libs/util/dayjs.js +404 -0
  344. package/uview-plus/libs/util/route.js +101 -105
  345. package/uview-plus/package-wu-tool.json +84 -0
  346. package/uview-plus/package-wu.json +112 -0
  347. package/uview-plus/package.json +106 -95
  348. package/uview-plus/readme-wu.md +148 -0
  349. package/uview-ui/index.js +51 -52
  350. package/plugins/uni-upgrade.js +0 -294
@@ -0,0 +1,181 @@
1
+ <template>
2
+ <!--底部分享弹窗-->
3
+ <fui-bottom-popup :show="popupShow">
4
+ <view class="fui-share">
5
+ <view class="fui-share-title">分享到</view>
6
+ <view class="share-main" style="padding-right: 20upx">
7
+ <view class="fui-share-top" style="display: flex; align-items: center; justify-content: center">
8
+ <view
9
+ class="fui-share-item"
10
+ style="width: 50%"
11
+ :class="[shareList[0].share.length - 1 === index ? 'fui-item-last' : '']"
12
+ v-for="(item, index) in shareList[0].share"
13
+ :key="index"
14
+ :data-index="index"
15
+ @tap="sharbutton($event)"
16
+ >
17
+ <view class="fui-share-icon" hover-class="fui-hover" :hover-stay-time="150">
18
+ <iconfont :className="item.icon" :color="item.color" :size="item.size ? item.size : 36" />
19
+ <!-- <fui-icon :name="item.icon" :color="item.color" :size="item.size?item.size:36"></fui-icon> -->
20
+ </view>
21
+ <view class="fui-share-text">{{ item.name }}</view>
22
+ </view>
23
+ <view class="fui-empty">!</view>
24
+ </view>
25
+ </view>
26
+
27
+ <view class="fui-btn-cancle" @tap="popup">取消</view>
28
+ </view>
29
+ </fui-bottom-popup>
30
+ <!--底部分享弹窗-->
31
+ </template>
32
+
33
+ <script>
34
+ export default {
35
+ name: 'fuiSharemodel',
36
+ data() {
37
+ return {
38
+ popupShowstatus: false,
39
+ shareList: [
40
+ {
41
+ share: [
42
+ {
43
+ name: '微信',
44
+ icon: 'base-weixin',
45
+ color: '#80D640'
46
+ }
47
+ // , {
48
+ // name: "海报",
49
+ // icon: "icon-haibaofenxiang",
50
+ // color: "#80D640",
51
+ // size: 32
52
+ // },
53
+ ]
54
+ }
55
+ ]
56
+ };
57
+ },
58
+ props: {
59
+ //是否显示分享model
60
+ popupShow: {
61
+ type: Boolean,
62
+ default: false
63
+ },
64
+ contentHeight: {
65
+ type: Number,
66
+ default: 0
67
+ },
68
+ //是否是tabbar页面
69
+ hasTabbar: {
70
+ type: Boolean,
71
+ default: false
72
+ }
73
+ // shareList:{
74
+ // type: Array,
75
+ // default: () => {
76
+ // return [];
77
+ // }
78
+ // }
79
+ },
80
+ created() {
81
+ this.popupShowstatus = this.popupShow;
82
+ console.log('当前状态', this.popupShow);
83
+ },
84
+ methods: {
85
+ popup() {
86
+ this.popupShow = !this.popupShow;
87
+ },
88
+ sharbutton(event) {
89
+ console.log(event, event.currentTarget.dataset.index);
90
+ this.$emit('sharbutton', event.currentTarget.dataset.index);
91
+ }
92
+ }
93
+ };
94
+ </script>
95
+
96
+ <style>
97
+ .share-main {
98
+ min-height: 125rpx;
99
+ padding-bottom: 120rpx;
100
+ }
101
+ .fui-share {
102
+ background: #e8e8e8;
103
+ position: relative;
104
+ padding-bottom: env(safe-area-inset-bottom);
105
+ }
106
+
107
+ .fui-share-title {
108
+ font-size: 26rpx;
109
+ color: #7e7e7e;
110
+ text-align: center;
111
+ line-height: 26rpx;
112
+ padding: 20rpx 0 50rpx 0;
113
+ }
114
+
115
+ .fui-share-top,
116
+ .fui-share-bottom {
117
+ min-width: 101%;
118
+ padding: 0 20rpx 0 30rpx;
119
+ white-space: nowrap;
120
+ }
121
+
122
+ .fui-mt {
123
+ margin-top: 30rpx;
124
+ padding-bottom: 150rpx;
125
+ }
126
+
127
+ .fui-share-item {
128
+ /* width: 126rpx;
129
+ display: inline-block;
130
+ margin-right: 24rpx; */
131
+ text-align: center;
132
+ }
133
+
134
+ .fui-item-last {
135
+ margin: 0;
136
+ }
137
+
138
+ .fui-empty {
139
+ display: inline-block;
140
+ width: 30rpx;
141
+ visibility: hidden;
142
+ }
143
+
144
+ .fui-share-icon {
145
+ display: flex;
146
+ align-items: center;
147
+ justify-content: center;
148
+ background: #fafafa;
149
+ height: 126rpx;
150
+ width: 126rpx;
151
+ border-radius: 32rpx;
152
+ margin: 0 auto;
153
+ }
154
+
155
+ .fui-share-text {
156
+ font-size: 24rpx;
157
+ color: #7e7e7e;
158
+ line-height: 24rpx;
159
+ padding: 20rpx 0;
160
+ white-space: nowrap;
161
+ }
162
+
163
+ .fui-btn-cancle {
164
+ width: 100%;
165
+ height: 100rpx;
166
+ position: absolute;
167
+ left: 0;
168
+ bottom: 0;
169
+ background: #f6f6f6;
170
+ font-size: 36rpx;
171
+ color: #3e3e3e;
172
+ display: flex;
173
+ align-items: center;
174
+ justify-content: center;
175
+ padding-bottom: env(safe-area-inset-bottom);
176
+ }
177
+
178
+ .fui-hover {
179
+ background: rgba(0, 0, 0, 0.2);
180
+ }
181
+ </style>
@@ -0,0 +1,248 @@
1
+ <template>
2
+ <view
3
+ class="fui-skeleton-cmomon fui-skeleton-box"
4
+ :style="{ width: winWidth + 'px', height: winHeight + 'px', backgroundColor: backgroundColor }"
5
+ >
6
+ <view
7
+ class="fui-skeleton-cmomon"
8
+ v-for="(item, index) in skeletonElements"
9
+ :key="index"
10
+ :style="{
11
+ width: item.width + 'px',
12
+ height: item.height + 'px',
13
+ left: item.left + 'px',
14
+ top: item.top + 'px',
15
+ backgroundColor: skeletonBgColor,
16
+ borderRadius: getRadius(item.skeletonType, borderRadius)
17
+ }"
18
+ ></view>
19
+ <view class="fui-loading" :class="[getLoadingType(loadingType)]" v-if="isLoading"></view>
20
+ </view>
21
+ </template>
22
+
23
+ <script>
24
+ export default {
25
+ name: 'fuiSkeleton',
26
+ props: {
27
+ //选择器(外层容器)
28
+ selector: {
29
+ type: String,
30
+ default: 'fui-skeleton'
31
+ },
32
+ //外层容器背景颜色
33
+ backgroundColor: {
34
+ type: String,
35
+ default: '#fff'
36
+ },
37
+ //骨架元素背景颜色
38
+ skeletonBgColor: {
39
+ type: String,
40
+ default: '#e9e9e9'
41
+ },
42
+ //骨架元素类型:矩形,圆形,带圆角矩形["rect","circular","fillet"]
43
+ //默认所有,根据页面情况进行传值
44
+ //页面对应元素class为:fui-skeleton-rect,fui-skeleton-circular,fui-skeleton-fillet
45
+ //如果传入的值不在下列数组中,则为自定义class值,默认按矩形渲染
46
+ skeletonType: {
47
+ type: Array,
48
+ default() {
49
+ return ['rect', 'circular', 'fillet'];
50
+ }
51
+ },
52
+ //圆角值,skeletonType=fillet时生效
53
+ borderRadius: {
54
+ type: String,
55
+ default: '16rpx'
56
+ },
57
+ //骨架屏预生成数据:提前生成好的数据,当传入该属性值时,则不会再次查找子节点信息
58
+ preloadData: {
59
+ type: Array,
60
+ default() {
61
+ return [];
62
+ }
63
+ },
64
+ //是否需要loading
65
+ isLoading: {
66
+ type: Boolean,
67
+ default: true
68
+ },
69
+ //loading类型[1-10]
70
+ loadingType: {
71
+ type: Number,
72
+ default: 1
73
+ }
74
+ },
75
+ created() {
76
+ const res = uni.getSystemInfoSync();
77
+ this.winWidth = res.windowWidth;
78
+ this.winHeight = res.windowHeight;
79
+ //如果有预生成数据,则直接使用
80
+ this.isPreload(true);
81
+ },
82
+ mounted() {
83
+ this.$nextTick(() => {
84
+ this.nodesRef(`.${this.selector}`).then((res) => {
85
+ if (res && res[0]) {
86
+ this.winHeight = res[0].height + Math.abs(res[0].top);
87
+ }
88
+ });
89
+ !this.isPreload() && this.selectorQuery();
90
+ });
91
+ },
92
+ data() {
93
+ return {
94
+ winWidth: 375,
95
+ winHeight: 800,
96
+ skeletonElements: []
97
+ };
98
+ },
99
+ methods: {
100
+ getLoadingType(type) {
101
+ let value = 1;
102
+ if (type && type > 0 && type < 11) {
103
+ value = type;
104
+ }
105
+ return 'fui-loading-' + value;
106
+ },
107
+ getRadius(type, val) {
108
+ let radius = '0';
109
+ if (type == 'circular') {
110
+ radius = '50%';
111
+ } else if (type == 'fillet') {
112
+ radius = val;
113
+ }
114
+ return radius;
115
+ },
116
+ isPreload(init) {
117
+ let preloadData = this.preloadData || [];
118
+ if (preloadData.length) {
119
+ init && (this.skeletonElements = preloadData);
120
+ return true;
121
+ }
122
+ return false;
123
+ },
124
+ async selectorQuery() {
125
+ let skeletonType = this.skeletonType || [];
126
+ let nodes = [];
127
+ for (let item of skeletonType) {
128
+ let className = `.${item}`;
129
+ if (~'rect_circular_fillet'.indexOf(item)) {
130
+ className = `.${this.selector}-${item}`;
131
+ }
132
+ await this.nodesRef(className).then((res) => {
133
+ res.map((d) => {
134
+ d.skeletonType = item;
135
+ });
136
+ nodes = nodes.concat(res);
137
+ });
138
+ }
139
+ this.skeletonElements = nodes;
140
+ },
141
+ async nodesRef(className) {
142
+ return await new Promise((resolve, reject) => {
143
+ uni
144
+ .createSelectorQuery()
145
+ .selectAll(className)
146
+ .boundingClientRect((res) => {
147
+ if (res) {
148
+ resolve(res);
149
+ } else {
150
+ reject(res);
151
+ }
152
+ })
153
+ .exec();
154
+ });
155
+ }
156
+ }
157
+ };
158
+ </script>
159
+
160
+ <style scoped>
161
+ .fui-skeleton-cmomon {
162
+ position: absolute;
163
+ z-index: 99999;
164
+ overflow: hidden;
165
+ }
166
+
167
+ .fui-skeleton-box {
168
+ left: 0;
169
+ top: 0;
170
+ }
171
+
172
+ .fui-loading {
173
+ display: inline-block;
174
+ vertical-align: middle;
175
+ width: 40rpx;
176
+ height: 40rpx;
177
+ background: 0 0;
178
+ border-radius: 50%;
179
+ border: 2px solid;
180
+ animation: fui-rotate 0.7s linear infinite;
181
+ position: fixed;
182
+ z-index: 999999;
183
+ left: 50%;
184
+ top: 50%;
185
+ margin-left: -20rpx;
186
+ margin-top: -20rpx;
187
+ }
188
+
189
+ .fui-loading-1 {
190
+ border-color: #e5e5e5 #e5e5e5 #e5e5e5 #5677fc;
191
+ }
192
+
193
+ .fui-loading-2 {
194
+ border-color: #e5e5e5 #e5e5e5 #e5e5e5 #8f8d8e;
195
+ }
196
+
197
+ .fui-loading-3 {
198
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #fff;
199
+ }
200
+
201
+ .fui-loading-4 {
202
+ border-color: #e5e5e5 #e5e5e5 #e5e5e5 #35b06a;
203
+ }
204
+
205
+ .fui-loading-5 {
206
+ border-color: #e5e5e5 #e5e5e5 #e5e5e5 #fc872d;
207
+ }
208
+
209
+ .fui-loading-6 {
210
+ border-color: #e5e5e5 #e5e5e5 #e5e5e5 #eb0909;
211
+ }
212
+
213
+ .fui-loading-7 {
214
+ border-color: #5677fc transparent #5677fc transparent;
215
+ }
216
+
217
+ .fui-loading-8 {
218
+ border-color: #35b06a transparent #35b06a transparent;
219
+ }
220
+
221
+ .fui-loading-9 {
222
+ border-color: #fc872d transparent #fc872d transparent;
223
+ }
224
+
225
+ .fui-loading-10 {
226
+ border-color: #eb0909 transparent #eb0909 transparent;
227
+ }
228
+
229
+ @-webkit-keyframes fui-rotate {
230
+ 0% {
231
+ transform: rotate(0);
232
+ }
233
+
234
+ 100% {
235
+ transform: rotate(360deg);
236
+ }
237
+ }
238
+
239
+ @keyframes fui-rotate {
240
+ 0% {
241
+ transform: rotate(0);
242
+ }
243
+
244
+ 100% {
245
+ transform: rotate(360deg);
246
+ }
247
+ }
248
+ </style>
@@ -0,0 +1,214 @@
1
+ <template>
2
+ <view class="fui-steps-box" :class="{ 'fui-steps-column': direction === 'column' }">
3
+ <view
4
+ class="fui-step-item"
5
+ :style="{ width: direction === 'column' ? '100%' : spacing }"
6
+ :class="[direction === 'row' ? 'fui-step-horizontal' : 'fui-step-vertical']"
7
+ v-for="(item, index) in items"
8
+ :key="index"
9
+ >
10
+ <view class="fui-step-item-ico" :style="{ width: direction === 'column' ? '36rpx' : '100%' }">
11
+ <view
12
+ class="fui-step-ico"
13
+ :class="[direction === 'column' ? 'fui-step-column_ico' : 'fui-step-row_ico']"
14
+ :style="{
15
+ width: type == 2 || activeSteps === index ? '36rpx' : '16rpx',
16
+ height: type == 2 || activeSteps === index ? '36rpx' : '16rpx',
17
+ backgroundColor: index <= activeSteps ? activeColor : type == 2 ? '#fff' : deactiveColor,
18
+ borderColor: index <= activeSteps ? activeColor : deactiveColor
19
+ }"
20
+ >
21
+ <!-- <icon type="success_no_circle" :size="12" color="#fff"></icon> -->
22
+ <text v-if="activeSteps !== index" :style="{ color: index <= activeSteps ? '#fff' : '' }">
23
+ {{ type == 1 ? '' : index + 1 }}
24
+ </text>
25
+ <fui-icon name="check" :size="16" color="#fff" v-if="activeSteps === index"></fui-icon>
26
+ </view>
27
+ <view
28
+ class="fui-step-line"
29
+ :class="['fui-step-' + direction + '_line']"
30
+ :style="{ backgroundColor: index <= activeSteps - 1 ? activeColor : deactiveColor }"
31
+ v-if="index != items.length - 1"
32
+ ></view>
33
+ </view>
34
+ <view class="fui-step-item-main" :class="['fui-step-' + direction + '_item_main']">
35
+ <view
36
+ class="fui-step-item-title"
37
+ :style="{
38
+ color: index <= activeSteps ? activeColor : deactiveColor,
39
+ fontSize: titleSize + 'rpx',
40
+ lineHeight: titleSize + 'rpx',
41
+ fontWeight: bold ? 'bold' : 'normal'
42
+ }"
43
+ >
44
+ {{ item.title }}
45
+ </view>
46
+ <view
47
+ class="fui-step-item-content"
48
+ :style="{ color: index <= activeSteps ? activeColor : deactiveColor, fontSize: descSize + 'rpx' }"
49
+ >
50
+ {{ item.desc }}
51
+ </view>
52
+ </view>
53
+ </view>
54
+ </view>
55
+ </template>
56
+
57
+ <script>
58
+ //如果自定义传入图标内容,则需要拆分组件
59
+ export default {
60
+ name: 'fuiSteps',
61
+ props: {
62
+ // 1-默认步骤 2-数字步骤
63
+ type: {
64
+ type: Number,
65
+ default: 1
66
+ },
67
+ spacing: {
68
+ type: String,
69
+ default: '160rpx'
70
+ },
71
+ // 方向 row column
72
+ direction: {
73
+ type: String,
74
+ default: 'row'
75
+ },
76
+ // 激活状态成功颜色
77
+ activeColor: {
78
+ type: String,
79
+ default: '#5677fc'
80
+ },
81
+ // 未激活状态颜色
82
+ deactiveColor: {
83
+ type: String,
84
+ default: '#999999'
85
+ },
86
+ //title字体大小
87
+ titleSize: {
88
+ type: Number,
89
+ default: 28
90
+ },
91
+ //title是否粗体
92
+ bold: {
93
+ type: Boolean,
94
+ default: false
95
+ },
96
+ //desc字体大小
97
+ descSize: {
98
+ type: Number,
99
+ default: 24
100
+ },
101
+ // 当前步骤
102
+ activeSteps: {
103
+ type: Number,
104
+ default: -1
105
+ },
106
+ /**
107
+ * [{
108
+ title: "标题",
109
+ desc: "描述"
110
+ }]
111
+ * */
112
+ items: {
113
+ type: Array,
114
+ default() {
115
+ return [];
116
+ }
117
+ }
118
+ },
119
+ data() {
120
+ return {};
121
+ }
122
+ };
123
+ </script>
124
+
125
+ <style scoped>
126
+ .fui-steps-box {
127
+ width: 100%;
128
+ display: flex;
129
+ justify-content: center;
130
+ }
131
+
132
+ .fui-steps-column {
133
+ flex-direction: column;
134
+ }
135
+
136
+ .fui-step-ico {
137
+ border-radius: 40rpx;
138
+ position: relative;
139
+ z-index: 3;
140
+ margin: 0 auto;
141
+ border-width: 1rpx;
142
+ border-style: solid;
143
+ display: flex;
144
+ align-items: center;
145
+ justify-content: center;
146
+ }
147
+
148
+ .fui-step-row_ico {
149
+ top: 50%;
150
+ transform: translateY(-50%);
151
+ }
152
+
153
+ .fui-step-column_ico {
154
+ top: 0;
155
+ }
156
+
157
+ .fui-step-line {
158
+ position: absolute;
159
+ left: 50%;
160
+ top: 20rpx;
161
+ width: 100%;
162
+ height: 1rpx;
163
+ }
164
+
165
+ .fui-step-row_item_main {
166
+ text-align: center;
167
+ }
168
+
169
+ .fui-step-item {
170
+ font-size: 24rpx;
171
+ position: relative;
172
+ box-sizing: border-box;
173
+ }
174
+
175
+ .fui-step-item-ico {
176
+ height: 36rpx;
177
+ line-height: 36rpx;
178
+ text-align: center;
179
+ }
180
+
181
+ .fui-step-item-main {
182
+ margin-top: 16rpx;
183
+ clear: both;
184
+ }
185
+
186
+ .fui-step-item-title {
187
+ word-break: break-all;
188
+ }
189
+
190
+ .fui-step-item-content {
191
+ margin-top: 8rpx;
192
+ word-break: break-all;
193
+ }
194
+
195
+ .fui-step-vertical {
196
+ width: 100%;
197
+ display: flex;
198
+ padding-bottom: 60rpx;
199
+ }
200
+
201
+ .fui-step-column_item_main {
202
+ margin-top: 0;
203
+ padding-left: 20rpx;
204
+ }
205
+
206
+ .fui-step-column_line {
207
+ position: absolute;
208
+ height: 100%;
209
+ top: 0;
210
+ left: 18rpx;
211
+ margin: 0;
212
+ width: 1rpx;
213
+ }
214
+ </style>