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

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 (260) hide show
  1. package/package.json +1 -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-form-item/cv-form-item.vue +1 -1
  20. package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
  21. package/ui-fireui/fui-alert/fui-alert.vue +141 -0
  22. package/ui-fireui/fui-badge/fui-badge.vue +158 -0
  23. package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
  24. package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
  25. package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
  26. package/ui-fireui/fui-button/fui-button.vue +424 -0
  27. package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
  28. package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
  29. package/ui-fireui/fui-card/fui-card.vue +231 -0
  30. package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
  31. package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
  32. package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
  33. package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
  34. package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
  35. package/ui-fireui/fui-divider/fui-divider.vue +118 -0
  36. package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
  37. package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
  38. package/ui-fireui/fui-fab/fui-fab.vue +284 -0
  39. package/ui-fireui/fui-footer/fui-footer.vue +131 -0
  40. package/ui-fireui/fui-grid/fui-grid.vue +42 -0
  41. package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
  42. package/ui-fireui/fui-icon/fui-icon.vue +820 -0
  43. package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
  44. package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
  45. package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
  46. package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
  47. package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
  48. package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
  49. package/ui-fireui/fui-loading/fui-loading.vue +78 -0
  50. package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
  51. package/ui-fireui/fui-modal/fui-modal.vue +392 -0
  52. package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
  53. package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
  54. package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
  55. package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
  56. package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
  57. package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
  58. package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
  59. package/ui-fireui/fui-rate/fui-rate.vue +167 -0
  60. package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
  61. package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
  62. package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
  63. package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
  64. package/ui-fireui/fui-steps/fui-steps.vue +214 -0
  65. package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
  66. package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
  67. package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
  68. package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
  69. package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
  70. package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
  71. package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
  72. package/ui-fireui/fui-tag/fui-tag.vue +374 -0
  73. package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
  74. package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
  75. package/ui-fireui/fui-tips/fui-tips.vue +161 -0
  76. package/ui-fireui/fui-toast/fui-toast.vue +117 -0
  77. package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
  78. package/ui-fireui/fui-upload/fui-upload.vue +446 -0
  79. package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
  80. package/uview-plus/README.md +1 -1
  81. package/uview-plus/changelog-wu-tool.md +21 -0
  82. package/uview-plus/changelog-wu.md +91 -0
  83. package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
  84. package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
  85. package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
  86. package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
  87. package/uview-plus/components/u-app-update/_doc/package.json +89 -0
  88. package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
  89. package/uview-plus/components/u-app-update/config.js +120 -0
  90. package/uview-plus/components/u-app-update/img/act.png +0 -0
  91. package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
  92. package/uview-plus/components/u-app-update/img/close.png +0 -0
  93. package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
  94. package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
  95. package/uview-plus/components/u-app-update/pages/index.vue +8 -0
  96. package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
  97. package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
  98. package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
  99. package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
  100. package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
  101. package/uview-plus/components/u-button-wu/vue.scss +81 -0
  102. package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
  103. package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
  104. package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
  105. package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
  106. package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
  107. package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
  108. package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
  109. package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
  110. package/uview-plus/components/u-calendar-wu/props.js +166 -0
  111. package/uview-plus/components/u-calendar-wu/style.css +196 -0
  112. package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
  113. package/uview-plus/components/u-calendar-wu/util.js +552 -0
  114. package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
  115. package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
  116. package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
  117. package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
  118. package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
  119. package/uview-plus/components/u-cell/_doc/package.json +89 -0
  120. package/uview-plus/components/u-cell/_doc/readme.md +25 -0
  121. package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
  122. package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
  123. package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
  124. package/uview-plus/components/u-code/_doc/changelog.md +6 -0
  125. package/uview-plus/components/u-code/_doc/package.json +86 -0
  126. package/uview-plus/components/u-code/_doc/readme.md +16 -0
  127. package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
  128. package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
  129. package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
  130. package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
  131. package/uview-plus/components/u-empty/u-empty.vue +27 -1
  132. package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
  133. package/uview-plus/components/u-gap/_doc/package.json +86 -0
  134. package/uview-plus/components/u-gap/_doc/readme.md +22 -0
  135. package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
  136. package/uview-plus/components/u-icon/_doc/package.json +85 -0
  137. package/uview-plus/components/u-icon/_doc/readme.md +10 -0
  138. package/uview-plus/components/u-icon/icon.js +23 -25
  139. package/uview-plus/components/u-icon/icons.js +213 -213
  140. package/uview-plus/components/u-icon/style.css +3 -3
  141. package/uview-plus/components/u-icon/u-icon2.vue +149 -0
  142. package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
  143. package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
  144. package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
  145. package/uview-plus/components/u-image-wu/props.js +94 -0
  146. package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
  147. package/uview-plus/components/u-input/_doc/changelog.md +6 -0
  148. package/uview-plus/components/u-input/_doc/package.json +88 -0
  149. package/uview-plus/components/u-input/_doc/readme.md +16 -0
  150. package/uview-plus/components/u-line/_doc/changelog.md +8 -0
  151. package/uview-plus/components/u-line/_doc/package.json +86 -0
  152. package/uview-plus/components/u-line/_doc/readme.md +16 -0
  153. package/uview-plus/components/u-link/_doc/changelog.md +8 -0
  154. package/uview-plus/components/u-link/_doc/package.json +86 -0
  155. package/uview-plus/components/u-link/_doc/readme.md +20 -0
  156. package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
  157. package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
  158. package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
  159. package/uview-plus/components/u-loading-icon/props.js +1 -1
  160. package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
  161. package/uview-plus/components/u-navbar/_doc/package.json +89 -0
  162. package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
  163. package/uview-plus/components/u-navbar-wu/props.js +102 -0
  164. package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
  165. package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
  166. package/uview-plus/components/u-number-box/_doc/package.json +88 -0
  167. package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
  168. package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
  169. package/uview-plus/components/u-overlay/_doc/package.json +88 -0
  170. package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
  171. package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
  172. package/uview-plus/components/u-popup/_doc/package.json +92 -0
  173. package/uview-plus/components/u-popup/_doc/readme.md +16 -0
  174. package/uview-plus/components/u-popup-wu/keypress.js +45 -0
  175. package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
  176. package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
  177. package/uview-plus/components/u-radio/_doc/package.json +88 -0
  178. package/uview-plus/components/u-radio/_doc/readme.md +25 -0
  179. package/uview-plus/components/u-row/_doc/changelog.md +8 -0
  180. package/uview-plus/components/u-row/_doc/package.json +86 -0
  181. package/uview-plus/components/u-row/_doc/readme.md +16 -0
  182. package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
  183. package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
  184. package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
  185. package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
  186. package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
  187. package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
  188. package/uview-plus/components/u-sku-wu/props.js +86 -0
  189. package/uview-plus/components/u-sku-wu/style.css +271 -0
  190. package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
  191. package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
  192. package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
  193. package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
  194. package/uview-plus/components/u-text/_doc/changelog.md +10 -0
  195. package/uview-plus/components/u-text/_doc/package.json +89 -0
  196. package/uview-plus/components/u-text/_doc/readme.md +20 -0
  197. package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
  198. package/uview-plus/components/u-textarea/_doc/package.json +86 -0
  199. package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
  200. package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
  201. package/uview-plus/components/u-transition/_doc/package.json +86 -0
  202. package/uview-plus/components/u-transition/_doc/readme.md +16 -0
  203. package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
  204. package/uview-plus/components/u-transition-wu/props.js +32 -0
  205. package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
  206. package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
  207. package/uview-plus/index.js +107 -94
  208. package/uview-plus/libs/config/config.js +46 -48
  209. package/uview-plus/libs/css/color.scss +32 -311
  210. package/uview-plus/libs/css/components-wu.scss +30 -0
  211. package/uview-plus/libs/css/vue.scss +10 -10
  212. package/uview-plus/libs/function/calc.js +61 -55
  213. package/uview-plus/libs/function/cc.js +66 -0
  214. package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
  215. package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
  216. package/uview-plus/libs/function/color/color-convert/README.md +68 -0
  217. package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
  218. package/uview-plus/libs/function/color/color-convert/index.js +81 -0
  219. package/uview-plus/libs/function/color/color-convert/package.json +48 -0
  220. package/uview-plus/libs/function/color/color-convert/route.js +97 -0
  221. package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
  222. package/uview-plus/libs/function/color/color-name/README.md +11 -0
  223. package/uview-plus/libs/function/color/color-name/index.js +152 -0
  224. package/uview-plus/libs/function/color/color-name/package.json +28 -0
  225. package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
  226. package/uview-plus/libs/function/color/color-string/README.md +62 -0
  227. package/uview-plus/libs/function/color/color-string/index.js +244 -0
  228. package/uview-plus/libs/function/color/color-string/package.json +39 -0
  229. package/uview-plus/libs/function/color/color.js +496 -0
  230. package/uview-plus/libs/function/color/index.js +158 -0
  231. package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
  232. package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
  233. package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
  234. package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
  235. package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
  236. package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
  237. package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
  238. package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
  239. package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
  240. package/uview-plus/libs/function/colorGradient.js +108 -106
  241. package/uview-plus/libs/function/debounce.js +17 -17
  242. package/uview-plus/libs/function/digit.js +1 -3
  243. package/uview-plus/libs/function/http.js +3 -3
  244. package/uview-plus/libs/function/index-wu.js +231 -0
  245. package/uview-plus/libs/function/index.js +579 -566
  246. package/uview-plus/libs/function/platform.js +18 -18
  247. package/uview-plus/libs/function/test.js +135 -137
  248. package/uview-plus/libs/function/throttle.js +17 -17
  249. package/uview-plus/libs/luch-request/core/Request.js +199 -199
  250. package/uview-plus/libs/mixin/mpMixin.js +1 -0
  251. package/uview-plus/libs/mixin/openType.js +33 -0
  252. package/uview-plus/libs/util/async-validator.js +1343 -1343
  253. package/uview-plus/libs/util/dayjs.js +404 -0
  254. package/uview-plus/libs/util/route.js +101 -105
  255. package/uview-plus/package-wu-tool.json +84 -0
  256. package/uview-plus/package-wu.json +112 -0
  257. package/uview-plus/package.json +106 -95
  258. package/uview-plus/readme-wu.md +148 -0
  259. package/uview-ui/index.js +51 -52
  260. package/plugins/uni-upgrade.js +0 -294
@@ -0,0 +1,202 @@
1
+ <template>
2
+ <view @touchmove.stop.prevent>
3
+ <view class="fui-actionsheet" :class="{ 'fui-actionsheet-show': show, 'fui-actionsheet-radius': radius }">
4
+ <view class="fui-actionsheet-tips" :style="{ fontSize: size + 'rpx', color: color }" v-if="tips">
5
+ {{ tips }}
6
+ </view>
7
+ <view :class="[isCancel ? 'fui-operate-box' : '']">
8
+ <block v-for="(item, index) in itemList" :key="index">
9
+ <view
10
+ class="fui-actionsheet-btn fui-actionsheet-divider"
11
+ :class="{ 'fui-btn-last': !isCancel && index == itemList.length - 1 }"
12
+ hover-class="fui-actionsheet-hover"
13
+ :hover-stay-time="150"
14
+ :data-index="index"
15
+ :style="{ color: item.color || '#2B2B2B' }"
16
+ @tap="handleClickItem"
17
+ >
18
+ {{ item.text }}
19
+ </view>
20
+ </block>
21
+ </view>
22
+ <view
23
+ class="fui-actionsheet-btn fui-actionsheet-cancel"
24
+ hover-class="fui-actionsheet-hover"
25
+ :hover-stay-time="150"
26
+ v-if="isCancel"
27
+ @tap="handleClickCancel"
28
+ >
29
+ 取消
30
+ </view>
31
+ </view>
32
+ <view class="fui-actionsheet-mask" :class="{ 'fui-mask-show': show }" @tap="handleClickMask"></view>
33
+ </view>
34
+ </template>
35
+
36
+ <script>
37
+ export default {
38
+ name: 'fuiActionsheet',
39
+ props: {
40
+ //点击遮罩 是否可关闭
41
+ maskClosable: {
42
+ type: Boolean,
43
+ default: true
44
+ },
45
+ //显示操作菜单
46
+ show: {
47
+ type: Boolean,
48
+ default: false
49
+ },
50
+ //菜单按钮数组,自定义文本颜色,红色参考色:#e53a37
51
+ itemList: {
52
+ type: Array,
53
+ default: () => {
54
+ return [
55
+ {
56
+ text: '确定',
57
+ color: '#2B2B2B'
58
+ }
59
+ ];
60
+ }
61
+ },
62
+ //提示文字
63
+ tips: {
64
+ type: String,
65
+ default: ''
66
+ },
67
+ //提示文字颜色
68
+ color: {
69
+ type: String,
70
+ default: '#808080'
71
+ },
72
+ //提示文字大小 rpx
73
+ size: {
74
+ type: Number,
75
+ default: 26
76
+ },
77
+ //是否需要圆角
78
+ radius: {
79
+ type: Boolean,
80
+ default: true
81
+ },
82
+ //是否需要取消按钮
83
+ isCancel: {
84
+ type: Boolean,
85
+ default: true
86
+ }
87
+ },
88
+ methods: {
89
+ handleClickMask() {
90
+ if (!this.maskClosable) return;
91
+ this.handleClickCancel();
92
+ },
93
+ handleClickItem(e) {
94
+ if (!this.show) return;
95
+ const dataset = e.currentTarget.dataset;
96
+ this.$emit('click', {
97
+ index: Number(dataset.index)
98
+ });
99
+ },
100
+ handleClickCancel() {
101
+ this.$emit('cancel');
102
+ }
103
+ }
104
+ };
105
+ </script>
106
+
107
+ <style scoped>
108
+ .fui-actionsheet {
109
+ width: 100%;
110
+ position: fixed;
111
+ left: 0;
112
+ right: 0;
113
+ bottom: 0;
114
+ z-index: 9999;
115
+ visibility: hidden;
116
+ transform: translate3d(0, 100%, 0);
117
+ transform-origin: center;
118
+ transition: all 0.25s ease-in-out;
119
+ background-color: #f7f7f7;
120
+ min-height: 100rpx;
121
+ }
122
+
123
+ .fui-actionsheet-radius {
124
+ border-top-left-radius: 20rpx;
125
+ border-top-right-radius: 20rpx;
126
+ overflow: hidden;
127
+ }
128
+
129
+ .fui-actionsheet-show {
130
+ transform: translate3d(0, 0, 0);
131
+ visibility: visible;
132
+ }
133
+
134
+ .fui-actionsheet-tips {
135
+ width: 100%;
136
+ padding: 40rpx 60rpx;
137
+ box-sizing: border-box;
138
+ text-align: center;
139
+ background-color: #fff;
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: center;
143
+ }
144
+
145
+ .fui-operate-box {
146
+ padding-bottom: 12rpx;
147
+ }
148
+
149
+ .fui-actionsheet-btn {
150
+ width: 100%;
151
+ height: 100rpx;
152
+ background-color: #fff;
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: center;
156
+ text-align: center;
157
+ font-size: 34rpx;
158
+ position: relative;
159
+ }
160
+
161
+ .fui-btn-last {
162
+ padding-bottom: env(safe-area-inset-bottom);
163
+ }
164
+
165
+ .fui-actionsheet-divider::before {
166
+ content: '';
167
+ width: 100%;
168
+ border-top: 1rpx solid #e7e7e7;
169
+ position: absolute;
170
+ top: 0;
171
+ left: 0;
172
+ -webkit-transform: scaleY(0.5);
173
+ transform: scaleY(0.5);
174
+ }
175
+
176
+ .fui-actionsheet-cancel {
177
+ color: #1a1a1a;
178
+ padding-bottom: env(safe-area-inset-bottom);
179
+ }
180
+
181
+ .fui-actionsheet-hover {
182
+ background-color: #f7f7f9;
183
+ }
184
+
185
+ .fui-actionsheet-mask {
186
+ position: fixed;
187
+ top: 0;
188
+ left: 0;
189
+ right: 0;
190
+ bottom: 0;
191
+ background-color: rgba(0, 0, 0, 0.6);
192
+ z-index: 9996;
193
+ transition: all 0.3s ease-in-out;
194
+ opacity: 0;
195
+ visibility: hidden;
196
+ }
197
+
198
+ .fui-mask-show {
199
+ opacity: 1;
200
+ visibility: visible;
201
+ }
202
+ </style>
@@ -0,0 +1,141 @@
1
+ <template>
2
+ <view>
3
+ <view class="fui-alert-class fui-alert-box" :class="[show ? 'fui-alert-show' : '']">
4
+ <view class="fui-alert-content" :style="{ fontSize: size + 'rpx', color: color }">
5
+ <slot></slot>
6
+ </view>
7
+ <view
8
+ class="fui-alert-btn"
9
+ :style="{ color: btnColor }"
10
+ hover-class="fui-alert-btn-hover"
11
+ :hover-stay-time="150"
12
+ @tap.stop="handleClick"
13
+ >
14
+ {{ btnText }}
15
+ </view>
16
+ </view>
17
+ <view class="fui-alert-mask" :class="[show ? 'fui-alert-mask-show' : '']" @tap.stop="handleClickCancel"></view>
18
+ </view>
19
+ </template>
20
+
21
+ <script>
22
+ export default {
23
+ name: 'fuiAlert',
24
+ props: {
25
+ //控制显示
26
+ show: {
27
+ type: Boolean,
28
+ default: false
29
+ },
30
+ //提示信息字体大小
31
+ size: {
32
+ type: Number,
33
+ default: 30
34
+ },
35
+ //提示信息字体颜色
36
+ color: {
37
+ type: String,
38
+ default: '#333'
39
+ },
40
+ //按钮字体颜色
41
+ btnColor: {
42
+ type: String,
43
+ default: '#EB0909'
44
+ },
45
+ btnText: {
46
+ type: String,
47
+ default: '确定'
48
+ },
49
+ //点击遮罩 是否可关闭
50
+ maskClosable: {
51
+ type: Boolean,
52
+ default: false
53
+ }
54
+ },
55
+ methods: {
56
+ handleClick(e) {
57
+ if (!this.show) return;
58
+ this.$emit('click', {});
59
+ },
60
+ handleClickCancel() {
61
+ if (!this.maskClosable) return;
62
+ this.$emit('cancel');
63
+ }
64
+ }
65
+ };
66
+ </script>
67
+
68
+ <style scoped>
69
+ .fui-alert-box {
70
+ position: fixed;
71
+ width: 560rpx;
72
+ left: 50%;
73
+ top: 50%;
74
+ background-color: #fff;
75
+ transition: all 0.3s ease-in-out;
76
+ transform: translate(-50%, -50%) scale(0);
77
+ opacity: 0;
78
+ border-radius: 6rpx;
79
+ overflow: hidden;
80
+ z-index: 99998;
81
+ }
82
+
83
+ .fui-alert-show {
84
+ transform: translate(-50%, -50%) scale(1);
85
+ opacity: 1;
86
+ }
87
+
88
+ .fui-alert-mask {
89
+ position: fixed;
90
+ top: 0;
91
+ left: 0;
92
+ right: 0;
93
+ bottom: 0;
94
+ background-color: rgba(0, 0, 0, 0.5);
95
+ z-index: 99996;
96
+ transition: all 0.3s ease-in-out;
97
+ opacity: 0;
98
+ visibility: hidden;
99
+ }
100
+
101
+ .fui-alert-mask-show {
102
+ visibility: visible;
103
+ opacity: 1;
104
+ }
105
+
106
+ .fui-alert-content {
107
+ text-align: center;
108
+ color: #333333;
109
+ padding: 98rpx 48rpx 92rpx 48rpx;
110
+ box-sizing: border-box;
111
+ word-break: break-all;
112
+ }
113
+
114
+ .fui-alert-btn {
115
+ width: 100%;
116
+ height: 90rpx;
117
+ display: flex;
118
+ align-items: center;
119
+ justify-content: center;
120
+ background-color: #fff;
121
+ box-sizing: border-box;
122
+ position: relative;
123
+ font-size: 32rpx;
124
+ line-height: 32rpx;
125
+ }
126
+
127
+ .fui-alert-btn-hover {
128
+ background-color: #f7f7f7;
129
+ }
130
+
131
+ .fui-alert-btn::before {
132
+ width: 100%;
133
+ content: '';
134
+ position: absolute;
135
+ border-top: 1rpx solid #e0e0e0;
136
+ -webkit-transform: scaleY(0.5);
137
+ transform: scaleY(0.5);
138
+ left: 0;
139
+ top: 0;
140
+ }
141
+ </style>
@@ -0,0 +1,158 @@
1
+ <template>
2
+ <view
3
+ :class="[dot ? 'fui-badge-dot' : 'fui-badge', 'fui-' + type, !dot ? 'fui-badge-scale' : '']"
4
+ :style="{ top: top, right: right, position: absolute ? 'absolute' : 'static', transform: getStyle, margin: margin }"
5
+ @tap="handleClick"
6
+ >
7
+ <slot></slot>
8
+ </view>
9
+ </template>
10
+
11
+ <script>
12
+ export default {
13
+ name: 'fuiBadge',
14
+ props: {
15
+ //primary,warning,green,danger,white,black,gray,white_red
16
+ type: {
17
+ type: String,
18
+ default: 'primary'
19
+ },
20
+ //是否是圆点
21
+ dot: {
22
+ type: Boolean,
23
+ default: false
24
+ },
25
+ margin: {
26
+ type: String,
27
+ default: '0'
28
+ },
29
+ //是否绝对定位
30
+ absolute: {
31
+ type: Boolean,
32
+ default: false
33
+ },
34
+ top: {
35
+ type: String,
36
+ default: '-8rpx'
37
+ },
38
+ right: {
39
+ type: String,
40
+ default: '0'
41
+ },
42
+ //缩放比例
43
+ scaleRatio: {
44
+ type: Number,
45
+ default: 1
46
+ },
47
+ //水平方向移动距离
48
+ translateX: {
49
+ type: String,
50
+ default: '0'
51
+ }
52
+ },
53
+ computed: {
54
+ getStyle() {
55
+ return `scale(${this.scaleRatio}) translateX(${this.translateX})`;
56
+ }
57
+ },
58
+ methods: {
59
+ handleClick() {
60
+ this.$emit('click', {});
61
+ }
62
+ }
63
+ };
64
+ </script>
65
+
66
+ <style scoped>
67
+ /* color start*/
68
+
69
+ .fui-primary {
70
+ background-color: #5677fc;
71
+ color: #fff;
72
+ }
73
+
74
+ .fui-danger {
75
+ background-color: #ed3f14;
76
+ color: #fff;
77
+ }
78
+
79
+ .fui-red {
80
+ background-color: #f74d54;
81
+ color: #fff;
82
+ }
83
+
84
+ .fui-warning {
85
+ background-color: #ff7900;
86
+ color: #fff;
87
+ }
88
+
89
+ .fui-green {
90
+ background-color: #19be6b;
91
+ color: #fff;
92
+ }
93
+
94
+ .fui-white {
95
+ background-color: #fff;
96
+ color: #333;
97
+ }
98
+
99
+ .fui-white_red {
100
+ background-color: #fff;
101
+ color: #f74d54;
102
+ }
103
+
104
+ .fui-white_primary {
105
+ background-color: #fff;
106
+ color: #5677fc;
107
+ }
108
+
109
+ .fui-white_green {
110
+ background-color: #fff;
111
+ color: #19be6b;
112
+ }
113
+
114
+ .fui-white_warning {
115
+ background-color: #fff;
116
+ color: #ff7900;
117
+ }
118
+
119
+ .fui-black {
120
+ background-color: #000;
121
+ color: #fff;
122
+ }
123
+
124
+ .fui-gray {
125
+ background-color: #ededed;
126
+ color: #999;
127
+ }
128
+
129
+ /* color end*/
130
+
131
+ /* badge start*/
132
+
133
+ .fui-badge-dot {
134
+ height: 8px;
135
+ width: 8px;
136
+ border-radius: 50%;
137
+ }
138
+
139
+ .fui-badge {
140
+ font-size: 24rpx;
141
+ line-height: 24rpx;
142
+ height: 36rpx;
143
+ min-width: 36rpx;
144
+ padding: 0 10rpx;
145
+ box-sizing: border-box;
146
+ border-radius: 100rpx;
147
+ display: flex;
148
+ align-items: center;
149
+ justify-content: center;
150
+ z-index: 10;
151
+ }
152
+
153
+ .fui-badge-scale {
154
+ transform-origin: center center;
155
+ }
156
+
157
+ /* badge end*/
158
+ </style>