@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,149 @@
1
+ <template>
2
+ <view class="fui-image-container" :class="{ 'fui-image-direction': direction == 'column' }">
3
+ <view
4
+ v-for="(item, index) in imageList"
5
+ :key="index"
6
+ class="fui-image-item_box"
7
+ :style="{
8
+ width: width,
9
+ height: height,
10
+ borderRadius: radius,
11
+ marginLeft: direction == 'column' ? 0 : (index && distance) + 'rpx',
12
+ marginTop: direction == 'row' ? 0 : (index && distance) + 'rpx'
13
+ }"
14
+ @tap="bindClick(index, item.id)"
15
+ >
16
+ <image
17
+ class="fui-image-item"
18
+ :mode="mode"
19
+ :lazy-load="lazyLoad"
20
+ fade-show="fadeShow"
21
+ :webp="webp"
22
+ :show-menu-by-longpress="longpress"
23
+ @error="error"
24
+ @load="load"
25
+ :style="{ width: width, height: height, borderRadius: radius, borderWidth: borderWidth, borderColor: borderColor }"
26
+ :src="item.src"
27
+ ></image>
28
+ <slot />
29
+ </view>
30
+ </view>
31
+ </template>
32
+
33
+ <script>
34
+ export default {
35
+ name: 'fuiImageGroup',
36
+ props: {
37
+ //图片集合
38
+ /*
39
+ [{id:1,src:"1.png"}]
40
+ */
41
+ imageList: {
42
+ type: Array,
43
+ default: () => {
44
+ return [];
45
+ }
46
+ },
47
+ //图片宽度
48
+ width: {
49
+ type: String,
50
+ default: '120rpx'
51
+ },
52
+ //图片高度
53
+ height: {
54
+ type: String,
55
+ default: '120rpx'
56
+ },
57
+ //图片边框宽度 rpx
58
+ borderWidth: {
59
+ type: String,
60
+ default: '0'
61
+ },
62
+ //图片边框颜色 可传rgba
63
+ borderColor: {
64
+ type: String,
65
+ default: '#fff'
66
+ },
67
+ //图片圆角
68
+ radius: {
69
+ type: String,
70
+ default: '50%'
71
+ },
72
+ //图片裁剪、缩放的模式
73
+ mode: {
74
+ type: String,
75
+ default: 'scaleToFill'
76
+ },
77
+ //图片懒加载。只针对page与scroll-view下的image有效
78
+ lazyLoad: {
79
+ type: Boolean,
80
+ default: true
81
+ },
82
+ //图片显示动画效果 | 仅App-nvue 2.3.4+ Android有效
83
+ fadeShow: {
84
+ type: Boolean,
85
+ default: true
86
+ },
87
+ //默认不解析 webP 格式,只支持网络资源 | 微信小程序2.9.0
88
+ webp: {
89
+ type: Boolean,
90
+ default: false
91
+ },
92
+ //开启长按图片显示识别小程序码菜单 | 微信小程序2.7.0
93
+ longpress: {
94
+ type: Boolean,
95
+ default: false
96
+ },
97
+ //是否组合排列
98
+ isGroup: {
99
+ type: Boolean,
100
+ default: false
101
+ },
102
+ //排列方向 row ,column
103
+ direction: {
104
+ type: String,
105
+ default: 'row'
106
+ },
107
+ //偏移距离 rpx
108
+ distance: {
109
+ type: [Number, String],
110
+ default: -16
111
+ }
112
+ },
113
+ data() {
114
+ return {};
115
+ },
116
+ methods: {
117
+ error(e) {
118
+ this.$emit('errorEvent', e);
119
+ },
120
+ load(e) {
121
+ this.$emit('loaded', e);
122
+ },
123
+ bindClick(index, id) {
124
+ this.$emit('click', {
125
+ index: index,
126
+ id: id || ''
127
+ });
128
+ }
129
+ }
130
+ };
131
+ </script>
132
+
133
+ <style scoped>
134
+ .fui-image-container {
135
+ display: inline-flex;
136
+ align-items: center;
137
+ }
138
+ .fui-image-direction {
139
+ flex-direction: column;
140
+ }
141
+ .fui-image-item_box {
142
+ position: relative;
143
+ }
144
+ .fui-image-item {
145
+ border-style: solid;
146
+ flex-shrink: 0;
147
+ display: block;
148
+ }
149
+ </style>
@@ -0,0 +1,254 @@
1
+ <template>
2
+ <view>
3
+ <view class="fui-keyboard-mask" :class="[show ? 'fui-mask-show' : '']" v-if="mask" @tap="handleClose"></view>
4
+ <view
5
+ class="fui-keyboard"
6
+ :class="{ 'fui-keyboard-radius': radius, 'fui-keyboard-action': action, 'fui-keyboard-show': show }"
7
+ >
8
+ <slot></slot>
9
+ <view class="fui-keyboard-grids">
10
+ <!--{{(index==9 || index==10 || index==11)?'fui-grid-bottom':''}}-->
11
+ <view
12
+ class="fui-keyboard-grid"
13
+ :class="{ 'fui-bg-gray': index == 9 || index == 11 }"
14
+ v-for="(item, index) in itemList"
15
+ :key="index"
16
+ hover-class="fui-keyboard-hover"
17
+ :hover-stay-time="150"
18
+ @tap="handleClick"
19
+ :data-index="index"
20
+ >
21
+ <view v-if="index < 11" class="fui-keyboard-item" :class="{ 'fui-fontsize-32': index == 9 }">
22
+ {{ getKeyBoard(index, action) }}
23
+ </view>
24
+ <view v-else class="fui-keyboard-item">
25
+ <view class="fui-icon fui-keyboard-delete"></view>
26
+ </view>
27
+ </view>
28
+ </view>
29
+ </view>
30
+ </view>
31
+ </template>
32
+
33
+ <script>
34
+ export default {
35
+ name: 'fuiKeyboard',
36
+ props: {
37
+ //是否需要mask
38
+ mask: {
39
+ type: Boolean,
40
+ default: true
41
+ },
42
+ //控制键盘显示
43
+ show: {
44
+ type: Boolean,
45
+ default: false
46
+ },
47
+ //是否直接显示,不需要动画,一般使用在锁屏密码
48
+ action: {
49
+ type: Boolean,
50
+ default: true
51
+ },
52
+ //是否带圆角
53
+ radius: {
54
+ type: Boolean,
55
+ default: false
56
+ }
57
+ },
58
+ data() {
59
+ return {
60
+ itemList: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
61
+ };
62
+ },
63
+ methods: {
64
+ getKeyBoard(index, action) {
65
+ var content = index + 1;
66
+ if (index == 9) {
67
+ content = action ? '取消' : '清除';
68
+ } else if (index == 10) {
69
+ content = 0;
70
+ }
71
+ return content;
72
+ },
73
+ //关闭
74
+ handleClose() {
75
+ if (!this.show) {
76
+ return;
77
+ }
78
+ this.$emit('close', {});
79
+ },
80
+ handleClick(e) {
81
+ if (!this.show) {
82
+ return;
83
+ }
84
+ const dataset = e.currentTarget.dataset;
85
+ this.$emit('click', {
86
+ index: Number(dataset.index)
87
+ });
88
+ }
89
+ }
90
+ };
91
+ </script>
92
+
93
+ <style scoped>
94
+ @font-face {
95
+ font-family: 'keyboardFont';
96
+ src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAASgAA0AAAAABugAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEhAAAABoAAAAch/nJvUdERUYAAARkAAAAHgAAAB4AKQAKT1MvMgAAAZwAAABDAAAAVj4mSapjbWFwAAAB8AAAAD4AAAFCAA/rY2dhc3AAAARcAAAACAAAAAj//wADZ2x5ZgAAAjwAAACsAAAA0BLVU2FoZWFkAAABMAAAAC0AAAA2FXPmsWhoZWEAAAFgAAAAHAAAACQH3gOFaG10eAAAAeAAAAAOAAAAEAwAAABsb2NhAAACMAAAAAoAAAAKAGgAAG1heHAAAAF8AAAAHwAAACABEQBLbmFtZQAAAugAAAFJAAACiCnmEVVwb3N0AAAENAAAACgAAAA6nLlLs3jaY2BkYGAAYukqK754fpuvDNwsDCBwU+tiFBKtwMLA9ABIczAwgUQB4ccH+gAAAHjaY2BkYGBu+N/AEMPCAAJAkpEBFbAAAEcKAm142mNgZGBgYGGwZ2BmAAEmIOYCQgaG/2A+AwAPIgFdAHjaY2BkYWCcwMDKwMDUyXSGgYGhH0IzvmYwYuQAijKwMjNgBQFprikMDs93PN/B3PC/gSGGuYGhASjMCJIDAPenDU0AeNpjYYAAFigGAACAAA0AAHjaY2BgYGaAYBkGRgYQsAHyGMF8FgYFIM0ChED+8x3//0NICW+oSgZGNgYYk4GRCUgwMaACRoZhDwAItAhZAAAAAAAAAAAAAABoAAB42l3MTQqCUBSG4fNpqBxECS/+YFTXRGcFKteZjW0nuoqWVtOgPbgKZ1cqaBDN3snzkklE+xUZEwUkqSOCzGx4EGGEsJYd2vURgQdbomhayC0iu8h8lEVmiR1sS4TVGVFYqeaEVjXmVT8TsWjf83yYIjFq1QM9I0/1c9HMMI06zfHgmMeRY8HDwOKnjSlYZvdQ5u4yB+gVbqrX97cAOxsHn9GF/9G3iV4WbSWBeNp9kD1OAzEQhZ/zByQSQiCoXVEA2vyUKRMp9Ailo0g23pBo1155nUg5AS0VB6DlGByAGyDRcgpelkmTImvt6PObmeexAZzjGwr/3yXuhBWO8ShcwREy4Sr1F+Ea+V24jhY+hRvUf4SbuFUD4RYu1BsdVO2Eu5vSbcsKZxgIV3CKJ+Eq9ZVwjfwqXMcVPoQb1L+EmxjjV7iFa2WpDOFhMEFgnEFjig3jAjEcLJIyBtahOfRmEsxMTzd6ETubOBso71dilwMeaDnngCntPbdmvkon/mDLgdSYbh4FS7YpjS4idCgbXyyc1d2oc7D9nu22tNi/a4E1x+xRDWzU/D3bM9JIbAyvkJI18jK3pBJTj2hrrPG7ZynW814IiU68y/SIx5o0dTr3bmniwOLn8owcfbS5kj33qBw+Y1kIeb/dTsQgil2GP5PYcRkAAAB42mNgYoAALjDJyIAOWMCiTIxM/FmZiXkFiXnxxRmJeckZpQA1nQZRAAAAAf//AAIAAQAAAAwAAAAWAAAAAgABAAMAAwABAAQAAAACAAAAAHjaY2BgYGQAgqtL1DlA9E2ti1EwGgA9dwYGAAA=)
97
+ format('woff');
98
+ font-weight: normal;
99
+ font-style: normal;
100
+ }
101
+
102
+ .fui-icon {
103
+ font-family: 'keyboardFont' !important;
104
+ font-size: 22px;
105
+ font-style: normal;
106
+ -webkit-font-smoothing: antialiased;
107
+ -moz-osx-font-smoothing: grayscale;
108
+ line-height: 1;
109
+ color: #333;
110
+ }
111
+
112
+ .fui-keyboard-delete:before {
113
+ content: '\e7b8';
114
+ }
115
+
116
+ .fui-keyboard-mask {
117
+ position: fixed;
118
+ top: 0;
119
+ left: 0;
120
+ right: 0;
121
+ bottom: 0;
122
+ background-color: rgba(0, 0, 0, 0.6);
123
+ z-index: 998;
124
+ transition: all 0.3s ease-in-out;
125
+ opacity: 0;
126
+ visibility: hidden;
127
+ }
128
+
129
+ .fui-mask-show {
130
+ opacity: 1;
131
+ visibility: visible;
132
+ }
133
+
134
+ .fui-keyboard {
135
+ width: 100%;
136
+ position: fixed;
137
+ left: 0;
138
+ right: 0;
139
+ bottom: 0;
140
+ z-index: 999;
141
+ padding-bottom: env(safe-area-inset-bottom);
142
+ background-color: #fff;
143
+ }
144
+
145
+ .fui-keyboard-radius {
146
+ border-top-left-radius: 16rpx;
147
+ border-top-right-radius: 16rpx;
148
+ overflow: hidden;
149
+ }
150
+
151
+ .fui-keyboard-action {
152
+ visibility: hidden;
153
+ transform: translate3d(0, 100%, 0);
154
+ transform-origin: center;
155
+ transition: all 0.3s ease-in-out;
156
+ }
157
+
158
+ .fui-keyboard-show {
159
+ transform: translate3d(0, 0, 0);
160
+ visibility: visible;
161
+ }
162
+
163
+ .fui-bg-gray {
164
+ background-color: #e7e6eb !important;
165
+ }
166
+
167
+ .fui-keyboard-grids {
168
+ width: 100%;
169
+ position: relative;
170
+ overflow: hidden;
171
+ display: flex;
172
+ display: -webkit-flex;
173
+ flex-direction: row;
174
+ flex-wrap: wrap;
175
+ }
176
+
177
+ .fui-keyboard-grids::after {
178
+ content: ' ';
179
+ position: absolute;
180
+ left: 0;
181
+ top: 0;
182
+ width: 100%;
183
+ height: 1px;
184
+ border-top: 1px solid #eaeef1;
185
+ -webkit-transform-origin: 0 0;
186
+ transform-origin: 0 0;
187
+ -webkit-transform: scaleY(0.5);
188
+ transform: scaleY(0.5);
189
+ }
190
+
191
+ .fui-keyboard-grid {
192
+ position: relative;
193
+ padding: 24rpx 20rpx;
194
+ box-sizing: border-box;
195
+ background-color: #fff;
196
+ width: 33.33333333%;
197
+ }
198
+
199
+ .fui-keyboard-grid:nth-of-type(3n)::before {
200
+ width: 0;
201
+ border-right: 0;
202
+ }
203
+
204
+ .fui-keyboard-grid::before {
205
+ content: ' ';
206
+ position: absolute;
207
+ right: 0;
208
+ top: 0;
209
+ width: 1px;
210
+ bottom: 0;
211
+ border-right: 1px solid #eaeef1;
212
+ -webkit-transform-origin: 100% 0;
213
+ transform-origin: 100% 0;
214
+ -webkit-transform: scaleX(0.5);
215
+ transform: scaleX(0.5);
216
+ }
217
+
218
+ .fui-keyboard-grid::after {
219
+ content: ' ';
220
+ position: absolute;
221
+ left: 0;
222
+ bottom: 0;
223
+ right: 0;
224
+ height: 1px;
225
+ border-bottom: 1px solid #eaeef1;
226
+ -webkit-transform-origin: 0 100%;
227
+ transform-origin: 0 100%;
228
+ -webkit-transform: scaleY(0.5);
229
+ transform: scaleY(0.5);
230
+ }
231
+
232
+ .fui-grid-bottom::after {
233
+ height: 0 !important;
234
+ border-bottom: 0 !important;
235
+ }
236
+
237
+ .fui-keyboard-hover {
238
+ background-color: #f7f7f9 !important;
239
+ }
240
+
241
+ .fui-keyboard-item {
242
+ display: flex;
243
+ align-items: center;
244
+ justify-content: center;
245
+ font-size: 48rpx;
246
+ height: 60rpx;
247
+ color: #000;
248
+ }
249
+
250
+ .fui-fontsize-32 {
251
+ font-size: 32rpx;
252
+ color: #333 !important;
253
+ }
254
+ </style>
@@ -0,0 +1,78 @@
1
+ <template>
2
+ <view class="fui-keyboard-input fui-pwd-box" :style="{ backgroundColor: backgroundColor }">
3
+ <view class="fui-inner-box">
4
+ <view
5
+ class="fui-input"
6
+ :class="[inputvalue.length === 4 ? 'fui-margin-right' : '']"
7
+ :style="{ fontSize: size + 'rpx', color: color, width: (inputvalue.length === 4 ? 90 : 70) + 'rpx' }"
8
+ v-for="(item, index) in inputvalue"
9
+ :key="index"
10
+ >
11
+ {{ item }}
12
+ </view>
13
+ </view>
14
+ </view>
15
+ </template>
16
+
17
+ <script>
18
+ export default {
19
+ name: 'fuiKeyboardInput',
20
+ props: {
21
+ //背景颜色
22
+ backgroundColor: {
23
+ type: String,
24
+ default: '#fff'
25
+ },
26
+ size: {
27
+ type: Number,
28
+ default: 32
29
+ },
30
+ color: {
31
+ type: String,
32
+ default: '#333'
33
+ },
34
+ //输入框的值:数组格式,长度即为输入框个数
35
+ inputvalue: {
36
+ type: Array,
37
+ default: ['', '', '', '', '', ''] //密码圆点 ●
38
+ }
39
+ },
40
+ data() {
41
+ return {};
42
+ }
43
+ };
44
+ </script>
45
+
46
+ <style scoped>
47
+ .fui-pwd-box {
48
+ display: flex;
49
+ align-items: center;
50
+ justify-content: center;
51
+ box-sizing: border-box;
52
+ vertical-align: top;
53
+ }
54
+
55
+ .fui-inner-box {
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: center;
59
+ }
60
+
61
+ .fui-input {
62
+ height: 80rpx;
63
+ position: relative;
64
+ display: flex;
65
+ align-items: center;
66
+ justify-content: center;
67
+ margin-right: 20rpx;
68
+ border-bottom: 2px solid #666;
69
+ }
70
+
71
+ .fui-margin-right {
72
+ margin-right: 30rpx;
73
+ }
74
+
75
+ .fui-input:last-child {
76
+ margin-right: 0 !important;
77
+ }
78
+ </style>
@@ -0,0 +1,178 @@
1
+ <template>
2
+ <view
3
+ class="fui-list-class fui-list-cell"
4
+ :class="[
5
+ arrow ? 'fui-cell-arrow' : '',
6
+ arrow && arrowRight ? '' : 'fui-arrow-right',
7
+ unlined ? 'fui-cell-unlined' : '',
8
+ lineLeft ? 'fui-line-left' : '',
9
+ lineRight ? 'fui-line-right' : '',
10
+ arrow && arrowColor ? 'fui-arrow-' + arrowColor : '',
11
+ radius ? 'fui-radius' : ''
12
+ ]"
13
+ :hover-class="hover ? 'fui-cell-hover' : ''"
14
+ :style="{ backgroundColor: backgroundColor, fontSize: size + 'rpx', color: color, padding: padding }"
15
+ :hover-stay-time="150"
16
+ @tap="handleClick"
17
+ >
18
+ <slot></slot>
19
+ </view>
20
+ </template>
21
+
22
+ <script>
23
+ export default {
24
+ name: 'fuiListCell',
25
+ props: {
26
+ //是否有箭头
27
+ arrow: {
28
+ type: Boolean,
29
+ default: false
30
+ },
31
+ //箭头颜色 传值: white,gray,warning,danger
32
+ arrowColor: {
33
+ type: String,
34
+ default: ''
35
+ },
36
+ //是否有点击效果
37
+ hover: {
38
+ type: Boolean,
39
+ default: true
40
+ },
41
+ //隐藏线条
42
+ unlined: {
43
+ type: Boolean,
44
+ default: false
45
+ },
46
+ //线条是否有左偏移距离
47
+ lineLeft: {
48
+ type: Boolean,
49
+ default: true
50
+ },
51
+ //线条是否有右偏移距离
52
+ lineRight: {
53
+ type: Boolean,
54
+ default: false
55
+ },
56
+ padding: {
57
+ type: String,
58
+ default: '26rpx 30rpx'
59
+ },
60
+ //背景颜色
61
+ backgroundColor: {
62
+ type: String,
63
+ default: '#fff'
64
+ },
65
+ //字体大小
66
+ size: {
67
+ type: Number,
68
+ default: 28
69
+ },
70
+ //字体颜色
71
+ color: {
72
+ type: String,
73
+ default: '#333'
74
+ },
75
+ //是否加圆角
76
+ radius: {
77
+ type: Boolean,
78
+ default: false
79
+ },
80
+ //箭头是否有偏移距离
81
+ arrowRight: {
82
+ type: Boolean,
83
+ default: true
84
+ },
85
+ index: {
86
+ type: Number,
87
+ default: 0
88
+ }
89
+ },
90
+ methods: {
91
+ handleClick() {
92
+ this.$emit('click', {
93
+ index: this.index
94
+ });
95
+ }
96
+ }
97
+ };
98
+ </script>
99
+
100
+ <style scoped>
101
+ .fui-list-cell {
102
+ position: relative;
103
+ width: 100%;
104
+ box-sizing: border-box;
105
+ }
106
+
107
+ .fui-radius {
108
+ border-radius: 6rpx;
109
+ overflow: hidden;
110
+ }
111
+
112
+ .fui-cell-hover {
113
+ background-color: #f1f1f1 !important;
114
+ }
115
+
116
+ .fui-list-cell::after {
117
+ content: '';
118
+ position: absolute;
119
+ border-bottom: 1px solid #eaeef1;
120
+ -webkit-transform: scaleY(0.5) translateZ(0);
121
+ transform: scaleY(0.5) translateZ(0);
122
+ transform-origin: 0 100%;
123
+ bottom: 0;
124
+ right: 0;
125
+ left: 0;
126
+ }
127
+
128
+ .fui-line-left::after {
129
+ left: 30rpx !important;
130
+ }
131
+
132
+ .fui-line-right::after {
133
+ right: 30rpx !important;
134
+ }
135
+
136
+ .fui-cell-unlined::after {
137
+ border-bottom: 0 !important;
138
+ }
139
+
140
+ .fui-cell-arrow::before {
141
+ content: ' ';
142
+ height: 10px;
143
+ width: 10px;
144
+ border-width: 2px 2px 0 0;
145
+ border-color: #c0c0c0;
146
+ border-style: solid;
147
+ -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
148
+ transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
149
+ position: absolute;
150
+ top: 50%;
151
+ margin-top: -6px;
152
+ right: 30rpx;
153
+ }
154
+
155
+ .fui-arrow-right::before {
156
+ right: 0 !important;
157
+ }
158
+
159
+ .fui-arrow-gray::before {
160
+ border-color: #666666 !important;
161
+ }
162
+
163
+ .fui-arrow-white::before {
164
+ border-color: #ffffff !important;
165
+ }
166
+
167
+ .fui-arrow-warning::before {
168
+ border-color: #ff7900 !important;
169
+ }
170
+
171
+ .fui-arrow-success::before {
172
+ border-color: #19be6b !important;
173
+ }
174
+
175
+ .fui-arrow-danger::before {
176
+ border-color: #eb0909 !important;
177
+ }
178
+ </style>