@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,14 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * Determines whether the specified URL is absolute
5
+ *
6
+ * @param {string} url The URL to test
7
+ * @returns {boolean} True if the specified URL is absolute, otherwise false
8
+ */
9
+ export default function isAbsoluteURL(url) {
10
+ // A URL is considered absolute if it begins with "<scheme>://" or "//" (protocol-relative URL).
11
+ // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed
12
+ // by any combination of letters, digits, plus, period, or hyphen.
13
+ return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
14
+ }
@@ -0,0 +1,197 @@
1
+ export type HttpTask = UniApp.RequestTask | UniApp.UploadTask | UniApp.DownloadTask;
2
+
3
+ export type HttpRequestTask = UniApp.RequestTask;
4
+
5
+ export type HttpUploadTask = UniApp.UploadTask;
6
+
7
+ export type HttpDownloadTask = UniApp.DownloadTask;
8
+
9
+ export type HttpMethod =
10
+ "GET"
11
+ | "POST"
12
+ | "PUT"
13
+ | "DELETE"
14
+ | "CONNECT"
15
+ | "HEAD"
16
+ | "OPTIONS"
17
+ | "TRACE"
18
+ | "UPLOAD"
19
+ | "DOWNLOAD";
20
+
21
+ export type HttpRequestHeader = Record<string, string>;
22
+
23
+ export type HttpParams = Record<string, any>;
24
+
25
+ export type HttpData = Record<string, any>;
26
+
27
+ export type HttpResponseType = 'arraybuffer' | 'text';
28
+
29
+ export type HttpCustom = Record<string, any>;
30
+
31
+ export type HttpFileType = 'image' | 'video' | 'audio';
32
+
33
+ export type HttpFormData = Record<string, any>;
34
+
35
+ export type HttpResponseHeader = Record<string, string> & {
36
+ "set-cookie"?: string[]
37
+ };
38
+
39
+ export interface HttpRequestConfig<T = HttpTask> {
40
+ /** @desc 请求服务器接口地址 */
41
+ url?: string;
42
+ /** @desc 请求方式,默认为 GET */
43
+ method?: HttpMethod;
44
+ /** @desc 请求基地址 */
45
+ baseURL?: string;
46
+ /** @desc 请求头信息,不能设置 Referer,App、H5 端会自动带上 cookie,且 H5 端不可手动修改 */
47
+ header?: HttpRequestHeader;
48
+ /** @desc 请求查询参数,自动拼接为查询字符串 */
49
+ params?: HttpParams;
50
+ /** @desc 请求体参数 */
51
+ data?: HttpData;
52
+ /** @desc 超时时间,单位 ms,默认为 60000,仅 H5 (HBuilderX 2.9.9+)、APP (HBuilderX 2.9.9+)、微信小程序 (2.10.0)、支付宝小程序支持 */
53
+ timeout?: number;
54
+ /** @desc 跨域请求时是否携带凭证 (cookies),默认为 false,仅 H5 (HBuilderX 2.6.15+) 支持 */
55
+ withCredentials?: boolean;
56
+ /** @desc 设置响应的数据类型,支付宝小程序不支持 */
57
+ responseType?: HttpResponseType;
58
+ /** @desc 全局自定义验证器 */
59
+ validateStatus?: ((statusCode: number) => boolean) | null;
60
+
61
+
62
+ /** params 参数自定义处理 */
63
+ paramsSerializer?: (params: AnyObject) => string | void;
64
+
65
+ /** @desc 默认为 json,如果设为 json,会尝试对返回的数据做一次 JSON.parse */
66
+ dataType?: string;
67
+ /** @desc DNS 解析时是否优先使用 ipv4,默认为 false,仅 App-Android (HBuilderX 2.8.0+) 支持 */
68
+ firstIpv4?: boolean;
69
+ /** @desc 是否验证 SSL 证书,默认为 true,仅 App-Android (HBuilderX 2.3.3+) 支持 */
70
+ sslVerify?: boolean;
71
+
72
+ /** @desc 开启 http2;微信小程序 */
73
+ enableHttp2?: boolean;
74
+
75
+ /** @desc 开启 quic;微信小程序 */
76
+ enableQuic?: boolean;
77
+ /** @desc 开启 cache;微信小程序、字节跳动小程序 2.31.0+ */
78
+ enableCache?: boolean;
79
+ /** @desc 开启 httpDNS;微信小程序 */
80
+ enableHttpDNS?: boolean;
81
+ /** @desc httpDNS 服务商;微信小程序 */
82
+ httpDNSServiceId?: string;
83
+ /** @desc 开启 transfer-encoding chunked;微信小程序 */
84
+ enableChunked?: boolean;
85
+ /** @desc wifi下使用移动网络发送请求;微信小程序 */
86
+ forceCellularNetwork?: boolean;
87
+ /** @desc 开启后可在headers中编辑cookie;支付宝小程序 10.2.33+ */
88
+ enableCookie?: boolean;
89
+ /** @desc 是否开启云加速;百度小程序 3.310.11+ */
90
+ cloudCache?: boolean | object;
91
+ /** @desc 控制当前请求是否延时至首屏内容渲染后发送;百度小程序 3.310.11+ */
92
+ defer?: boolean;
93
+
94
+ /** @desc 自定义参数 */
95
+ custom?: HttpCustom;
96
+
97
+ /** @desc 返回当前请求的 task 和 options,不要在这里修改 options */
98
+ getTask?: (task: T, options: HttpRequestConfig<T>) => void;
99
+
100
+ /** @desc 需要上传的文件列表,使用 files 时,filePath 和 name 不生效,仅支持 App、H5 (2.6.15+) */
101
+ files?: { name?: string; file?: File; uri: string; }[];
102
+ /** @desc 文件类型,仅支付宝小程序支持且为必填项 */
103
+ fileType?: HttpFileType;
104
+ /** @desc 要上传的文件对象,仅 H5 (2.6.15+) 支持 */
105
+ file?: File;
106
+ /** @desc 要上传文件资源的路径,使用 files 时,filePath 和 name 不生效 */
107
+ filePath?: string;
108
+ /** @desc 文件对应的 key,开发者在服务器端通过这个 key 可以获取到文件二进制内容,使用 files 时,filePath 和 name 不生效 */
109
+ name?: string;
110
+ /** @desc 请求中其他额外的 form data */
111
+ formData?: HttpFormData;
112
+ }
113
+
114
+ export interface HttpResponse<T = any, D = HttpTask> {
115
+ data: T;
116
+ statusCode: number;
117
+ header: HttpResponseHeader;
118
+ config: HttpRequestConfig<D>;
119
+ cookies: string[];
120
+ errMsg: string;
121
+ rawData: any;
122
+ }
123
+
124
+ export interface HttpUploadResponse<T = any, D = HttpTask> {
125
+ data: T;
126
+ statusCode: number;
127
+ config: HttpRequestConfig<D>;
128
+ errMsg: string;
129
+ rawData: any;
130
+ }
131
+
132
+ export interface HttpDownloadResponse extends HttpResponse {
133
+ tempFilePath: string;
134
+ apFilePath?: string;
135
+ filePath?: string;
136
+ fileContent?: string;
137
+ }
138
+
139
+ export interface HttpError<T = any, D = HttpTask> {
140
+ data?: T;
141
+ statusCode?: number;
142
+ header?: HttpResponseHeader;
143
+ config: HttpRequestConfig<D>;
144
+ cookies?: string[];
145
+ errMsg: string;
146
+ }
147
+
148
+ export interface HttpPromise<T = any> extends Promise<HttpResponse<T>> {
149
+ }
150
+
151
+ export interface HttpInterceptorManager<V, E = V> {
152
+ use(onFulfilled?: (value: V) => V | Promise<V>, onRejected?: (error: E) => T | Promise<E>): void;
153
+
154
+ eject(id: number): void;
155
+ }
156
+
157
+ export abstract class HttpRequestAbstract {
158
+ constructor(config?: HttpRequestConfig);
159
+
160
+ interceptors: {
161
+ request: HttpInterceptorManager<HttpRequestConfig>;
162
+ response: HttpInterceptorManager<HttpResponse, HttpError>;
163
+ }
164
+
165
+ request<T = any, R = HttpResponse<T>, D = HttpRequestTask>(config: HttpRequestConfig<D>): Promise<R>;
166
+
167
+ get<T = any, R = HttpResponse<T>, D = HttpRequestTask>(url: string, config?: HttpRequestConfig<D>): Promise<R>;
168
+
169
+ delete<T = any, R = HttpResponse<T>, D = HttpRequestTask>(url: string, data?: HttpData, config?: HttpRequestConfig<D>): Promise<R>;
170
+
171
+ head<T = any, R = HttpResponse<T>, D = HttpRequestTask>(url: string, data?: HttpData, config?: HttpRequestConfig<D>): Promise<R>;
172
+
173
+ options<T = any, R = HttpResponse<T>, D = HttpRequestTask>(url: string, data?: HttpData, config?: HttpRequestConfig<D>): Promise<R>;
174
+
175
+ post<T = any, R = HttpResponse<T>, D = HttpRequestTask>(url: string, data?: HttpData, config?: HttpRequestConfig<D>): Promise<R>;
176
+
177
+ put<T = any, R = HttpResponse<T>, D = HttpRequestTask>(url: string, data?: HttpData, config?: HttpRequestConfig<D>): Promise<R>;
178
+
179
+ config: HttpRequestConfig;
180
+
181
+ setConfig<D = HttpTask>(onSend: (config: HttpRequestConfig<D>) => HttpRequestConfig<D>): void;
182
+
183
+ connect<T = any, R = HttpResponse<T>, D = HttpRequestTask>(url: string, data?: HttpData, config?: HttpRequestConfig<D>): Promise<R>;
184
+
185
+ trace<T = any, R = HttpResponse<T>, D = HttpRequestTask>(url: string, data?: HttpData, config?: HttpRequestConfig<D>): Promise<R>;
186
+
187
+ upload<T = any, R = HttpUploadResponse<T>, D = HttpUploadTask>(url: string, config?: HttpRequestConfig<D>): Promise<R>;
188
+
189
+ download<T = any, R = HttpDownloadResponse<T>, D = HttpDownloadTask>(url: string, config?: HttpRequestConfig<D>): Promise<R>;
190
+
191
+ middleware<T = any, R = HttpResponse<T>, D = HttpTask>(config: HttpRequestConfig<D>): Promise<R>;
192
+ }
193
+
194
+ declare class HttpRequest extends HttpRequestAbstract {
195
+ }
196
+
197
+ export default HttpRequest;
@@ -0,0 +1,2 @@
1
+ import Request from './core/Request';
2
+ export default Request;
@@ -0,0 +1,3 @@
1
+ # 版本
2
+
3
+ 3.1.0
@@ -0,0 +1,264 @@
1
+ /* eslint-disable */
2
+ var clone = (function() {
3
+ 'use strict';
4
+
5
+ function _instanceof(obj, type) {
6
+ return type != null && obj instanceof type;
7
+ }
8
+
9
+ var nativeMap;
10
+ try {
11
+ nativeMap = Map;
12
+ } catch(_) {
13
+ // maybe a reference error because no `Map`. Give it a dummy value that no
14
+ // value will ever be an instanceof.
15
+ nativeMap = function() {};
16
+ }
17
+
18
+ var nativeSet;
19
+ try {
20
+ nativeSet = Set;
21
+ } catch(_) {
22
+ nativeSet = function() {};
23
+ }
24
+
25
+ var nativePromise;
26
+ try {
27
+ nativePromise = Promise;
28
+ } catch(_) {
29
+ nativePromise = function() {};
30
+ }
31
+
32
+ /**
33
+ * Clones (copies) an Object using deep copying.
34
+ *
35
+ * This function supports circular references by default, but if you are certain
36
+ * there are no circular references in your object, you can save some CPU time
37
+ * by calling clone(obj, false).
38
+ *
39
+ * Caution: if `circular` is false and `parent` contains circular references,
40
+ * your program may enter an infinite loop and crash.
41
+ *
42
+ * @param `parent` - the object to be cloned
43
+ * @param `circular` - set to true if the object to be cloned may contain
44
+ * circular references. (optional - true by default)
45
+ * @param `depth` - set to a number if the object is only to be cloned to
46
+ * a particular depth. (optional - defaults to Infinity)
47
+ * @param `prototype` - sets the prototype to be used when cloning an object.
48
+ * (optional - defaults to parent prototype).
49
+ * @param `includeNonEnumerable` - set to true if the non-enumerable properties
50
+ * should be cloned as well. Non-enumerable properties on the prototype
51
+ * chain will be ignored. (optional - false by default)
52
+ */
53
+ function clone(parent, circular, depth, prototype, includeNonEnumerable) {
54
+ if (typeof circular === 'object') {
55
+ depth = circular.depth;
56
+ prototype = circular.prototype;
57
+ includeNonEnumerable = circular.includeNonEnumerable;
58
+ circular = circular.circular;
59
+ }
60
+ // maintain two arrays for circular references, where corresponding parents
61
+ // and children have the same index
62
+ var allParents = [];
63
+ var allChildren = [];
64
+
65
+ var useBuffer = typeof Buffer != 'undefined';
66
+
67
+ if (typeof circular == 'undefined')
68
+ circular = true;
69
+
70
+ if (typeof depth == 'undefined')
71
+ depth = Infinity;
72
+
73
+ // recurse this function so we don't reset allParents and allChildren
74
+ function _clone(parent, depth) {
75
+ // cloning null always returns null
76
+ if (parent === null)
77
+ return null;
78
+
79
+ if (depth === 0)
80
+ return parent;
81
+
82
+ var child;
83
+ var proto;
84
+ if (typeof parent != 'object') {
85
+ return parent;
86
+ }
87
+
88
+ if (_instanceof(parent, nativeMap)) {
89
+ child = new nativeMap();
90
+ } else if (_instanceof(parent, nativeSet)) {
91
+ child = new nativeSet();
92
+ } else if (_instanceof(parent, nativePromise)) {
93
+ child = new nativePromise(function (resolve, reject) {
94
+ parent.then(function(value) {
95
+ resolve(_clone(value, depth - 1));
96
+ }, function(err) {
97
+ reject(_clone(err, depth - 1));
98
+ });
99
+ });
100
+ } else if (clone.__isArray(parent)) {
101
+ child = [];
102
+ } else if (clone.__isRegExp(parent)) {
103
+ child = new RegExp(parent.source, __getRegExpFlags(parent));
104
+ if (parent.lastIndex) child.lastIndex = parent.lastIndex;
105
+ } else if (clone.__isDate(parent)) {
106
+ child = new Date(parent.getTime());
107
+ } else if (useBuffer && Buffer.isBuffer(parent)) {
108
+ if (Buffer.from) {
109
+ // Node.js >= 5.10.0
110
+ child = Buffer.from(parent);
111
+ } else {
112
+ // Older Node.js versions
113
+ child = new Buffer(parent.length);
114
+ parent.copy(child);
115
+ }
116
+ return child;
117
+ } else if (_instanceof(parent, Error)) {
118
+ child = Object.create(parent);
119
+ } else {
120
+ if (typeof prototype == 'undefined') {
121
+ proto = Object.getPrototypeOf(parent);
122
+ child = Object.create(proto);
123
+ }
124
+ else {
125
+ child = Object.create(prototype);
126
+ proto = prototype;
127
+ }
128
+ }
129
+
130
+ if (circular) {
131
+ var index = allParents.indexOf(parent);
132
+
133
+ if (index != -1) {
134
+ return allChildren[index];
135
+ }
136
+ allParents.push(parent);
137
+ allChildren.push(child);
138
+ }
139
+
140
+ if (_instanceof(parent, nativeMap)) {
141
+ parent.forEach(function(value, key) {
142
+ var keyChild = _clone(key, depth - 1);
143
+ var valueChild = _clone(value, depth - 1);
144
+ child.set(keyChild, valueChild);
145
+ });
146
+ }
147
+ if (_instanceof(parent, nativeSet)) {
148
+ parent.forEach(function(value) {
149
+ var entryChild = _clone(value, depth - 1);
150
+ child.add(entryChild);
151
+ });
152
+ }
153
+
154
+ for (var i in parent) {
155
+ var attrs = Object.getOwnPropertyDescriptor(parent, i);
156
+ if (attrs) {
157
+ child[i] = _clone(parent[i], depth - 1);
158
+ }
159
+
160
+ try {
161
+ var objProperty = Object.getOwnPropertyDescriptor(parent, i);
162
+ if (objProperty.set === 'undefined') {
163
+ // no setter defined. Skip cloning this property
164
+ continue;
165
+ }
166
+ child[i] = _clone(parent[i], depth - 1);
167
+ } catch(e){
168
+ if (e instanceof TypeError) {
169
+ // when in strict mode, TypeError will be thrown if child[i] property only has a getter
170
+ // we can't do anything about this, other than inform the user that this property cannot be set.
171
+ continue
172
+ } else if (e instanceof ReferenceError) {
173
+ //this may happen in non strict mode
174
+ continue
175
+ }
176
+ }
177
+
178
+ }
179
+
180
+ if (Object.getOwnPropertySymbols) {
181
+ var symbols = Object.getOwnPropertySymbols(parent);
182
+ for (var i = 0; i < symbols.length; i++) {
183
+ // Don't need to worry about cloning a symbol because it is a primitive,
184
+ // like a number or string.
185
+ var symbol = symbols[i];
186
+ var descriptor = Object.getOwnPropertyDescriptor(parent, symbol);
187
+ if (descriptor && !descriptor.enumerable && !includeNonEnumerable) {
188
+ continue;
189
+ }
190
+ child[symbol] = _clone(parent[symbol], depth - 1);
191
+ Object.defineProperty(child, symbol, descriptor);
192
+ }
193
+ }
194
+
195
+ if (includeNonEnumerable) {
196
+ var allPropertyNames = Object.getOwnPropertyNames(parent);
197
+ for (var i = 0; i < allPropertyNames.length; i++) {
198
+ var propertyName = allPropertyNames[i];
199
+ var descriptor = Object.getOwnPropertyDescriptor(parent, propertyName);
200
+ if (descriptor && descriptor.enumerable) {
201
+ continue;
202
+ }
203
+ child[propertyName] = _clone(parent[propertyName], depth - 1);
204
+ Object.defineProperty(child, propertyName, descriptor);
205
+ }
206
+ }
207
+
208
+ return child;
209
+ }
210
+
211
+ return _clone(parent, depth);
212
+ }
213
+
214
+ /**
215
+ * Simple flat clone using prototype, accepts only objects, usefull for property
216
+ * override on FLAT configuration object (no nested props).
217
+ *
218
+ * USE WITH CAUTION! This may not behave as you wish if you do not know how this
219
+ * works.
220
+ */
221
+ clone.clonePrototype = function clonePrototype(parent) {
222
+ if (parent === null)
223
+ return null;
224
+
225
+ var c = function () {};
226
+ c.prototype = parent;
227
+ return new c();
228
+ };
229
+
230
+ // private utility functions
231
+
232
+ function __objToStr(o) {
233
+ return Object.prototype.toString.call(o);
234
+ }
235
+ clone.__objToStr = __objToStr;
236
+
237
+ function __isDate(o) {
238
+ return typeof o === 'object' && __objToStr(o) === '[object Date]';
239
+ }
240
+ clone.__isDate = __isDate;
241
+
242
+ function __isArray(o) {
243
+ return typeof o === 'object' && __objToStr(o) === '[object Array]';
244
+ }
245
+ clone.__isArray = __isArray;
246
+
247
+ function __isRegExp(o) {
248
+ return typeof o === 'object' && __objToStr(o) === '[object RegExp]';
249
+ }
250
+ clone.__isRegExp = __isRegExp;
251
+
252
+ function __getRegExpFlags(re) {
253
+ var flags = '';
254
+ if (re.global) flags += 'g';
255
+ if (re.ignoreCase) flags += 'i';
256
+ if (re.multiline) flags += 'm';
257
+ return flags;
258
+ }
259
+ clone.__getRegExpFlags = __getRegExpFlags;
260
+
261
+ return clone;
262
+ })();
263
+
264
+ export default clone
@@ -0,0 +1,131 @@
1
+ 'use strict';
2
+
3
+ // utils is a library of generic helper functions non-specific to axios
4
+
5
+ var toString = Object.prototype.toString;
6
+
7
+ /**
8
+ * Determine if a value is an Array
9
+ *
10
+ * @param {Object} val The value to test
11
+ * @returns {boolean} True if value is an Array, otherwise false
12
+ */
13
+ export function isArray(val) {
14
+ return toString.call(val) === '[object Array]';
15
+ }
16
+
17
+ /**
18
+ * Determine if a value is an Object
19
+ *
20
+ * @param {Object} val The value to test
21
+ * @returns {boolean} True if value is an Object, otherwise false
22
+ */
23
+ export function isObject(val) {
24
+ return val !== null && typeof val === 'object';
25
+ }
26
+
27
+ /**
28
+ * Determine if a value is a Date
29
+ *
30
+ * @param {Object} val The value to test
31
+ * @returns {boolean} True if value is a Date, otherwise false
32
+ */
33
+ export function isDate(val) {
34
+ return toString.call(val) === '[object Date]';
35
+ }
36
+
37
+ /**
38
+ * Determine if a value is a URLSearchParams object
39
+ *
40
+ * @param {Object} val The value to test
41
+ * @returns {boolean} True if value is a URLSearchParams object, otherwise false
42
+ */
43
+ export function isURLSearchParams(val) {
44
+ return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;
45
+ }
46
+
47
+ /**
48
+ * Iterate over an Array or an Object invoking a function for each item.
49
+ *
50
+ * If `obj` is an Array callback will be called passing
51
+ * the value, index, and complete array for each item.
52
+ *
53
+ * If 'obj' is an Object callback will be called passing
54
+ * the value, key, and complete object for each property.
55
+ *
56
+ * @param {Object|Array} obj The object to iterate
57
+ * @param {Function} fn The callback to invoke for each item
58
+ */
59
+ export function forEach(obj, fn) {
60
+ // Don't bother if no value provided
61
+ if (obj === null || typeof obj === 'undefined') {
62
+ return;
63
+ }
64
+
65
+ // Force an array if not already something iterable
66
+ if (typeof obj !== 'object') {
67
+ /*eslint no-param-reassign:0*/
68
+ obj = [obj];
69
+ }
70
+
71
+ if (isArray(obj)) {
72
+ // Iterate over array values
73
+ for (var i = 0, l = obj.length; i < l; i++) {
74
+ fn.call(null, obj[i], i, obj);
75
+ }
76
+ } else {
77
+ // Iterate over object keys
78
+ for (var key in obj) {
79
+ if (Object.prototype.hasOwnProperty.call(obj, key)) {
80
+ fn.call(null, obj[key], key, obj);
81
+ }
82
+ }
83
+ }
84
+ }
85
+
86
+ /**
87
+ * 是否为boolean 值
88
+ * @param val
89
+ * @returns {boolean}
90
+ */
91
+ export function isBoolean(val) {
92
+ return typeof val === 'boolean';
93
+ }
94
+
95
+ /**
96
+ * 是否为真正的对象{} new Object
97
+ * @param {any} obj - 检测的对象
98
+ * @returns {boolean}
99
+ */
100
+ export function isPlainObject(obj) {
101
+ return Object.prototype.toString.call(obj) === '[object Object]';
102
+ }
103
+
104
+ /**
105
+ * Function equal to merge with the difference being that no reference
106
+ * to original objects is kept.
107
+ *
108
+ * @see merge
109
+ * @param {Object} obj1 Object to merge
110
+ * @returns {Object} Result of all merge properties
111
+ */
112
+ export function deepMerge(/* obj1, obj2, obj3, ... */) {
113
+ let result = {};
114
+ function assignValue(val, key) {
115
+ if (typeof result[key] === 'object' && typeof val === 'object') {
116
+ result[key] = deepMerge(result[key], val);
117
+ } else if (typeof val === 'object') {
118
+ result[key] = deepMerge({}, val);
119
+ } else {
120
+ result[key] = val;
121
+ }
122
+ }
123
+ for (let i = 0, l = arguments.length; i < l; i++) {
124
+ forEach(arguments[i], assignValue);
125
+ }
126
+ return result;
127
+ }
128
+
129
+ export function isUndefined(val) {
130
+ return typeof val === 'undefined';
131
+ }
@@ -130,11 +130,11 @@ class RequestClass {
130
130
  return this;
131
131
  }
132
132
  setApiAuth(options) {
133
- this.authMap = options || {};
133
+ this.flagAuth = options || {};
134
134
  return this;
135
135
  }
136
136
  appendApiAuth(options) {
137
- this.authMap = Object.assign({}, this.authMap, options || {});
137
+ this.flagAuth = Object.assign({}, this.flagAuth, options || {});
138
138
  return this;
139
139
  }
140
140
  /**
@@ -2,7 +2,7 @@
2
2
  <button class="cv-button-wrap" :type="type" :size="size" @click="parentClick" :disabled="loadingStatus">
3
3
  <view class="cv-button-box">
4
4
  <view :class="loadingStatus ? 'cv-button-rotateloop' : ''">
5
- <u-loading-icon v-if="loadingStatus" size="20"></u-loading-icon>
5
+ <up-loading-icon v-if="loadingStatus" size="20"></up-loading-icon>
6
6
  </view>
7
7
  <slot>{{ text }}</slot>
8
8
  </view>
@@ -448,7 +448,7 @@ export default {
448
448
  min-height: 20px;
449
449
  }
450
450
  .cv-form-item__inner.is-direction-top .cv-form-item__content {
451
- min-height: 30px;
451
+ min-height: 45px;
452
452
  }
453
453
  .cv-form-item__label {
454
454
  /* #ifndef APP-NVUE */