@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.
- package/package.json +1 -1
- package/plugins/luch-request/adapters/index.js +131 -0
- package/plugins/luch-request/core/InterceptorManager.js +50 -0
- package/plugins/luch-request/core/Request.js +199 -0
- package/plugins/luch-request/core/buildFullPath.js +20 -0
- package/plugins/luch-request/core/defaults.js +32 -0
- package/plugins/luch-request/core/dispatchRequest.js +5 -0
- package/plugins/luch-request/core/mergeConfig.js +125 -0
- package/plugins/luch-request/core/settle.js +16 -0
- package/plugins/luch-request/helpers/buildURL.js +71 -0
- package/plugins/luch-request/helpers/combineURLs.js +12 -0
- package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/plugins/luch-request/index.d.ts +197 -0
- package/plugins/luch-request/index.js +2 -0
- package/plugins/luch-request/readme.md +3 -0
- package/plugins/luch-request/utils/clone.js +264 -0
- package/plugins/luch-request/utils.js +131 -0
- package/plugins/request.js +2 -2
- package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
- package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
- package/ui-fireui/fui-alert/fui-alert.vue +141 -0
- package/ui-fireui/fui-badge/fui-badge.vue +158 -0
- package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
- package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
- package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
- package/ui-fireui/fui-button/fui-button.vue +424 -0
- package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
- package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
- package/ui-fireui/fui-card/fui-card.vue +231 -0
- package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
- package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
- package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
- package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
- package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
- package/ui-fireui/fui-divider/fui-divider.vue +118 -0
- package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
- package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
- package/ui-fireui/fui-fab/fui-fab.vue +284 -0
- package/ui-fireui/fui-footer/fui-footer.vue +131 -0
- package/ui-fireui/fui-grid/fui-grid.vue +42 -0
- package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
- package/ui-fireui/fui-icon/fui-icon.vue +820 -0
- package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
- package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
- package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
- package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
- package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
- package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
- package/ui-fireui/fui-loading/fui-loading.vue +78 -0
- package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
- package/ui-fireui/fui-modal/fui-modal.vue +392 -0
- package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
- package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
- package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
- package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
- package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
- package/ui-fireui/fui-rate/fui-rate.vue +167 -0
- package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
- package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
- package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
- package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
- package/ui-fireui/fui-steps/fui-steps.vue +214 -0
- package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
- package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
- package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
- package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
- package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
- package/ui-fireui/fui-tag/fui-tag.vue +374 -0
- package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
- package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
- package/ui-fireui/fui-tips/fui-tips.vue +161 -0
- package/ui-fireui/fui-toast/fui-toast.vue +117 -0
- package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
- package/ui-fireui/fui-upload/fui-upload.vue +446 -0
- package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
- package/uview-plus/README.md +1 -1
- package/uview-plus/changelog-wu-tool.md +21 -0
- package/uview-plus/changelog-wu.md +91 -0
- package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
- package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
- package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
- package/uview-plus/components/u-app-update/_doc/package.json +89 -0
- package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/config.js +120 -0
- package/uview-plus/components/u-app-update/img/act.png +0 -0
- package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
- package/uview-plus/components/u-app-update/img/close.png +0 -0
- package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
- package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
- package/uview-plus/components/u-app-update/pages/index.vue +8 -0
- package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
- package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
- package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
- package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
- package/uview-plus/components/u-button-wu/vue.scss +81 -0
- package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
- package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
- package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
- package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
- package/uview-plus/components/u-calendar-wu/props.js +166 -0
- package/uview-plus/components/u-calendar-wu/style.css +196 -0
- package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
- package/uview-plus/components/u-calendar-wu/util.js +552 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
- package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
- package/uview-plus/components/u-cell/_doc/package.json +89 -0
- package/uview-plus/components/u-cell/_doc/readme.md +25 -0
- package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
- package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
- package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
- package/uview-plus/components/u-code/_doc/changelog.md +6 -0
- package/uview-plus/components/u-code/_doc/package.json +86 -0
- package/uview-plus/components/u-code/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
- package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
- package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
- package/uview-plus/components/u-empty/u-empty.vue +27 -1
- package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
- package/uview-plus/components/u-gap/_doc/package.json +86 -0
- package/uview-plus/components/u-gap/_doc/readme.md +22 -0
- package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
- package/uview-plus/components/u-icon/_doc/package.json +85 -0
- package/uview-plus/components/u-icon/_doc/readme.md +10 -0
- package/uview-plus/components/u-icon/icon.js +23 -25
- package/uview-plus/components/u-icon/icons.js +213 -213
- package/uview-plus/components/u-icon/style.css +3 -3
- package/uview-plus/components/u-icon/u-icon2.vue +149 -0
- package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
- package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
- package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
- package/uview-plus/components/u-image-wu/props.js +94 -0
- package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
- package/uview-plus/components/u-input/_doc/changelog.md +6 -0
- package/uview-plus/components/u-input/_doc/package.json +88 -0
- package/uview-plus/components/u-input/_doc/readme.md +16 -0
- package/uview-plus/components/u-line/_doc/changelog.md +8 -0
- package/uview-plus/components/u-line/_doc/package.json +86 -0
- package/uview-plus/components/u-line/_doc/readme.md +16 -0
- package/uview-plus/components/u-link/_doc/changelog.md +8 -0
- package/uview-plus/components/u-link/_doc/package.json +86 -0
- package/uview-plus/components/u-link/_doc/readme.md +20 -0
- package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
- package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
- package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
- package/uview-plus/components/u-loading-icon/props.js +1 -1
- package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
- package/uview-plus/components/u-navbar/_doc/package.json +89 -0
- package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
- package/uview-plus/components/u-navbar-wu/props.js +102 -0
- package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
- package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
- package/uview-plus/components/u-number-box/_doc/package.json +88 -0
- package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
- package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
- package/uview-plus/components/u-overlay/_doc/package.json +88 -0
- package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
- package/uview-plus/components/u-popup/_doc/package.json +92 -0
- package/uview-plus/components/u-popup/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup-wu/keypress.js +45 -0
- package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
- package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
- package/uview-plus/components/u-radio/_doc/package.json +88 -0
- package/uview-plus/components/u-radio/_doc/readme.md +25 -0
- package/uview-plus/components/u-row/_doc/changelog.md +8 -0
- package/uview-plus/components/u-row/_doc/package.json +86 -0
- package/uview-plus/components/u-row/_doc/readme.md +16 -0
- package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
- package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
- package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
- package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
- package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/props.js +86 -0
- package/uview-plus/components/u-sku-wu/style.css +271 -0
- package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
- package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
- package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
- package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
- package/uview-plus/components/u-text/_doc/changelog.md +10 -0
- package/uview-plus/components/u-text/_doc/package.json +89 -0
- package/uview-plus/components/u-text/_doc/readme.md +20 -0
- package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
- package/uview-plus/components/u-textarea/_doc/package.json +86 -0
- package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
- package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
- package/uview-plus/components/u-transition/_doc/package.json +86 -0
- package/uview-plus/components/u-transition/_doc/readme.md +16 -0
- package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
- package/uview-plus/components/u-transition-wu/props.js +32 -0
- package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
- package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
- package/uview-plus/index.js +107 -94
- package/uview-plus/libs/config/config.js +46 -48
- package/uview-plus/libs/css/color.scss +32 -311
- package/uview-plus/libs/css/components-wu.scss +30 -0
- package/uview-plus/libs/css/vue.scss +10 -10
- package/uview-plus/libs/function/calc.js +61 -55
- package/uview-plus/libs/function/cc.js +66 -0
- package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
- package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-convert/README.md +68 -0
- package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
- package/uview-plus/libs/function/color/color-convert/index.js +81 -0
- package/uview-plus/libs/function/color/color-convert/package.json +48 -0
- package/uview-plus/libs/function/color/color-convert/route.js +97 -0
- package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
- package/uview-plus/libs/function/color/color-name/README.md +11 -0
- package/uview-plus/libs/function/color/color-name/index.js +152 -0
- package/uview-plus/libs/function/color/color-name/package.json +28 -0
- package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-string/README.md +62 -0
- package/uview-plus/libs/function/color/color-string/index.js +244 -0
- package/uview-plus/libs/function/color/color-string/package.json +39 -0
- package/uview-plus/libs/function/color/color.js +496 -0
- package/uview-plus/libs/function/color/index.js +158 -0
- package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
- package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
- package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
- package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
- package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
- package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
- package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
- package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
- package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
- package/uview-plus/libs/function/colorGradient.js +108 -106
- package/uview-plus/libs/function/debounce.js +17 -17
- package/uview-plus/libs/function/digit.js +1 -3
- package/uview-plus/libs/function/http.js +3 -3
- package/uview-plus/libs/function/index-wu.js +231 -0
- package/uview-plus/libs/function/index.js +579 -566
- package/uview-plus/libs/function/platform.js +18 -18
- package/uview-plus/libs/function/test.js +135 -137
- package/uview-plus/libs/function/throttle.js +17 -17
- package/uview-plus/libs/luch-request/core/Request.js +199 -199
- package/uview-plus/libs/mixin/mpMixin.js +1 -0
- package/uview-plus/libs/mixin/openType.js +33 -0
- package/uview-plus/libs/util/async-validator.js +1343 -1343
- package/uview-plus/libs/util/dayjs.js +404 -0
- package/uview-plus/libs/util/route.js +101 -105
- package/uview-plus/package-wu-tool.json +84 -0
- package/uview-plus/package-wu.json +112 -0
- package/uview-plus/package.json +106 -95
- package/uview-plus/readme-wu.md +148 -0
- package/uview-ui/index.js +51 -52
- package/plugins/uni-upgrade.js +0 -294
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-image",
|
|
3
|
+
"displayName": "u-image 预加载和高性能懒加载(支持app、weixin、h5)图片,支持超大图片",
|
|
4
|
+
"version": "1.0.8",
|
|
5
|
+
"description": "支持图片懒加载,预加载,加载后的过渡效果,加载中与加载失败的占位符等",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-image",
|
|
8
|
+
"图片懒加载",
|
|
9
|
+
"图片预加载",
|
|
10
|
+
"u-ui"
|
|
11
|
+
],
|
|
12
|
+
"repository": "",
|
|
13
|
+
"engines": {
|
|
14
|
+
"HBuilderX": "^3.4.17"
|
|
15
|
+
},
|
|
16
|
+
"dcloudext": {
|
|
17
|
+
"type": "component-vue",
|
|
18
|
+
"sale": {
|
|
19
|
+
"regular": {
|
|
20
|
+
"price": "0.00"
|
|
21
|
+
},
|
|
22
|
+
"sourcecode": {
|
|
23
|
+
"price": "0.00"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"contact": {
|
|
27
|
+
"qq": ""
|
|
28
|
+
},
|
|
29
|
+
"declaration": {
|
|
30
|
+
"ads": "无",
|
|
31
|
+
"data": "插件不采集任何数据",
|
|
32
|
+
"permissions": "无"
|
|
33
|
+
},
|
|
34
|
+
"npmurl": ""
|
|
35
|
+
},
|
|
36
|
+
"uni_modules": {
|
|
37
|
+
"dependencies": [
|
|
38
|
+
"u-transition",
|
|
39
|
+
"u-icon"
|
|
40
|
+
],
|
|
41
|
+
"encrypt": [],
|
|
42
|
+
"platforms": {
|
|
43
|
+
"cloud": {
|
|
44
|
+
"tcb": "y",
|
|
45
|
+
"aliyun": "y",
|
|
46
|
+
"alipay": "n"
|
|
47
|
+
},
|
|
48
|
+
"client": {
|
|
49
|
+
"Vue": {
|
|
50
|
+
"vue2": "y",
|
|
51
|
+
"vue3": "y"
|
|
52
|
+
},
|
|
53
|
+
"App": {
|
|
54
|
+
"app-vue": "y",
|
|
55
|
+
"app-nvue": "y"
|
|
56
|
+
},
|
|
57
|
+
"H5-mobile": {
|
|
58
|
+
"Safari": "y",
|
|
59
|
+
"Android Browser": "y",
|
|
60
|
+
"微信浏览器(Android)": "y",
|
|
61
|
+
"QQ浏览器(Android)": "y"
|
|
62
|
+
},
|
|
63
|
+
"H5-pc": {
|
|
64
|
+
"Chrome": "y",
|
|
65
|
+
"IE": "y",
|
|
66
|
+
"Edge": "y",
|
|
67
|
+
"Firefox": "y",
|
|
68
|
+
"Safari": "y"
|
|
69
|
+
},
|
|
70
|
+
"小程序": {
|
|
71
|
+
"微信": "y",
|
|
72
|
+
"阿里": "y",
|
|
73
|
+
"百度": "y",
|
|
74
|
+
"字节跳动": "y",
|
|
75
|
+
"QQ": "y",
|
|
76
|
+
"钉钉": "n",
|
|
77
|
+
"快手": "n",
|
|
78
|
+
"飞书": "n",
|
|
79
|
+
"京东": "n"
|
|
80
|
+
},
|
|
81
|
+
"快应用": {
|
|
82
|
+
"华为": "n",
|
|
83
|
+
"联盟": "n"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
## u-image 图片
|
|
2
|
+
|
|
3
|
+
> **组件名:u-image**
|
|
4
|
+
|
|
5
|
+
支持图片懒加载(支持app、weixin、h5),预加载,加载后的过渡效果,加载中与加载失败的占位符等。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/image.html)
|
|
8
|
+
|
|
9
|
+
## [更多组件, 请查看 `u-ui` 组件库](https://ext.dcloud.net.cn/plugin?name=u--ui)
|
|
10
|
+
|
|
11
|
+
**如使用过程中有任何问题,或者您对u-ui有一些好的建议。<br>欢迎加入 [u-ui 交流群](https://ijry.github.io/uview-plus/components/qqFeedBack.html)**
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
props: {
|
|
3
|
+
// 图片地址
|
|
4
|
+
src: {
|
|
5
|
+
type: String,
|
|
6
|
+
default: ''
|
|
7
|
+
},
|
|
8
|
+
// 裁剪模式
|
|
9
|
+
mode: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'aspectFill'
|
|
12
|
+
},
|
|
13
|
+
// 宽度,单位任意
|
|
14
|
+
width: {
|
|
15
|
+
type: [String, Number],
|
|
16
|
+
default: 300
|
|
17
|
+
},
|
|
18
|
+
// 高度,单位任意
|
|
19
|
+
height: {
|
|
20
|
+
type: [String, Number],
|
|
21
|
+
default: 255
|
|
22
|
+
},
|
|
23
|
+
// 图片形状,circle-圆形,square-方形
|
|
24
|
+
shape: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: 'square'
|
|
27
|
+
},
|
|
28
|
+
// 圆角,单位任意
|
|
29
|
+
radius: {
|
|
30
|
+
type: [String, Number],
|
|
31
|
+
default: 0
|
|
32
|
+
},
|
|
33
|
+
// 是否懒加载,微信小程序、App、百度小程序、字节跳动小程序
|
|
34
|
+
lazyLoad: {
|
|
35
|
+
type: Boolean,
|
|
36
|
+
default: true
|
|
37
|
+
},
|
|
38
|
+
// 懒加载根边距 设置负数则是进入视图指定距离后显示 正数则是离视图多远时显示
|
|
39
|
+
lazyLoadRootMargin: {
|
|
40
|
+
type: [String, Number],
|
|
41
|
+
default: -5
|
|
42
|
+
},
|
|
43
|
+
// 加载中状态的最小显示时间
|
|
44
|
+
minLoadginShowTime: {
|
|
45
|
+
type: [String, Number],
|
|
46
|
+
default: 30
|
|
47
|
+
},
|
|
48
|
+
// 开启长按图片显示识别微信小程序码菜单
|
|
49
|
+
showMenuByLongpress: {
|
|
50
|
+
type: Boolean,
|
|
51
|
+
default: true
|
|
52
|
+
},
|
|
53
|
+
// 加载中的图标,或者小图片
|
|
54
|
+
loadingIcon: {
|
|
55
|
+
type: String,
|
|
56
|
+
default: 'photo'
|
|
57
|
+
},
|
|
58
|
+
// 加载失败的图标,或者小图片
|
|
59
|
+
errorIcon: {
|
|
60
|
+
type: String,
|
|
61
|
+
default: 'info-circle'
|
|
62
|
+
},
|
|
63
|
+
// 是否显示加载中的图标或者自定义的slot
|
|
64
|
+
showLoading: {
|
|
65
|
+
type: Boolean,
|
|
66
|
+
default: true
|
|
67
|
+
},
|
|
68
|
+
// 是否显示加载错误的图标或者自定义的slot
|
|
69
|
+
showError: {
|
|
70
|
+
type: Boolean,
|
|
71
|
+
default: true
|
|
72
|
+
},
|
|
73
|
+
// 是否需要淡入效果
|
|
74
|
+
fade: {
|
|
75
|
+
type: Boolean,
|
|
76
|
+
default: true
|
|
77
|
+
},
|
|
78
|
+
// 只支持网络资源,只对微信小程序有效
|
|
79
|
+
webp: {
|
|
80
|
+
type: Boolean,
|
|
81
|
+
default: false
|
|
82
|
+
},
|
|
83
|
+
// 过渡时间,单位ms
|
|
84
|
+
duration: {
|
|
85
|
+
type: [String, Number],
|
|
86
|
+
default: 500
|
|
87
|
+
},
|
|
88
|
+
// 背景颜色,用于深色页面加载图片时,为了和背景色融合
|
|
89
|
+
bgColor: {
|
|
90
|
+
type: String,
|
|
91
|
+
default: '#f3f4f6'
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
};
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<u-transition mode="fade" :custom-style="wrapStyle" :show="show" :duration="fade ? 1000 : 0">
|
|
3
|
+
<view class="u-image" @tap="onClick" :style="[wrapStyle, backgroundStyle]">
|
|
4
|
+
<image
|
|
5
|
+
v-if="!isError && loadingImage"
|
|
6
|
+
:src="src"
|
|
7
|
+
:mode="mode"
|
|
8
|
+
@error="onErrorHandler"
|
|
9
|
+
@load="onLoadHandler"
|
|
10
|
+
:show-menu-by-longpress="showMenuByLongpress"
|
|
11
|
+
class="u-image__image"
|
|
12
|
+
:style="{
|
|
13
|
+
borderRadius: shape == 'circle' ? '10000px' : addUnit(radius),
|
|
14
|
+
width: addUnit(width),
|
|
15
|
+
height: addUnit(height)
|
|
16
|
+
}"
|
|
17
|
+
></image>
|
|
18
|
+
<view
|
|
19
|
+
v-if="showLoading && loading"
|
|
20
|
+
class="u-image__loading"
|
|
21
|
+
:style="{
|
|
22
|
+
borderRadius: shape == 'circle' ? '50%' : addUnit(radius),
|
|
23
|
+
backgroundColor: this.bgColor,
|
|
24
|
+
width: addUnit(width),
|
|
25
|
+
height: addUnit(height)
|
|
26
|
+
}"
|
|
27
|
+
>
|
|
28
|
+
<slot name="loading">
|
|
29
|
+
<u-icon :name="loadingIcon" :width="width" :height="height"></u-icon>
|
|
30
|
+
</slot>
|
|
31
|
+
</view>
|
|
32
|
+
<view
|
|
33
|
+
v-if="showError && isError && !loading"
|
|
34
|
+
class="u-image__error"
|
|
35
|
+
:style="{
|
|
36
|
+
borderRadius: shape == 'circle' ? '50%' : addUnit(radius),
|
|
37
|
+
width: addUnit(width),
|
|
38
|
+
height: addUnit(height)
|
|
39
|
+
}"
|
|
40
|
+
>
|
|
41
|
+
<slot name="error">
|
|
42
|
+
<u-icon :name="errorIcon" :width="width" :height="height"></u-icon>
|
|
43
|
+
</slot>
|
|
44
|
+
</view>
|
|
45
|
+
</view>
|
|
46
|
+
</u-transition>
|
|
47
|
+
</template>
|
|
48
|
+
|
|
49
|
+
<script>
|
|
50
|
+
import { mpMixin } from '../../libs/mixin/mpMixin';
|
|
51
|
+
import { mixin } from '../../libs/mixin/mixin';
|
|
52
|
+
import props from './props.js';
|
|
53
|
+
/**
|
|
54
|
+
* Image 图片
|
|
55
|
+
* @description 此组件为uni-app的image组件的加强版,在继承了原有功能外,还支持淡入动画、加载中、加载失败提示、圆角值和形状等。
|
|
56
|
+
* @tutorial https://ijry.github.io/uview-plus/components/image.html
|
|
57
|
+
* @property {String} src 图片地址
|
|
58
|
+
* @property {String} mode 裁剪模式,见官网说明 (默认 'aspectFill' )
|
|
59
|
+
* @property {String | Number} width 宽度,单位任意,如果为数值,则为px单位 (默认 '300' )
|
|
60
|
+
* @property {String | Number} height 高度,单位任意,如果为数值,则为px单位 (默认 '225' )
|
|
61
|
+
* @property {String} shape 图片形状,circle-圆形,square-方形 (默认 'square' )
|
|
62
|
+
* @property {String | Number} radius 圆角值,单位任意,如果为数值,则为px单位 (默认 0 )
|
|
63
|
+
* @property {Boolean} lazyLoad 是否懒加载,仅微信小程序、App、百度小程序、字节跳动小程序有效 (默认 true )
|
|
64
|
+
* @property {String | Number} lazyLoadRootMargin 懒加载根边距 设置负数则是进入视图指定距离后显示 正数则是离视图多远时显示
|
|
65
|
+
* @property {String | Number} minLoadginShowTime 加载中状态的最小显示时间
|
|
66
|
+
* @property {Boolean} showMenuByLongpress 是否开启长按图片显示识别小程序码菜单,仅微信小程序有效 (默认 true )
|
|
67
|
+
* @property {String} loadingIcon 加载中的图标,或者小图片 (默认 'photo' )
|
|
68
|
+
* @property {String} errorIcon 加载失败的图标,或者小图片 (默认 'error-circle' )
|
|
69
|
+
* @property {Boolean} showLoading 是否显示加载中的图标或者自定义的slot (默认 true )
|
|
70
|
+
* @property {Boolean} showError 是否显示加载错误的图标或者自定义的slot (默认 true )
|
|
71
|
+
* @property {Boolean} fade 是否需要淡入效果 (默认 true )
|
|
72
|
+
* @property {Boolean} webp 只支持网络资源,只对微信小程序有效 (默认 false )
|
|
73
|
+
* @property {String | Number} duration 搭配fade参数的过渡时间,单位ms (默认 500 )
|
|
74
|
+
* @property {String} bgColor 背景颜色,用于深色页面加载图片时,为了和背景色融合 (默认 '#f3f4f6' )
|
|
75
|
+
* @property {Object} customStyle 定义需要用到的外部样式
|
|
76
|
+
* @event {Function} click 点击图片时触发
|
|
77
|
+
* @event {Function} error 图片加载失败时触发
|
|
78
|
+
* @event {Function} load 图片加载成功时触发
|
|
79
|
+
* @example <u-image width="100%" height="300px" :src="src"></u-image>
|
|
80
|
+
*/
|
|
81
|
+
export default {
|
|
82
|
+
name: 'u-image',
|
|
83
|
+
emits: ['click', 'error', 'load'],
|
|
84
|
+
mixins: [mpMixin, mixin, props],
|
|
85
|
+
data() {
|
|
86
|
+
return {
|
|
87
|
+
// 图片是否加载错误,如果是,则显示错误占位图
|
|
88
|
+
isError: false,
|
|
89
|
+
// 初始化组件时,默认为加载中状态
|
|
90
|
+
loading: true,
|
|
91
|
+
// 不透明度,为了实现淡入淡出的效果
|
|
92
|
+
opacity: 1,
|
|
93
|
+
// 过渡时间,因为props的值无法修改,故需要一个中间值
|
|
94
|
+
durationTime: this.duration,
|
|
95
|
+
// 图片加载完成时,去掉背景颜色,因为如果是png图片,就会显示灰色的背景
|
|
96
|
+
backgroundStyle: {},
|
|
97
|
+
// 用于fade模式的控制组件显示与否
|
|
98
|
+
show: false,
|
|
99
|
+
// 是否加载image 用于控制懒加载
|
|
100
|
+
loadingImage: false
|
|
101
|
+
};
|
|
102
|
+
},
|
|
103
|
+
watch: {
|
|
104
|
+
src: {
|
|
105
|
+
immediate: true,
|
|
106
|
+
handler(n) {
|
|
107
|
+
if (!n) {
|
|
108
|
+
// 如果传入null或者'',或者false,或者undefined,标记为错误状态
|
|
109
|
+
this.isError = true;
|
|
110
|
+
} else {
|
|
111
|
+
this.isError = false;
|
|
112
|
+
this.loading = true;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
computed: {
|
|
118
|
+
wrapStyle() {
|
|
119
|
+
let style = {};
|
|
120
|
+
// 通过调用addUnit()方法,如果有单位,如百分比,px单位等,直接返回,如果是纯粹的数值,则加上rpx单位
|
|
121
|
+
style.width = addUnit(this.width);
|
|
122
|
+
style.height = addUnit(this.height);
|
|
123
|
+
// 如果是显示圆形,设置一个很多的半径值即可
|
|
124
|
+
style.borderRadius = this.shape == 'circle' ? '10000px' : addUnit(this.radius);
|
|
125
|
+
// 如果设置圆角,必须要有hidden,否则可能圆角无效
|
|
126
|
+
style.overflow = style.borderRadius > 0 ? 'hidden' : 'visible';
|
|
127
|
+
// if (this.fade) {
|
|
128
|
+
// style.opacity = this.opacity
|
|
129
|
+
// // nvue下,这几个属性必须要分开写
|
|
130
|
+
// style.transitionDuration = `${this.durationTime}ms`
|
|
131
|
+
// style.transitionTimingFunction = 'ease-in-out'
|
|
132
|
+
// style.transitionProperty = 'opacity'
|
|
133
|
+
// }
|
|
134
|
+
return deepMerge(style, addStyle(this.customStyle));
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
mounted() {
|
|
138
|
+
this.show = true;
|
|
139
|
+
if (this.lazyLoad) {
|
|
140
|
+
// #ifndef APP-NVUE
|
|
141
|
+
this.IntersectionObserver(this, '.u-image', (res, stop) => {
|
|
142
|
+
if (res.intersectionRatio > 0) {
|
|
143
|
+
this.loadingImage = true;
|
|
144
|
+
stop();
|
|
145
|
+
}
|
|
146
|
+
});
|
|
147
|
+
// #endif
|
|
148
|
+
// #ifdef APP-NVUE
|
|
149
|
+
this.loadingImage = true;
|
|
150
|
+
// #endif
|
|
151
|
+
} else {
|
|
152
|
+
this.loadingImage = true;
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
methods: {
|
|
156
|
+
// 查询节点布局是否相交
|
|
157
|
+
IntersectionObserver(_this, nodeName, callback) {
|
|
158
|
+
this.$nextTick(() => {
|
|
159
|
+
// #ifndef APP-NVUE || H5
|
|
160
|
+
let intersectionObserver = uni.createIntersectionObserver(_this);
|
|
161
|
+
intersectionObserver
|
|
162
|
+
.relativeToViewport({
|
|
163
|
+
bottom: Number(this.lazyLoadRootMargin)
|
|
164
|
+
})
|
|
165
|
+
.observe(nodeName, (res) => {
|
|
166
|
+
callback(res, () => intersectionObserver.disconnect());
|
|
167
|
+
});
|
|
168
|
+
// #endif
|
|
169
|
+
// #ifdef H5
|
|
170
|
+
if (!window.__wu_observedComponents) window.__wu_observedComponents = new Map(); // 用于存储元素及其对应的回调函数
|
|
171
|
+
if (!window.__wu_IntersectionObserver) {
|
|
172
|
+
window.__wu_IntersectionObserver = new IntersectionObserver(
|
|
173
|
+
(entries) => {
|
|
174
|
+
entries.forEach((entry) => {
|
|
175
|
+
const callback = window.__wu_observedComponents.get(entry.target);
|
|
176
|
+
if (callback) {
|
|
177
|
+
callback(entry, () => {
|
|
178
|
+
window.__wu_IntersectionObserver.unobserve(entry.target);
|
|
179
|
+
window.__wu_observedComponents.delete(entry.target);
|
|
180
|
+
});
|
|
181
|
+
}
|
|
182
|
+
});
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
root: null,
|
|
186
|
+
rootMargin: Number(this.lazyLoadRootMargin) + 'px',
|
|
187
|
+
threshold: 0
|
|
188
|
+
}
|
|
189
|
+
);
|
|
190
|
+
}
|
|
191
|
+
window.__wu_observedComponents.set(_this.$el, callback);
|
|
192
|
+
window.__wu_IntersectionObserver.observe(_this.$el);
|
|
193
|
+
// #endif
|
|
194
|
+
});
|
|
195
|
+
},
|
|
196
|
+
// 点击图片
|
|
197
|
+
onClick() {
|
|
198
|
+
this.$emit('click');
|
|
199
|
+
},
|
|
200
|
+
// 图片加载失败
|
|
201
|
+
onErrorHandler(err) {
|
|
202
|
+
this.loading = false;
|
|
203
|
+
this.isError = true;
|
|
204
|
+
this.$emit('error', err);
|
|
205
|
+
},
|
|
206
|
+
// 图片加载完成,标记loading结束
|
|
207
|
+
onLoadHandler(event) {
|
|
208
|
+
setTimeout(() => {
|
|
209
|
+
this.loading = false;
|
|
210
|
+
}, this.minLoadginShowTime);
|
|
211
|
+
this.isError = false;
|
|
212
|
+
this.$emit('load', event);
|
|
213
|
+
// this.removeBgColor()
|
|
214
|
+
// 如果不需要动画效果,就不执行下方代码,同时移除加载时的背景颜色
|
|
215
|
+
// 否则无需fade效果时,png图片依然能看到下方的背景色
|
|
216
|
+
// if (!this.fade) return this.removeBgColor();
|
|
217
|
+
// // 原来opacity为1(不透明,是为了显示占位图),改成0(透明,意味着该元素显示的是背景颜色,默认的灰色),再改成1,是为了获得过渡效果
|
|
218
|
+
// this.opacity = 0;
|
|
219
|
+
// // 这里设置为0,是为了图片展示到背景全透明这个过程时间为0,延时之后延时之后重新设置为duration,是为了获得背景透明(灰色)
|
|
220
|
+
// // 到图片展示的过程中的淡入效果
|
|
221
|
+
// this.durationTime = 0;
|
|
222
|
+
// // 延时50ms,否则在浏览器H5,过渡效果无效
|
|
223
|
+
// setTimeout(() => {
|
|
224
|
+
// this.durationTime = this.duration;
|
|
225
|
+
// this.opacity = 1;
|
|
226
|
+
// setTimeout(() => {
|
|
227
|
+
// this.removeBgColor();
|
|
228
|
+
// }, this.durationTime);
|
|
229
|
+
// }, 50);
|
|
230
|
+
},
|
|
231
|
+
// 移除图片的背景色
|
|
232
|
+
removeBgColor() {
|
|
233
|
+
// 淡入动画过渡完成后,将背景设置为透明色,否则png图片会看到灰色的背景
|
|
234
|
+
this.backgroundStyle = {
|
|
235
|
+
background: 'transparent'
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
};
|
|
240
|
+
</script>
|
|
241
|
+
<style scoped>
|
|
242
|
+
@import './style.css';
|
|
243
|
+
</style>
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-input",
|
|
3
|
+
"displayName": "u-input 输入框,全端兼容,无论平台,一致体验",
|
|
4
|
+
"version": "1.0.2",
|
|
5
|
+
"description": "此组件为一个输入框,默认没有边框和样式,是专门为配合表单组件u-form而设计的,利用它可以快速实现表单验证,输入内容,下拉选择等功能。",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-ui",
|
|
8
|
+
"wuui",
|
|
9
|
+
"u-input",
|
|
10
|
+
"input",
|
|
11
|
+
"输入框"
|
|
12
|
+
],
|
|
13
|
+
"repository": "",
|
|
14
|
+
"engines": {
|
|
15
|
+
"HBuilderX": "^3.4.15"
|
|
16
|
+
},
|
|
17
|
+
"dcloudext": {
|
|
18
|
+
"type": "component-vue",
|
|
19
|
+
"sale": {
|
|
20
|
+
"regular": {
|
|
21
|
+
"price": "0.00"
|
|
22
|
+
},
|
|
23
|
+
"sourcecode": {
|
|
24
|
+
"price": "0.00"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"contact": {
|
|
28
|
+
"qq": ""
|
|
29
|
+
},
|
|
30
|
+
"declaration": {
|
|
31
|
+
"ads": "无",
|
|
32
|
+
"data": "插件不采集任何数据",
|
|
33
|
+
"permissions": "无"
|
|
34
|
+
},
|
|
35
|
+
"npmurl": ""
|
|
36
|
+
},
|
|
37
|
+
"uni_modules": {
|
|
38
|
+
"dependencies": [
|
|
39
|
+
"u-icon"
|
|
40
|
+
],
|
|
41
|
+
"encrypt": [],
|
|
42
|
+
"platforms": {
|
|
43
|
+
"cloud": {
|
|
44
|
+
"tcb": "y",
|
|
45
|
+
"aliyun": "y",
|
|
46
|
+
"alipay": "n"
|
|
47
|
+
},
|
|
48
|
+
"client": {
|
|
49
|
+
"Vue": {
|
|
50
|
+
"vue2": "y",
|
|
51
|
+
"vue3": "y"
|
|
52
|
+
},
|
|
53
|
+
"App": {
|
|
54
|
+
"app-vue": "y",
|
|
55
|
+
"app-nvue": "y"
|
|
56
|
+
},
|
|
57
|
+
"H5-mobile": {
|
|
58
|
+
"Safari": "y",
|
|
59
|
+
"Android Browser": "y",
|
|
60
|
+
"微信浏览器(Android)": "y",
|
|
61
|
+
"QQ浏览器(Android)": "y"
|
|
62
|
+
},
|
|
63
|
+
"H5-pc": {
|
|
64
|
+
"Chrome": "y",
|
|
65
|
+
"IE": "y",
|
|
66
|
+
"Edge": "y",
|
|
67
|
+
"Firefox": "y",
|
|
68
|
+
"Safari": "y"
|
|
69
|
+
},
|
|
70
|
+
"小程序": {
|
|
71
|
+
"微信": "y",
|
|
72
|
+
"阿里": "y",
|
|
73
|
+
"百度": "y",
|
|
74
|
+
"字节跳动": "y",
|
|
75
|
+
"QQ": "y",
|
|
76
|
+
"钉钉": "n",
|
|
77
|
+
"快手": "n",
|
|
78
|
+
"飞书": "n",
|
|
79
|
+
"京东": "n"
|
|
80
|
+
},
|
|
81
|
+
"快应用": {
|
|
82
|
+
"华为": "n",
|
|
83
|
+
"联盟": "n"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## u-input 输入框
|
|
2
|
+
|
|
3
|
+
> **组件名:u-input**
|
|
4
|
+
|
|
5
|
+
此组件为一个输入框,默认没有边框和样式,是专门为配合表单组件 [u-form](https://ext.dcloud.net.cn/plugin?name=u-form) 而设计的,利用它可以快速实现表单验证,输入内容,下拉选择等功能。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/input.html)
|
|
8
|
+
|
|
9
|
+
## [更多组件, 请查看 `u-ui` 组件库](https://ext.dcloud.net.cn/plugin?name=u--ui)
|
|
10
|
+
(请勿下载插件zip)
|
|
11
|
+
|
|
12
|
+
<a href="https://ext.dcloud.net.cn/plugin?name=u--ui">
|
|
13
|
+
<img src="https://wuui.cn/intr.png">
|
|
14
|
+
</a>
|
|
15
|
+
|
|
16
|
+
**如使用过程中有任何问题,或者您对u-ui有一些好的建议。<br>欢迎加入 [u-ui 交流群](https://ijry.github.io/uview-plus/components/qqFeedBack.html)**
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-line",
|
|
3
|
+
"displayName": "u-line 线条,全端兼容,无论平台,一致体验",
|
|
4
|
+
"version": "1.0.3",
|
|
5
|
+
"description": "u-line 用于显示一根线条,用于分隔内容块,有横向和竖向两种模式,且能设置0.5px线条。",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-line",
|
|
8
|
+
"u-ui",
|
|
9
|
+
"wuui",
|
|
10
|
+
"line",
|
|
11
|
+
"线条"
|
|
12
|
+
],
|
|
13
|
+
"repository": "",
|
|
14
|
+
"engines": {
|
|
15
|
+
"HBuilderX": "^3.4.15"
|
|
16
|
+
},
|
|
17
|
+
"dcloudext": {
|
|
18
|
+
"type": "component-vue",
|
|
19
|
+
"sale": {
|
|
20
|
+
"regular": {
|
|
21
|
+
"price": "0.00"
|
|
22
|
+
},
|
|
23
|
+
"sourcecode": {
|
|
24
|
+
"price": "0.00"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"contact": {
|
|
28
|
+
"qq": ""
|
|
29
|
+
},
|
|
30
|
+
"declaration": {
|
|
31
|
+
"ads": "无",
|
|
32
|
+
"data": "插件不采集任何数据",
|
|
33
|
+
"permissions": "无"
|
|
34
|
+
},
|
|
35
|
+
"npmurl": ""
|
|
36
|
+
},
|
|
37
|
+
"uni_modules": {
|
|
38
|
+
"dependencies": [],
|
|
39
|
+
"encrypt": [],
|
|
40
|
+
"platforms": {
|
|
41
|
+
"cloud": {
|
|
42
|
+
"tcb": "y",
|
|
43
|
+
"aliyun": "y",
|
|
44
|
+
"alipay": "n"
|
|
45
|
+
},
|
|
46
|
+
"client": {
|
|
47
|
+
"Vue": {
|
|
48
|
+
"vue2": "y",
|
|
49
|
+
"vue3": "y"
|
|
50
|
+
},
|
|
51
|
+
"App": {
|
|
52
|
+
"app-vue": "y",
|
|
53
|
+
"app-nvue": "y"
|
|
54
|
+
},
|
|
55
|
+
"H5-mobile": {
|
|
56
|
+
"Safari": "y",
|
|
57
|
+
"Android Browser": "y",
|
|
58
|
+
"微信浏览器(Android)": "y",
|
|
59
|
+
"QQ浏览器(Android)": "y"
|
|
60
|
+
},
|
|
61
|
+
"H5-pc": {
|
|
62
|
+
"Chrome": "y",
|
|
63
|
+
"IE": "y",
|
|
64
|
+
"Edge": "y",
|
|
65
|
+
"Firefox": "y",
|
|
66
|
+
"Safari": "y"
|
|
67
|
+
},
|
|
68
|
+
"小程序": {
|
|
69
|
+
"微信": "y",
|
|
70
|
+
"阿里": "y",
|
|
71
|
+
"百度": "y",
|
|
72
|
+
"字节跳动": "y",
|
|
73
|
+
"QQ": "y",
|
|
74
|
+
"钉钉": "n",
|
|
75
|
+
"快手": "n",
|
|
76
|
+
"飞书": "n",
|
|
77
|
+
"京东": "n"
|
|
78
|
+
},
|
|
79
|
+
"快应用": {
|
|
80
|
+
"华为": "n",
|
|
81
|
+
"联盟": "n"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## u-line 线条
|
|
2
|
+
|
|
3
|
+
> **组件名:u-line**
|
|
4
|
+
|
|
5
|
+
该组件一般用于显示一根线条,用于分隔内容块,有横向和竖向两种模式,且能设置0.5px线条。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/line.html)
|
|
8
|
+
|
|
9
|
+
## [更多组件, 请查看 `u-ui` 组件库](https://ext.dcloud.net.cn/plugin?name=u--ui)
|
|
10
|
+
(请勿下载插件zip)
|
|
11
|
+
|
|
12
|
+
<a href="https://ext.dcloud.net.cn/plugin?name=u--ui">
|
|
13
|
+
<img src="https://wuui.cn/intr.png">
|
|
14
|
+
</a>
|
|
15
|
+
|
|
16
|
+
**如使用过程中有任何问题,或者您对u-ui有一些好的建议。<br>欢迎加入 [u-ui 交流群](https://ijry.github.io/uview-plus/components/qqFeedBack.html)**
|