@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,86 @@
1
+ {
2
+ "id": "u-code",
3
+ "displayName": "u-code 嵌入式验证码倒计时,全端兼容,无论平台,一致体验。",
4
+ "version": "1.0.2",
5
+ "description": "考虑到用户实际发送验证码的场景,可能是一个按钮,也可能是一段文字,提示语各有不同,所以本组件 不提供界面显示,只提供提示语,由用户将提示语嵌入到具体的场景",
6
+ "keywords": [
7
+ "u-ui",
8
+ "wuui",
9
+ "u-code",
10
+ "code",
11
+ "验证码"
12
+ ],
13
+ "repository": "",
14
+ "engines": {
15
+ "HBuilderX": "^3.1.0"
16
+ },
17
+ "dcloudext": {
18
+ "type": "component-vue",
19
+ "sale": {
20
+ "regular": {
21
+ "price": "0.00"
22
+ },
23
+ "sourcecode": {
24
+ "price": "0.00"
25
+ }
26
+ },
27
+ "contact": {
28
+ "qq": ""
29
+ },
30
+ "declaration": {
31
+ "ads": "无",
32
+ "data": "插件不采集任何数据",
33
+ "permissions": "无"
34
+ },
35
+ "npmurl": ""
36
+ },
37
+ "uni_modules": {
38
+ "dependencies": [],
39
+ "encrypt": [],
40
+ "platforms": {
41
+ "cloud": {
42
+ "tcb": "y",
43
+ "aliyun": "y",
44
+ "alipay": "n"
45
+ },
46
+ "client": {
47
+ "Vue": {
48
+ "vue2": "y",
49
+ "vue3": "y"
50
+ },
51
+ "App": {
52
+ "app-vue": "y",
53
+ "app-nvue": "y"
54
+ },
55
+ "H5-mobile": {
56
+ "Safari": "y",
57
+ "Android Browser": "y",
58
+ "微信浏览器(Android)": "y",
59
+ "QQ浏览器(Android)": "y"
60
+ },
61
+ "H5-pc": {
62
+ "Chrome": "y",
63
+ "IE": "y",
64
+ "Edge": "y",
65
+ "Firefox": "y",
66
+ "Safari": "y"
67
+ },
68
+ "小程序": {
69
+ "微信": "y",
70
+ "阿里": "y",
71
+ "百度": "y",
72
+ "字节跳动": "y",
73
+ "QQ": "y",
74
+ "钉钉": "n",
75
+ "快手": "n",
76
+ "飞书": "n",
77
+ "京东": "n"
78
+ },
79
+ "快应用": {
80
+ "华为": "n",
81
+ "联盟": "n"
82
+ }
83
+ }
84
+ }
85
+ }
86
+ }
@@ -0,0 +1,16 @@
1
+ ## u-code 验证码输入框
2
+
3
+ > **组件名:u-code**
4
+
5
+ 考虑到用户实际发送验证码的场景,可能是一个按钮,也可能是一段文字,提示语各有不同,所以本组件 不提供界面显示,只提供提示语,由用户将提示语嵌入到具体的场景。
6
+
7
+ ## [查看文档](https://ijry.github.io/uview-plus/components/code.html)
8
+
9
+ ## [更多组件, 请查看 `u-ui` 组件库](https://ext.dcloud.net.cn/plugin?name=u--ui)
10
+ (请勿下载插件zip)
11
+
12
+ <a href="https://ext.dcloud.net.cn/plugin?name=u--ui">
13
+ <img src="https://wuui.cn/intr.png">
14
+ </a>
15
+
16
+ **如使用过程中有任何问题,或者您对u-ui有一些好的建议。<br>欢迎加入 [u-ui 交流群](https://ijry.github.io/uview-plus/components/qqFeedBack.html)**
@@ -21,7 +21,7 @@ import { mixin } from '../../libs/mixin/mixin';
21
21
  * @event {Function} change 倒计时期间,每秒触发一次
22
22
  * @event {Function} start 开始倒计时触发
23
23
  * @event {Function} end 结束倒计时触发
24
- * @example <u-code ref="uCode" @change="codeChange" seconds="20"></u-code>
24
+ * @example <up-code ref="uCode" @change="codeChange" seconds="20"></up-code>
25
25
  */
26
26
  export default {
27
27
  name: 'u-code',
@@ -71,7 +71,7 @@ import { addUnit, getPx } from '../../libs/function/index';
71
71
  *
72
72
  * @event {Function} change 输入内容发生改变时触发,具体见上方说明 value:当前输入的值
73
73
  * @event {Function} finish 输入字符个数达maxlength值时触发,见上方说明 value:当前输入的值
74
- * @example <u-code-input v-model="value4" :focus="true"></u-code-input>
74
+ * @example <up-code-input v-model="value4" :focus="true"></up-code-input>
75
75
  */
76
76
  export default {
77
77
  name: 'u-code-input',
@@ -19,7 +19,7 @@ import { addStyle, addUnit, deepMerge, getPx } from '../../libs/function/index';
19
19
  * @property {String} textAlign 文字水平对齐方式 (默认 'left' )
20
20
  * @property {Object} customStyle 定义需要用到的外部样式
21
21
  * @event {Function} click col被点击,会阻止事件冒泡到row
22
- * @example <u-col span="3" offset="3" > <view class="demo-layout bg-purple"></view> </u-col>
22
+ * @example <up-col span="3" offset="3" > <view class="demo-layout bg-purple"></view> </up-col>
23
23
  */
24
24
  export default {
25
25
  name: 'u-col',
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <view class="u-collapse">
3
- <u-line v-if="border"></u-line>
3
+ <up-line v-if="border"></up-line>
4
4
  <slot />
5
5
  </view>
6
6
  </template>
@@ -16,7 +16,7 @@ import { mixin } from '../../libs/mixin/mixin';
16
16
  * @property {Boolean} accordion 是否手风琴模式( 默认 false )
17
17
  * @property {Boolean} border 是否显示外边框 ( 默认 true )
18
18
  * @event {Function} change 当前激活面板展开时触发(如果是手风琴模式,参数activeNames类型为String,否则为Array)
19
- * @example <u-collapse></u-collapse>
19
+ * @example <up-collapse></up-collapse>
20
20
  */
21
21
  export default {
22
22
  name: 'u-collapse',
@@ -1,3 +1,218 @@
1
- <template>
2
1
  <view class="u-collapse-item">
3
2
  <u-cell
4
3
  :title="$slots.title ? '' : title"
5
4
  :value="value"
6
5
  :label="label"
7
6
  :icon="icon"
8
7
  :isLink="isLink"
9
8
  :clickable="clickable"
10
9
  :border="parentData.border && showBorder"
11
10
  @click="clickHandler"
12
11
  :arrowDirection="expanded ? 'up' : 'down'"
13
12
  :disabled="disabled"
14
13
  :customClass="cellCustomClass"
15
14
  :customStyle="cellCustomStyle"
16
15
  >
17
16
  <!-- 微信小程序不支持,因为微信中不支持 <slot name="title" #title />的写法 -->
18
17
  <template #title>
19
18
  <slot name="title">
20
19
  <text v-if="!$slots.title && title">
21
20
  {{ title }}
22
21
  </text>
23
22
  </slot>
24
23
  </template>
25
24
  <template #icon>
26
25
  <slot name="icon">
27
26
  <u-icon v-if="!$slots.icon && icon" :size="22" :name="icon"></u-icon>
28
27
  </slot>
29
28
  </template>
30
29
  <template #value>
31
30
  <slot name="value">
32
31
  <text v-if="!$slots.value && value">
33
32
  {{ value }}
34
33
  </text>
35
34
  </slot>
36
35
  </template>
37
36
  <template #right-icon>
38
37
  <template v-if="showRight">
39
38
  <u-icon v-if="!$slots['right-icon']" :size="16" name="arrow-right"></u-icon>
40
39
  <slot name="right-icon"></slot>
41
40
  </template>
42
41
  </template>
43
42
  </u-cell>
44
43
  <view class="u-collapse-item__content" :animation="animationData" ref="animation">
45
44
  <view class="u-collapse-item__content__text content-class" :id="elId" :ref="elId"><slot /></view>
46
45
  </view>
47
46
  <u-line v-if="parentData.border"></u-line>
48
47
  </view>
49
48
  * collapseItem 折叠面板Item
50
49
  * @description 通过折叠面板收纳内容区域(搭配u-collapse使用)
51
50
  * @tutorial https://ijry.github.io/uview-plus/components/collapse.html
52
51
  * @property {String} title 标题
53
52
  * @property {String} value 标题右侧内容
54
53
  * @property {String} label 标题下方的描述信息
55
54
  * @property {Boolean} disbled 是否禁用折叠面板 ( 默认 false )
56
55
  * @property {Boolean} isLink 是否展示右侧箭头并开启点击反馈 ( 默认 true )
57
56
  * @property {Boolean} clickable 是否开启点击反馈 ( 默认 true )
58
57
  * @property {Boolean} border 是否显示内边框 ( 默认 true )
59
58
  * @property {String} align 标题的对齐方式 ( 默认 'left' )
60
59
  * @property {String | Number} name 唯一标识符
61
60
  * @property {String} icon 标题左侧图片,可为绝对路径的图片或内置图标
62
61
  * @event {Function} change 某个item被打开或者收起时触发
63
62
  * @example <u-collapse-item :title="item.head" v-for="(item, index) in itemList" :key="index">{{item.body}}</u-collapse-item>
64
63
  */
65
64
  name: 'u-collapse-item',
66
65
  mixins: [mpMixin, mixin, props],
67
66
  data() {
68
67
  return {
69
68
  elId: guid(),
70
69
  // uni.createAnimation的导出数据
71
70
  animationData: {},
72
71
  // 是否展开状态
73
72
  expanded: false,
74
73
  // 根据expanded确定是否显示border,为了控制展开时,cell的下划线更好的显示效果,进行一定时间的延时
75
74
  showBorder: false,
76
75
  // 是否动画中,如果是则不允许继续触发点击
77
76
  animating: false,
78
77
  // 父组件u-collapse的参数
79
78
  parentData: {
80
79
  accordion: false,
81
80
  border: false
82
81
  }
83
82
  };
84
83
  },
85
84
  watch: {
86
85
  expanded(n) {
87
86
  clearTimeout(this.timer);
88
87
  this.timer = null;
89
88
  // 这里根据expanded的值来进行一定的延时,是为了cell的下划线更好的显示效果
90
89
  this.timer = setTimeout(
91
90
  () => {
92
91
  this.showBorder = n;
93
92
  },
94
93
  n ? 10 : 290
95
94
  );
96
95
  }
97
96
  },
98
97
  mounted() {
99
98
  this.init();
100
99
  // console.log('$slots', this.$slots)
101
100
  },
102
101
  methods: {
103
102
  // 异步获取内容,或者动态修改了内容时,需要重新初始化
104
103
  async init() {
105
104
  // 初始化数据
106
105
  this.updateParentData();
107
106
  if (!this.parent) {
108
107
  return error('u-collapse-item必须要搭配u-collapse组件使用');
109
108
  }
110
109
  const { value, accordion, children = [] } = this.parent;
111
110
  if (accordion) {
112
111
  if (test.array(value)) {
113
112
  return error('手风琴模式下,u-collapse组件的value参数不能为数组');
114
113
  }
115
114
  this.expanded = this.name == value;
116
115
  } else {
117
116
  if (!test.array(value) && value !== null) {
118
117
  return error('非手风琴模式下,u-collapse组件的value参数必须为数组');
119
118
  }
120
119
  this.expanded = (value || []).some((item) => item == this.name);
121
120
  }
122
121
  // 设置组件的展开或收起状态
123
122
  await nextTick();
124
123
  this.setContentAnimate();
125
124
  },
126
125
  updateParentData() {
127
126
  // 此方法在mixin中
128
127
  this.getParentData('u-collapse');
129
128
  },
130
129
  async setContentAnimate() {
131
130
  // 每次面板打开或者收起时,都查询元素尺寸
132
131
  // 好处是,父组件从服务端获取内容后,变更折叠面板后可以获得最新的高度
133
132
  const rect = await this.queryRect();
134
133
  const height = this.expanded ? rect.height : 0;
135
134
  this.animating = true;
136
135
  // #ifdef APP-NVUE
137
136
  const ref = this.$refs['animation'].ref;
138
137
  animation.transition(
139
138
  ref,
140
139
  {
141
140
  styles: {
142
141
  height: height + 'px'
143
142
  },
144
143
  duration: this.duration,
145
144
  // 必须设置为true,否则会到面板收起或展开时,页面其他元素不会随之调整它们的布局
146
145
  needLayout: true,
147
146
  timingFunction: 'ease-in-out'
148
147
  },
149
148
  () => {
150
149
  this.animating = false;
151
150
  }
152
151
  );
153
152
  // #endif
154
153
  // #ifndef APP-NVUE
155
154
  const animation = uni.createAnimation({
156
155
  timingFunction: 'ease-in-out'
157
156
  });
158
157
  animation
159
158
  .height(height)
160
159
  .step({
161
160
  duration: this.duration
162
161
  })
163
162
  .step();
164
163
  // 导出动画数据给面板的animationData值
165
164
  this.animationData = animation.export();
166
165
  // 标识动画结束
167
166
  sleep(this.duration).then(() => {
168
167
  this.animating = false;
169
168
  });
170
169
  // #endif
171
170
  },
172
171
  // 点击collapsehead头部
173
172
  clickHandler() {
174
173
  if (this.disabled && this.animating) return;
175
174
  // 设置本组件为相反的状态
176
175
  this.parent && this.parent.onChange(this);
177
176
  },
178
177
  // 查询内容高度
179
178
  queryRect() {
180
179
  // #ifndef APP-NVUE
181
180
  // $uGetRect为uView自带的节点查询简化方法,详见文档介绍:https://ijry.github.io/uview-plus/js/getRect.html
182
181
  // 组件内部一般用this.$uGetRect,对外的为uni.$u.getRect,二者功能一致,名称不同
183
182
  return new Promise((resolve) => {
184
183
  this.$uGetRect(`#${this.elId}`).then((size) => {
185
184
  resolve(size);
186
185
  });
187
186
  });
188
187
  // #endif
189
188
  // #ifdef APP-NVUE
190
189
  // nvue下,使用dom模块查询元素高度
191
190
  // 返回一个promise,让调用此方法的主体能使用then回调
192
191
  return new Promise((resolve) => {
193
192
  dom.getComponentRect(this.$refs[this.elId], (res) => {
194
193
  resolve(res.size);
195
194
  });
196
195
  });
197
196
  // #endif
198
197
  }
199
198
  }
200
- @import './style.css';
201
- </style>
199
+ <template>
200
+ <view class="u-collapse-item">
201
+ <up-cell
202
+ :title="$slots.title ? '' : title"
203
+ :value="value"
204
+ :label="label"
205
+ :icon="icon"
206
+ :isLink="isLink"
207
+ :clickable="clickable"
208
+ :border="parentData.border && showBorder"
209
+ @click="clickHandler"
210
+ :arrowDirection="expanded ? 'up' : 'down'"
211
+ :disabled="disabled"
212
+ :customClass="cellCustomClass"
213
+ :customStyle="cellCustomStyle"
214
+ >
215
+ <!-- 微信小程序不支持,因为微信中不支持 <slot name="title" #title />的写法 -->
216
+ <template #title>
217
+ <slot name="title">
218
+ <text v-if="!$slots.title && title">
219
+ {{ title }}
220
+ </text>
221
+ </slot>
222
+ </template>
223
+ <template #icon>
224
+ <slot name="icon">
225
+ <up-icon v-if="!$slots.icon && icon" :size="22" :name="icon"></up-icon>
226
+ </slot>
227
+ </template>
228
+ <template #value>
229
+ <slot name="value">
230
+ <text v-if="!$slots.value && value">
231
+ {{ value }}
232
+ </text>
233
+ </slot>
234
+ </template>
235
+ <template #right-icon>
236
+ <template v-if="showRight">
237
+ <up-icon v-if="!$slots['right-icon']" :size="16" name="arrow-right"></up-icon>
238
+ <slot name="right-icon"></slot>
239
+ </template>
240
+ </template>
241
+ </up-cell>
242
+ <view class="u-collapse-item__content" :animation="animationData" ref="animation">
243
+ <view class="u-collapse-item__content__text content-class" :id="elId" :ref="elId"><slot /></view>
244
+ </view>
245
+ <up-line v-if="parentData.border"></up-line>
246
+ </view>
247
+ </template>
248
+ <script>
249
+ import { props } from './props.js';
250
+ import { mpMixin } from '../../libs/mixin/mpMixin';
251
+ import { mixin } from '../../libs/mixin/mixin';
252
+ import { nextTick } from 'vue';
253
+ import { guid, sleep, error } from '../../libs/function/index';
254
+ import test from '../../libs/function/test';
255
+ // #ifdef APP-NVUE
256
+ const animation = uni.requireNativePlugin('animation');
257
+ const dom = uni.requireNativePlugin('dom');
258
+ // #endif
259
+ /**
260
+ * collapseItem 折叠面板Item
261
+ * @description 通过折叠面板收纳内容区域(搭配u-collapse使用)
262
+ * @tutorial https://ijry.github.io/uview-plus/components/collapse.html
263
+ * @property {String} title 标题
264
+ * @property {String} value 标题右侧内容
265
+ * @property {String} label 标题下方的描述信息
266
+ * @property {Boolean} disbled 是否禁用折叠面板 ( 默认 false )
267
+ * @property {Boolean} isLink 是否展示右侧箭头并开启点击反馈 ( 默认 true )
268
+ * @property {Boolean} clickable 是否开启点击反馈 ( 默认 true )
269
+ * @property {Boolean} border 是否显示内边框 ( 默认 true )
270
+ * @property {String} align 标题的对齐方式 ( 默认 'left' )
271
+ * @property {String | Number} name 唯一标识符
272
+ * @property {String} icon 标题左侧图片,可为绝对路径的图片或内置图标
273
+ * @event {Function} change 某个item被打开或者收起时触发
274
+ * @example <up-collapse-item :title="item.head" v-for="(item, index) in itemList" :key="index">{{item.body}}</up-collapse-item>
275
+ */
276
+ export default {
277
+ name: 'u-collapse-item',
278
+ mixins: [mpMixin, mixin, props],
279
+ data() {
280
+ return {
281
+ elId: guid(),
282
+ // uni.createAnimation的导出数据
283
+ animationData: {},
284
+ // 是否展开状态
285
+ expanded: false,
286
+ // 根据expanded确定是否显示border,为了控制展开时,cell的下划线更好的显示效果,进行一定时间的延时
287
+ showBorder: false,
288
+ // 是否动画中,如果是则不允许继续触发点击
289
+ animating: false,
290
+ // 父组件u-collapse的参数
291
+ parentData: {
292
+ accordion: false,
293
+ border: false
294
+ }
295
+ };
296
+ },
297
+ watch: {
298
+ expanded(n) {
299
+ clearTimeout(this.timer);
300
+ this.timer = null;
301
+ // 这里根据expanded的值来进行一定的延时,是为了cell的下划线更好的显示效果
302
+ this.timer = setTimeout(
303
+ () => {
304
+ this.showBorder = n;
305
+ },
306
+ n ? 10 : 290
307
+ );
308
+ }
309
+ },
310
+ mounted() {
311
+ this.init();
312
+ // console.log('$slots', this.$slots)
313
+ },
314
+ methods: {
315
+ // 异步获取内容,或者动态修改了内容时,需要重新初始化
316
+ async init() {
317
+ // 初始化数据
318
+ this.updateParentData();
319
+ if (!this.parent) {
320
+ return error('u-collapse-item必须要搭配u-collapse组件使用');
321
+ }
322
+ const { value, accordion, children = [] } = this.parent;
323
+ if (accordion) {
324
+ if (test.array(value)) {
325
+ return error('手风琴模式下,u-collapse组件的value参数不能为数组');
326
+ }
327
+ this.expanded = this.name == value;
328
+ } else {
329
+ if (!test.array(value) && value !== null) {
330
+ return error('非手风琴模式下,u-collapse组件的value参数必须为数组');
331
+ }
332
+ this.expanded = (value || []).some((item) => item == this.name);
333
+ }
334
+ // 设置组件的展开或收起状态
335
+ await nextTick();
336
+ this.setContentAnimate();
337
+ },
338
+ updateParentData() {
339
+ // 此方法在mixin中
340
+ this.getParentData('u-collapse');
341
+ },
342
+ async setContentAnimate() {
343
+ // 每次面板打开或者收起时,都查询元素尺寸
344
+ // 好处是,父组件从服务端获取内容后,变更折叠面板后可以获得最新的高度
345
+ const rect = await this.queryRect();
346
+ const height = this.expanded ? rect.height : 0;
347
+ this.animating = true;
348
+ // #ifdef APP-NVUE
349
+ const ref = this.$refs['animation'].ref;
350
+ animation.transition(
351
+ ref,
352
+ {
353
+ styles: {
354
+ height: height + 'px'
355
+ },
356
+ duration: this.duration,
357
+ // 必须设置为true,否则会到面板收起或展开时,页面其他元素不会随之调整它们的布局
358
+ needLayout: true,
359
+ timingFunction: 'ease-in-out'
360
+ },
361
+ () => {
362
+ this.animating = false;
363
+ }
364
+ );
365
+ // #endif
366
+ // #ifndef APP-NVUE
367
+ const animation = uni.createAnimation({
368
+ timingFunction: 'ease-in-out'
369
+ });
370
+ animation
371
+ .height(height)
372
+ .step({
373
+ duration: this.duration
374
+ })
375
+ .step();
376
+ // 导出动画数据给面板的animationData值
377
+ this.animationData = animation.export();
378
+ // 标识动画结束
379
+ sleep(this.duration).then(() => {
380
+ this.animating = false;
381
+ });
382
+ // #endif
383
+ },
384
+ // 点击collapsehead头部
385
+ clickHandler() {
386
+ if (this.disabled && this.animating) return;
387
+ // 设置本组件为相反的状态
388
+ this.parent && this.parent.onChange(this);
389
+ },
390
+ // 查询内容高度
391
+ queryRect() {
392
+ // #ifndef APP-NVUE
393
+ // $uGetRect为uView自带的节点查询简化方法,详见文档介绍:https://ijry.github.io/uview-plus/js/getRect.html
394
+ // 组件内部一般用this.$uGetRect,对外的为uni.$u.getRect,二者功能一致,名称不同
395
+ return new Promise((resolve) => {
396
+ this.$uGetRect(`#${this.elId}`).then((size) => {
397
+ resolve(size);
398
+ });
399
+ });
400
+ // #endif
401
+ // #ifdef APP-NVUE
402
+ // nvue下,使用dom模块查询元素高度
403
+ // 返回一个promise,让调用此方法的主体能使用then回调
404
+ return new Promise((resolve) => {
405
+ dom.getComponentRect(this.$refs[this.elId], (res) => {
406
+ resolve(res.size);
407
+ });
408
+ });
409
+ // #endif
410
+ }
411
+ }
412
+ };
413
+ </script>
414
+ <style scoped>
415
+ @import './style.css';
416
+ </style>
@@ -2,7 +2,7 @@
2
2
  <view class="u-notice" @tap="clickHandler">
3
3
  <slot name="icon">
4
4
  <view class="u-notice__left-icon" v-if="icon">
5
- <u-icon :name="icon" :color="color" size="19"></u-icon>
5
+ <up-icon :name="icon" :color="color" size="19"></up-icon>
6
6
  </view>
7
7
  </slot>
8
8
  <swiper
@@ -24,8 +24,8 @@
24
24
  </swiper-item>
25
25
  </swiper>
26
26
  <view class="u-notice__right-icon" v-if="['link', 'closable'].includes(mode)">
27
- <u-icon v-if="mode === 'link'" name="arrow-right" :size="17" :color="color"></u-icon>
28
- <u-icon v-if="mode === 'closable'" name="close" :size="16" :color="color" @click="close"></u-icon>
27
+ <up-icon v-if="mode === 'link'" name="arrow-right" :size="17" :color="color"></up-icon>
28
+ <up-icon v-if="mode === 'closable'" name="close" :size="16" :color="color" @click="close"></up-icon>
29
29
  </view>
30
30
  </view>
31
31
  </template>
@@ -23,7 +23,7 @@ import { isSameSecond, parseFormat, parseTimeData } from './utils';
23
23
  * @event {Function} start 开始倒计时
24
24
  * @event {Function} pause 暂停倒计时
25
25
  * @event {Function} reset 重设倒计时,若 auto-start 为 true,重设后会自动开始倒计时
26
- * @example <u-count-down :time="time"></u-count-down>
26
+ * @example <up-count-down :time="time"></up-count-down>
27
27
  */
28
28
  export default {
29
29
  name: 'u-count-down',
@@ -31,7 +31,7 @@ import { addUnit } from '../../libs/function/index';
31
31
  * @property {Boolean} bold 字体是否加粗(默认 false )
32
32
  * @property {String} separator 千位分隔符,见官网说明
33
33
  * @event {Function} end 数值滚动到目标值时触发
34
- * @example <u-count-to ref="uCountTo" :end-val="endVal" :autoplay="autoplay"></u-count-to>
34
+ * @example <up-count-to ref="uCountTo" :end-val="endVal" :autoplay="autoplay"></up-count-to>
35
35
  */
36
36
  export default {
37
37
  name: 'u-count-to',
@@ -6,7 +6,7 @@
6
6
  <div class="input-cover"></div>
7
7
  </slot>
8
8
  </view>
9
- <u-picker
9
+ <up-picker
10
10
  ref="picker"
11
11
  :show="show || (hasInput && showByClickInput)"
12
12
  :popupMode="popupMode"
@@ -33,7 +33,7 @@
33
33
  <template #toolbar-bottom>
34
34
  <slot name="toolbar-bottom"></slot>
35
35
  </template>
36
- </u-picker>
36
+ </up-picker>
37
37
  </view>
38
38
  </template>
39
39
  <script>
@@ -81,7 +81,7 @@ import test from '../../libs/function/test';
81
81
  * @event {Function} confirm 点击确定按钮,返回当前选择的值
82
82
  * @event {Function} change 当选择值变化时触发
83
83
  * @event {Function} cancel 点击取消按钮
84
- * @example <u-datetime-picker :show="show" :value="value1" mode="datetime" ></u-datetime-picker>
84
+ * @example <up-datetime-picker :show="show" :value="value1" mode="datetime" ></up-datetime-picker>
85
85
  */
86
86
  export default {
87
87
  name: 'up-datetime-picker',
@@ -1,9 +1,9 @@
1
1
  <template>
2
2
  <view class="u-divider" :style="[addStyle(customStyle)]" @tap="click">
3
- <u-line :color="lineColor" :customStyle="leftLineStyle" :hairline="hairline" :dashed="dashed"></u-line>
3
+ <up-line :color="lineColor" :customStyle="leftLineStyle" :hairline="hairline" :dashed="dashed"></up-line>
4
4
  <text v-if="dot" class="u-divider__dot">●</text>
5
5
  <text v-else-if="text" class="u-divider__text" :style="[textStyle]">{{ text }}</text>
6
- <u-line :color="lineColor" :customStyle="rightLineStyle" :hairline="hairline" :dashed="dashed"></u-line>
6
+ <up-line :color="lineColor" :customStyle="rightLineStyle" :hairline="hairline" :dashed="dashed"></up-line>
7
7
  </view>
8
8
  </template>
9
9
  <script>
@@ -26,7 +26,7 @@ import { addStyle, addUnit } from '../../libs/function/index';
26
26
  * @property {Object} customStyle 定义需要用到的外部样式
27
27
  *
28
28
  * @event {Function} click divider组件被点击时触发
29
- * @example <u-divider :color="color">锦瑟无端五十弦</u-divider>
29
+ * @example <up-divider :color="color">锦瑟无端五十弦</up-divider>
30
30
  */
31
31
  export default {
32
32
  name: 'u-divider',