@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
@@ -1,199 +1,199 @@
1
- /**
2
- * @Class Request
3
- * @description luch-request http请求插件
4
- * @version 3.0.7
5
- * @Author lu-ch
6
- * @Date 2021-09-04
7
- * @Email webwork.s@qq.com
8
- * 文档: https://www.quanzhan.co/luch-request/
9
- * github: https://github.com/lei-mu/luch-request
10
- * DCloud: http://ext.dcloud.net.cn/plugin?id=392
11
- * HBuilderX: beat-3.0.4 alpha-3.0.4
12
- */
13
-
14
- import dispatchRequest from './dispatchRequest'
15
- import InterceptorManager from './InterceptorManager'
16
- import mergeConfig from './mergeConfig'
17
- import defaults from './defaults'
18
- import { isPlainObject } from '../utils'
19
- import clone from '../utils/clone'
20
-
21
- export default class Request {
22
- /**
23
- * @param {Object} arg - 全局配置
24
- * @param {String} arg.baseURL - 全局根路径
25
- * @param {Object} arg.header - 全局header
26
- * @param {String} arg.method = [GET|POST|PUT|DELETE|CONNECT|HEAD|OPTIONS|TRACE] - 全局默认请求方式
27
- * @param {String} arg.dataType = [json] - 全局默认的dataType
28
- * @param {String} arg.responseType = [text|arraybuffer] - 全局默认的responseType。支付宝小程序不支持
29
- * @param {Object} arg.custom - 全局默认的自定义参数
30
- * @param {Number} arg.timeout - 全局默认的超时时间,单位 ms。默认60000。H5(HBuilderX 2.9.9+)、APP(HBuilderX 2.9.9+)、微信小程序(2.10.0)、支付宝小程序
31
- * @param {Boolean} arg.sslVerify - 全局默认的是否验证 ssl 证书。默认true.仅App安卓端支持(HBuilderX 2.3.3+)
32
- * @param {Boolean} arg.withCredentials - 全局默认的跨域请求时是否携带凭证(cookies)。默认false。仅H5支持(HBuilderX 2.6.15+)
33
- * @param {Boolean} arg.firstIpv4 - 全DNS解析时优先使用ipv4。默认false。仅 App-Android 支持 (HBuilderX 2.8.0+)
34
- * @param {Function(statusCode):Boolean} arg.validateStatus - 全局默认的自定义验证器。默认statusCode >= 200 && statusCode < 300
35
- */
36
- constructor(arg = {}) {
37
- // console.info('初始化luch-request')
38
- if (!isPlainObject(arg)) {
39
- arg = {}
40
- console.warn('设置全局参数必须接收一个Object')
41
- }
42
- this.config = clone({ ...defaults, ...arg })
43
- this.interceptors = {
44
- request: new InterceptorManager(),
45
- response: new InterceptorManager()
46
- }
47
- }
48
-
49
- /**
50
- * @Function
51
- * @param {Request~setConfigCallback} f - 设置全局默认配置
52
- */
53
- setConfig(f) {
54
- this.config = f(this.config)
55
- }
56
-
57
- middleware(config) {
58
- config = mergeConfig(this.config, config)
59
- const chain = [dispatchRequest, undefined]
60
- let promise = Promise.resolve(config)
61
-
62
- this.interceptors.request.forEach((interceptor) => {
63
- chain.unshift(interceptor.fulfilled, interceptor.rejected)
64
- })
65
-
66
- this.interceptors.response.forEach((interceptor) => {
67
- chain.push(interceptor.fulfilled, interceptor.rejected)
68
- })
69
-
70
- while (chain.length) {
71
- promise = promise.then(chain.shift(), chain.shift())
72
- }
73
-
74
- return promise
75
- }
76
-
77
- /**
78
- * @Function
79
- * @param {Object} config - 请求配置项
80
- * @prop {String} options.url - 请求路径
81
- * @prop {Object} options.data - 请求参数
82
- * @prop {Object} [options.responseType = config.responseType] [text|arraybuffer] - 响应的数据类型
83
- * @prop {Object} [options.dataType = config.dataType] - 如果设为 json,会尝试对返回的数据做一次 JSON.parse
84
- * @prop {Object} [options.header = config.header] - 请求header
85
- * @prop {Object} [options.method = config.method] - 请求方法
86
- * @returns {Promise<unknown>}
87
- */
88
- request(config = {}) {
89
- return this.middleware(config)
90
- }
91
-
92
- get(url, options = {}) {
93
- return this.middleware({
94
- url,
95
- method: 'GET',
96
- ...options
97
- })
98
- }
99
-
100
- post(url, data, options = {}) {
101
- return this.middleware({
102
- url,
103
- data,
104
- method: 'POST',
105
- ...options
106
- })
107
- }
108
-
109
- // #ifndef MP-ALIPAY
110
- put(url, data, options = {}) {
111
- return this.middleware({
112
- url,
113
- data,
114
- method: 'PUT',
115
- ...options
116
- })
117
- }
118
-
119
- // #endif
120
-
121
- // #ifdef APP-PLUS || H5 || MP-WEIXIN || MP-BAIDU
122
- delete(url, data, options = {}) {
123
- return this.middleware({
124
- url,
125
- data,
126
- method: 'DELETE',
127
- ...options
128
- })
129
- }
130
-
131
- // #endif
132
-
133
- // #ifdef H5 || MP-WEIXIN
134
- connect(url, data, options = {}) {
135
- return this.middleware({
136
- url,
137
- data,
138
- method: 'CONNECT',
139
- ...options
140
- })
141
- }
142
-
143
- // #endif
144
-
145
- // #ifdef H5 || MP-WEIXIN || MP-BAIDU
146
- head(url, data, options = {}) {
147
- return this.middleware({
148
- url,
149
- data,
150
- method: 'HEAD',
151
- ...options
152
- })
153
- }
154
-
155
- // #endif
156
-
157
- // #ifdef APP-PLUS || H5 || MP-WEIXIN || MP-BAIDU
158
- options(url, data, options = {}) {
159
- return this.middleware({
160
- url,
161
- data,
162
- method: 'OPTIONS',
163
- ...options
164
- })
165
- }
166
-
167
- // #endif
168
-
169
- // #ifdef H5 || MP-WEIXIN
170
- trace(url, data, options = {}) {
171
- return this.middleware({
172
- url,
173
- data,
174
- method: 'TRACE',
175
- ...options
176
- })
177
- }
178
-
179
- // #endif
180
-
181
- upload(url, config = {}) {
182
- config.url = url
183
- config.method = 'UPLOAD'
184
- return this.middleware(config)
185
- }
186
-
187
- download(url, config = {}) {
188
- config.url = url
189
- config.method = 'DOWNLOAD'
190
- return this.middleware(config)
191
- }
192
- }
193
-
194
- /**
195
- * setConfig回调
196
- * @return {Object} - 返回操作后的config
197
- * @callback Request~setConfigCallback
198
- * @param {Object} config - 全局默认config
199
- */
1
+ /**
2
+ * @Class Request
3
+ * @description luch-request http请求插件
4
+ * @version 3.0.7
5
+ * @Author lu-ch
6
+ * @Date 2021-09-04
7
+ * @Email webwork.s@qq.com
8
+ * 文档: https://www.quanzhan.co/luch-request/
9
+ * github: https://github.com/lei-mu/luch-request
10
+ * DCloud: http://ext.dcloud.net.cn/plugin?id=392
11
+ * HBuilderX: beat-3.0.4 alpha-3.0.4
12
+ */
13
+
14
+ import dispatchRequest from './dispatchRequest'
15
+ import InterceptorManager from './InterceptorManager'
16
+ import mergeConfig from './mergeConfig'
17
+ import defaults from './defaults'
18
+ import { isPlainObject } from '../utils'
19
+ import clone from '../utils/clone'
20
+
21
+ export default class Request {
22
+ /**
23
+ * @param {Object} arg - 全局配置
24
+ * @param {String} arg.baseURL - 全局根路径
25
+ * @param {Object} arg.header - 全局header
26
+ * @param {String} arg.method = [GET|POST|PUT|DELETE|CONNECT|HEAD|OPTIONS|TRACE] - 全局默认请求方式
27
+ * @param {String} arg.dataType = [json] - 全局默认的dataType
28
+ * @param {String} arg.responseType = [text|arraybuffer] - 全局默认的responseType。支付宝小程序不支持
29
+ * @param {Object} arg.custom - 全局默认的自定义参数
30
+ * @param {Number} arg.timeout - 全局默认的超时时间,单位 ms。默认60000。H5(HBuilderX 2.9.9+)、APP(HBuilderX 2.9.9+)、微信小程序(2.10.0)、支付宝小程序
31
+ * @param {Boolean} arg.sslVerify - 全局默认的是否验证 ssl 证书。默认true.仅App安卓端支持(HBuilderX 2.3.3+)
32
+ * @param {Boolean} arg.withCredentials - 全局默认的跨域请求时是否携带凭证(cookies)。默认false。仅H5支持(HBuilderX 2.6.15+)
33
+ * @param {Boolean} arg.firstIpv4 - 全DNS解析时优先使用ipv4。默认false。仅 App-Android 支持 (HBuilderX 2.8.0+)
34
+ * @param {Function(statusCode):Boolean} arg.validateStatus - 全局默认的自定义验证器。默认statusCode >= 200 && statusCode < 300
35
+ */
36
+ constructor(arg = {}) {
37
+ // console.info('初始化luch-request')
38
+ if (!isPlainObject(arg)) {
39
+ arg = {}
40
+ console.warn('设置全局参数必须接收一个Object')
41
+ }
42
+ this.config = clone({ ...defaults, ...arg })
43
+ this.interceptors = {
44
+ request: new InterceptorManager(),
45
+ response: new InterceptorManager()
46
+ }
47
+ }
48
+
49
+ /**
50
+ * @Function
51
+ * @param {Request~setConfigCallback} f - 设置全局默认配置
52
+ */
53
+ setConfig(f) {
54
+ this.config = f(this.config)
55
+ }
56
+
57
+ middleware(config) {
58
+ config = mergeConfig(this.config, config)
59
+ const chain = [dispatchRequest, undefined]
60
+ let promise = Promise.resolve(config)
61
+
62
+ this.interceptors.request.forEach((interceptor) => {
63
+ chain.unshift(interceptor.fulfilled, interceptor.rejected)
64
+ })
65
+
66
+ this.interceptors.response.forEach((interceptor) => {
67
+ chain.push(interceptor.fulfilled, interceptor.rejected)
68
+ })
69
+
70
+ while (chain.length) {
71
+ promise = promise.then(chain.shift(), chain.shift())
72
+ }
73
+
74
+ return promise
75
+ }
76
+
77
+ /**
78
+ * @Function
79
+ * @param {Object} config - 请求配置项
80
+ * @prop {String} options.url - 请求路径
81
+ * @prop {Object} options.data - 请求参数
82
+ * @prop {Object} [options.responseType = config.responseType] [text|arraybuffer] - 响应的数据类型
83
+ * @prop {Object} [options.dataType = config.dataType] - 如果设为 json,会尝试对返回的数据做一次 JSON.parse
84
+ * @prop {Object} [options.header = config.header] - 请求header
85
+ * @prop {Object} [options.method = config.method] - 请求方法
86
+ * @returns {Promise<unknown>}
87
+ */
88
+ request(config = {}) {
89
+ return this.middleware(config)
90
+ }
91
+
92
+ get(url, options = {}) {
93
+ return this.middleware({
94
+ url,
95
+ method: 'GET',
96
+ ...options
97
+ })
98
+ }
99
+
100
+ post(url, data, options = {}) {
101
+ return this.middleware({
102
+ url,
103
+ data,
104
+ method: 'POST',
105
+ ...options
106
+ })
107
+ }
108
+
109
+ // #ifndef MP-ALIPAY
110
+ put(url, data, options = {}) {
111
+ return this.middleware({
112
+ url,
113
+ data,
114
+ method: 'PUT',
115
+ ...options
116
+ })
117
+ }
118
+
119
+ // #endif
120
+
121
+ // #ifdef APP-PLUS || H5 || MP-WEIXIN || MP-BAIDU
122
+ delete(url, data, options = {}) {
123
+ return this.middleware({
124
+ url,
125
+ data,
126
+ method: 'DELETE',
127
+ ...options
128
+ })
129
+ }
130
+
131
+ // #endif
132
+
133
+ // #ifdef H5 || MP-WEIXIN
134
+ connect(url, data, options = {}) {
135
+ return this.middleware({
136
+ url,
137
+ data,
138
+ method: 'CONNECT',
139
+ ...options
140
+ })
141
+ }
142
+
143
+ // #endif
144
+
145
+ // #ifdef H5 || MP-WEIXIN || MP-BAIDU
146
+ head(url, data, options = {}) {
147
+ return this.middleware({
148
+ url,
149
+ data,
150
+ method: 'HEAD',
151
+ ...options
152
+ })
153
+ }
154
+
155
+ // #endif
156
+
157
+ // #ifdef APP-PLUS || H5 || MP-WEIXIN || MP-BAIDU
158
+ options(url, data, options = {}) {
159
+ return this.middleware({
160
+ url,
161
+ data,
162
+ method: 'OPTIONS',
163
+ ...options
164
+ })
165
+ }
166
+
167
+ // #endif
168
+
169
+ // #ifdef H5 || MP-WEIXIN
170
+ trace(url, data, options = {}) {
171
+ return this.middleware({
172
+ url,
173
+ data,
174
+ method: 'TRACE',
175
+ ...options
176
+ })
177
+ }
178
+
179
+ // #endif
180
+
181
+ upload(url, config = {}) {
182
+ config.url = url
183
+ config.method = 'UPLOAD'
184
+ return this.middleware(config)
185
+ }
186
+
187
+ download(url, config = {}) {
188
+ config.url = url
189
+ config.method = 'DOWNLOAD'
190
+ return this.middleware(config)
191
+ }
192
+ }
193
+
194
+ /**
195
+ * setConfig回调
196
+ * @return {Object} - 返回操作后的config
197
+ * @callback Request~setConfigCallback
198
+ * @param {Object} config - 全局默认config
199
+ */
@@ -2,6 +2,7 @@ import { defineMixin } from '../vue';
2
2
 
3
3
  export const mpMixin = defineMixin({
4
4
  // #ifdef MP-WEIXIN
5
+ // 将自定义节点设置成虚拟的(去掉自定义组件包裹层),更加接近Vue组件的表现,能更好的使用flex属性
5
6
  // 将自定义节点设置成虚拟的,更加接近Vue组件的表现,能更好的使用flex属性
6
7
  options: {
7
8
  virtualHost: true
@@ -4,6 +4,20 @@ export const openType = defineMixin({
4
4
  props: {
5
5
  openType: String
6
6
  },
7
+ // emits: [
8
+ // 'getphonenumber',
9
+ // 'getuserinfo',
10
+ // 'error',
11
+ // 'opensetting',
12
+ // 'launchapp',
13
+ // 'contact',
14
+ // 'chooseavatar',
15
+ // 'addgroupapp',
16
+ // 'chooseaddress',
17
+ // 'subscribe',
18
+ // 'login',
19
+ // 'im'
20
+ // ],
7
21
  methods: {
8
22
  onGetUserInfo(event) {
9
23
  this.$emit('getuserinfo', event.detail);
@@ -23,5 +37,24 @@ export const openType = defineMixin({
23
37
  onOpenSetting(event) {
24
38
  this.$emit('opensetting', event.detail);
25
39
  }
40
+
41
+ // onChooseavatar(event) {
42
+ // this.$emit('chooseavatar', event.detail);
43
+ // },
44
+ // onAddgroupapp(event) {
45
+ // this.$emit('addgroupapp', event.detail);
46
+ // },
47
+ // onChooseaddress(event) {
48
+ // this.$emit('chooseaddress', event.detail);
49
+ // },
50
+ // onSubscribe(event) {
51
+ // this.$emit('subscribe', event.detail);
52
+ // },
53
+ // onLogin(event) {
54
+ // this.$emit('login', event.detail);
55
+ // },
56
+ // onIm(event) {
57
+ // this.$emit('im', event.detail);
58
+ // }
26
59
  }
27
60
  });