@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,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-row",
|
|
3
|
+
"displayName": "u-row layout布局 全端兼容,无论平台,一致体验",
|
|
4
|
+
"version": "1.0.3",
|
|
5
|
+
"description": "u-row 通过基础的 12 分栏,迅速简便地创建布局",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-row",
|
|
8
|
+
"u-ui",
|
|
9
|
+
"wuui",
|
|
10
|
+
"layout",
|
|
11
|
+
"布局"
|
|
12
|
+
],
|
|
13
|
+
"repository": "",
|
|
14
|
+
"engines": {
|
|
15
|
+
"HBuilderX": "^3.1.0"
|
|
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-row layout布局
|
|
2
|
+
|
|
3
|
+
> **组件名:u-row**
|
|
4
|
+
|
|
5
|
+
`u-row` 通过基础的 12 分栏,迅速简便地创建布局。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/layout.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-safe-bottom",
|
|
3
|
+
"displayName": "u-safe-bottom底部安全区 全端兼容 无论平台 一致体验",
|
|
4
|
+
"version": "1.0.2",
|
|
5
|
+
"description": "针对一些底部带指示条的机型,操作区域与页面底部重合,容易误操作,因此本插件对这些机型进行底部安全区适配",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-ui",
|
|
8
|
+
"wuui",
|
|
9
|
+
"u-safe-bottom",
|
|
10
|
+
"safe-bottom",
|
|
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-safe-bottom 底部安全区
|
|
2
|
+
|
|
3
|
+
> **组件名:u-safe-bottom**
|
|
4
|
+
|
|
5
|
+
这个适配,主要是针对IPhone X等一些底部带指示条的机型,指示条的操作区域与页面底部存在重合,容易导致用户误操作,因此我们需要针对这些机型进行底部安全区适配。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/safeAreaInset.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,27 @@
|
|
|
1
|
+
## 1.1.0(2024-11-14)
|
|
2
|
+
修复nvue警告
|
|
3
|
+
## 1.0.9(2024-06-11)
|
|
4
|
+
1. 修复某些安卓手机点击加减无反应
|
|
5
|
+
2. 修复点击关闭图标无法关闭的bug
|
|
6
|
+
## 1.0.8(2024-05-08)
|
|
7
|
+
更新域名
|
|
8
|
+
## 1.0.7(2023-12-08)
|
|
9
|
+
修复隐式转换的错误
|
|
10
|
+
## 1.0.6(2023-08-23)
|
|
11
|
+
去除0库存禁用,新增sku不相关是否禁用属性
|
|
12
|
+
## 1.0.5(2023-08-21)
|
|
13
|
+
更新文档说明
|
|
14
|
+
## 1.0.4(2023-08-12)
|
|
15
|
+
修复数据变动无法检测变化的bug
|
|
16
|
+
## 1.0.3(2023-08-11)
|
|
17
|
+
将使用说明迁至 u-ui sku 组件文档中
|
|
18
|
+
## 1.0.2(2023-08-11)
|
|
19
|
+
发布新版教程
|
|
20
|
+
## 1.0.1(2023-08-11)
|
|
21
|
+
1. 优化源geek-sku组件,原组件不在维护
|
|
22
|
+
2. 新增全端兼容,nvue、vue2、vue3、小程序等
|
|
23
|
+
3. 修复 vue2 icon图标消失的bug
|
|
24
|
+
## 1.0.0(2023-08-11)
|
|
25
|
+
1. 优化源geek-sku组件,原组件不在维护
|
|
26
|
+
2. 新增全端兼容,nvue、vue2、vue3、小程序等
|
|
27
|
+
3. 修复 vue2 icon图标消失的bug
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-sku",
|
|
3
|
+
"displayName": "u-sku 商品多规格sku选择器【支持vue3】【支持NVUE】【支持带图sku】【全端兼容】",
|
|
4
|
+
"version": "1.1.0",
|
|
5
|
+
"description": "一款仿京东算法的轻量化、强大、拓展性强、可使用带图sku、可根据配置主题色自动生成相应的组件主题色的商品多规格sku,仅需要按照指定格式传入sku数组便可以直接使用。",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"商品多规格选择器",
|
|
8
|
+
"u-sku",
|
|
9
|
+
"全端",
|
|
10
|
+
"vue3",
|
|
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-number-box"
|
|
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
|
+
"app-harmony": "u",
|
|
57
|
+
"app-uvue": "u"
|
|
58
|
+
},
|
|
59
|
+
"H5-mobile": {
|
|
60
|
+
"Safari": "y",
|
|
61
|
+
"Android Browser": "y",
|
|
62
|
+
"微信浏览器(Android)": "y",
|
|
63
|
+
"QQ浏览器(Android)": "y"
|
|
64
|
+
},
|
|
65
|
+
"H5-pc": {
|
|
66
|
+
"Chrome": "y",
|
|
67
|
+
"IE": "y",
|
|
68
|
+
"Edge": "y",
|
|
69
|
+
"Firefox": "y",
|
|
70
|
+
"Safari": "y"
|
|
71
|
+
},
|
|
72
|
+
"小程序": {
|
|
73
|
+
"微信": "y",
|
|
74
|
+
"阿里": "y",
|
|
75
|
+
"百度": "y",
|
|
76
|
+
"字节跳动": "y",
|
|
77
|
+
"QQ": "y",
|
|
78
|
+
"钉钉": "y",
|
|
79
|
+
"快手": "y",
|
|
80
|
+
"飞书": "y",
|
|
81
|
+
"京东": "y"
|
|
82
|
+
},
|
|
83
|
+
"快应用": {
|
|
84
|
+
"华为": "y",
|
|
85
|
+
"联盟": "y"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"crypto-js": "^4.1.1"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## u-sku 按钮
|
|
2
|
+
|
|
3
|
+
> **组件名:u-sku**
|
|
4
|
+
|
|
5
|
+
`u-sku` 是一款仿京东算法的轻量化、强大、拓展性强、可使用带图sku、可根据配置主题色自动生成相应的组件主题色的商品多规格sku,仅需要按照指定格式传入sku数组便可以直接使用。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/sku.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
|
+
import { defineMixin } from '../../libs/vue';
|
|
2
|
+
import defProps from '../../libs/config/props.js';
|
|
3
|
+
export const props = defineMixin({
|
|
4
|
+
props: {
|
|
5
|
+
// 源数据
|
|
6
|
+
data: {
|
|
7
|
+
default: () => [],
|
|
8
|
+
type: Array
|
|
9
|
+
},
|
|
10
|
+
// 是否显示sku组件
|
|
11
|
+
// #ifdef VUE3
|
|
12
|
+
modelValue: {
|
|
13
|
+
default: false,
|
|
14
|
+
type: Boolean
|
|
15
|
+
},
|
|
16
|
+
// #endif
|
|
17
|
+
// #ifndef VUE3
|
|
18
|
+
value: {
|
|
19
|
+
default: false,
|
|
20
|
+
type: Boolean
|
|
21
|
+
},
|
|
22
|
+
// #endif
|
|
23
|
+
// 是否可以点击关闭
|
|
24
|
+
isMaskClose: {
|
|
25
|
+
default: false,
|
|
26
|
+
type: Boolean
|
|
27
|
+
},
|
|
28
|
+
// 是否默认选中最低价格sku
|
|
29
|
+
isSelectMinPriceSku: {
|
|
30
|
+
default: true,
|
|
31
|
+
type: Boolean
|
|
32
|
+
},
|
|
33
|
+
// 默认选中的sku下标
|
|
34
|
+
selectSkuIndex: {
|
|
35
|
+
default: null,
|
|
36
|
+
type: [Number, String]
|
|
37
|
+
},
|
|
38
|
+
// 默认封面图
|
|
39
|
+
defaultCover: {
|
|
40
|
+
default: '',
|
|
41
|
+
type: String
|
|
42
|
+
},
|
|
43
|
+
// 默认购买商品数量
|
|
44
|
+
defaultNum: {
|
|
45
|
+
default: 1,
|
|
46
|
+
type: [Number, String]
|
|
47
|
+
},
|
|
48
|
+
// 主题色
|
|
49
|
+
themeColor: {
|
|
50
|
+
default: () => [60, 156, 255],
|
|
51
|
+
type: Array
|
|
52
|
+
},
|
|
53
|
+
// 确认按钮文字
|
|
54
|
+
btnConfirmText: {
|
|
55
|
+
default: '确定',
|
|
56
|
+
type: String
|
|
57
|
+
},
|
|
58
|
+
// 不相关sku是否禁用
|
|
59
|
+
skuUnrelatedDisabled: {
|
|
60
|
+
default: false,
|
|
61
|
+
type: Boolean
|
|
62
|
+
},
|
|
63
|
+
// sku禁用时的样式
|
|
64
|
+
skuDisabledStyle: {
|
|
65
|
+
default: () => {
|
|
66
|
+
return {};
|
|
67
|
+
},
|
|
68
|
+
type: Object
|
|
69
|
+
},
|
|
70
|
+
// 库存不足文字
|
|
71
|
+
notStockText: {
|
|
72
|
+
default: '库存不足',
|
|
73
|
+
type: String
|
|
74
|
+
},
|
|
75
|
+
// 未选择完整的sku时的文字提示
|
|
76
|
+
notSelectSku: {
|
|
77
|
+
default: '请选择完整的sku属性',
|
|
78
|
+
type: String
|
|
79
|
+
},
|
|
80
|
+
// 展示库存数量
|
|
81
|
+
showStockNum: {
|
|
82
|
+
default: true,
|
|
83
|
+
type: Boolean
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
});
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
/* @import '../../libs/css/common.css';
|
|
2
|
+
@import '../../libs/css/components.css';
|
|
3
|
+
@import '../../libs/css/color.css'; */
|
|
4
|
+
.u-sku {
|
|
5
|
+
position: fixed;
|
|
6
|
+
left: 0;
|
|
7
|
+
right: 0;
|
|
8
|
+
bottom: 0;
|
|
9
|
+
top: 0;
|
|
10
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
11
|
+
z-index: 999;
|
|
12
|
+
/* #ifndef APP-NVUE */
|
|
13
|
+
transition: all 0.3s ease;
|
|
14
|
+
/* #endif */
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.u-sku.show {
|
|
18
|
+
opacity: 1;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.u-sku.hide {
|
|
22
|
+
opacity: 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.u-sku .shopSpecsPopup {
|
|
26
|
+
background: #ffffff;
|
|
27
|
+
border-radius: 24rpx 24rpx 0 0;
|
|
28
|
+
padding: 45rpx 30rpx 30rpx;
|
|
29
|
+
position: fixed;
|
|
30
|
+
/* #ifndef APP-NVUE */
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
/* #endif */
|
|
33
|
+
left: 0;
|
|
34
|
+
right: 0;
|
|
35
|
+
/* #ifndef APP-NVUE */
|
|
36
|
+
transition: all 0.3s ease;
|
|
37
|
+
/* #endif */
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.u-sku .shopSpecsPopup.show {
|
|
41
|
+
bottom: 0%;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.u-sku .shopSpecsPopup.hide {
|
|
45
|
+
/* #ifndef APP-NVUE */
|
|
46
|
+
bottom: -100%;
|
|
47
|
+
/* #endif */
|
|
48
|
+
bottom: -1000px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.u-sku .shopSpecsPopup .close {
|
|
52
|
+
width: 40rpx;
|
|
53
|
+
height: 40rpx;
|
|
54
|
+
position: absolute;
|
|
55
|
+
top: 33rpx;
|
|
56
|
+
right: 30rpx;
|
|
57
|
+
z-index: 2;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.u-sku .shopSpecsPopup .content {
|
|
61
|
+
bottom: 0;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.u-sku .shopSpecsPopup .btnBox {
|
|
65
|
+
background-color: #fff;
|
|
66
|
+
margin-top: 40rpx;
|
|
67
|
+
/* #ifndef APP-NVUE */
|
|
68
|
+
border: none;
|
|
69
|
+
/* #endif */
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.u-sku .shopSpecsPopup .btnBox .confirm {
|
|
73
|
+
border-radius: 50rpx;
|
|
74
|
+
font-weight: 500;
|
|
75
|
+
text-align: center;
|
|
76
|
+
/* #ifndef APP-NVUE */
|
|
77
|
+
box-sizing: border-box;
|
|
78
|
+
/* #endif */
|
|
79
|
+
height: 86rpx;
|
|
80
|
+
line-height: 1;
|
|
81
|
+
display: flex;
|
|
82
|
+
justify-content: center;
|
|
83
|
+
align-items: center;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.u-sku .shopSpecsPopup .btnBox .confirm .confirm-text {
|
|
87
|
+
color: #ffffff;
|
|
88
|
+
font-size: 32rpx;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.u-sku .shopSpecsPopup .info {
|
|
92
|
+
/* #ifndef APP-NVUE */
|
|
93
|
+
display: flex;
|
|
94
|
+
/* #endif */
|
|
95
|
+
flex-direction: row;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.u-sku .shopSpecsPopup .info .cover {
|
|
99
|
+
width: 200rpx;
|
|
100
|
+
height: 200rpx;
|
|
101
|
+
margin-right: 20rpx;
|
|
102
|
+
border-radius: 20rpx;
|
|
103
|
+
/* #ifndef APP-NVUE */
|
|
104
|
+
background-position: center;
|
|
105
|
+
background-repeat: no-repeat;
|
|
106
|
+
background-size: cover;
|
|
107
|
+
flex-shrink: 0;
|
|
108
|
+
/* #endif */
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.u-sku .shopSpecsPopup .info .right {
|
|
112
|
+
/* #ifndef APP-NVUE */
|
|
113
|
+
width: calc(100% - 220rpx);
|
|
114
|
+
/* #endif */
|
|
115
|
+
/* #ifndef APP-NVUE */
|
|
116
|
+
display: flex;
|
|
117
|
+
/* #endif */
|
|
118
|
+
flex-direction: column;
|
|
119
|
+
flex: 1;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.u-sku .shopSpecsPopup .info .right.useImgSku {
|
|
123
|
+
/* #ifdef APP-NVUE */
|
|
124
|
+
width: 750rpx;
|
|
125
|
+
/* #endif */
|
|
126
|
+
/* #ifndef APP-NVUE */
|
|
127
|
+
width: 100%;
|
|
128
|
+
/* #endif */
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.u-sku .shopSpecsPopup .info .right.useImgSku .price {
|
|
132
|
+
justify-content: center;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.u-sku .shopSpecsPopup .info .right.useImgSku .stock,
|
|
136
|
+
.u-sku .shopSpecsPopup .info .right.useImgSku .actSkuStr {
|
|
137
|
+
text-align: center;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.u-sku .shopSpecsPopup .info .right .title {
|
|
141
|
+
font-size: 32rpx;
|
|
142
|
+
font-weight: 500;
|
|
143
|
+
color: #333333;
|
|
144
|
+
margin-bottom: 20rpx;
|
|
145
|
+
padding-right: 120rpx;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.u-sku .shopSpecsPopup .info .right .price {
|
|
149
|
+
margin-bottom: 20rpx;
|
|
150
|
+
line-height: 1;
|
|
151
|
+
/* #ifndef APP-NVUE */
|
|
152
|
+
display: flex;
|
|
153
|
+
/* #endif */
|
|
154
|
+
flex-direction: row;
|
|
155
|
+
align-items: center;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.u-sku .shopSpecsPopup .info .right .price .uity,
|
|
159
|
+
.u-sku .shopSpecsPopup .info .right .price .value {
|
|
160
|
+
font-weight: 700;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.u-sku .shopSpecsPopup .info .right .price .uity {
|
|
164
|
+
font-size: 34rpx;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.u-sku .shopSpecsPopup .info .right .price .value {
|
|
168
|
+
font-size: 44rpx;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.u-sku .shopSpecsPopup .info .right .stock {
|
|
172
|
+
font-size: 30rpx;
|
|
173
|
+
color: #999999;
|
|
174
|
+
margin-bottom: 15rpx;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.u-sku .shopSpecsPopup .info .right .actSkuStr {
|
|
178
|
+
color: #333;
|
|
179
|
+
font-size: 30rpx;
|
|
180
|
+
line-height: 38rpx;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.u-sku .shopSpecsPopup .number {
|
|
184
|
+
margin-top: 30rpx;
|
|
185
|
+
margin-bottom: 22rpx;
|
|
186
|
+
/* #ifndef APP-NVUE */
|
|
187
|
+
display: flex;
|
|
188
|
+
/* #endif */
|
|
189
|
+
flex-direction: row;
|
|
190
|
+
justify-content: space-between;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.u-sku .shopSpecsPopup .number .key {
|
|
194
|
+
font-size: 32rpx;
|
|
195
|
+
font-weight: 500;
|
|
196
|
+
color: #333333;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.u-sku .shopSpecsPopup .specsList {
|
|
200
|
+
margin-bottom: 30rpx;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.u-sku .shopSpecsPopup .specsList .item .title {
|
|
204
|
+
font-size: 32rpx;
|
|
205
|
+
font-weight: 500;
|
|
206
|
+
color: #333333;
|
|
207
|
+
margin-bottom: 30rpx;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList {
|
|
211
|
+
/* #ifndef APP-NVUE */
|
|
212
|
+
display: flex;
|
|
213
|
+
/* #endif */
|
|
214
|
+
flex-direction: row;
|
|
215
|
+
flex-wrap: wrap;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs {
|
|
219
|
+
margin-bottom: 30rpx;
|
|
220
|
+
margin-right: 30rpx;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs .specs_common,
|
|
224
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs .specs_img_box_text {
|
|
225
|
+
font-size: 28rpx !important;
|
|
226
|
+
font-weight: 500 !important;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs.disabled .specs_img_box .specs_img_box_mask {
|
|
230
|
+
position: absolute !important;
|
|
231
|
+
left: 0 !important;
|
|
232
|
+
right: 0 !important;
|
|
233
|
+
bottom: 0 !important;
|
|
234
|
+
top: 0 !important;
|
|
235
|
+
background-color: rgba(0, 0, 0, 0.2) !important;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs_img_box {
|
|
239
|
+
position: relative;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs_img_box_preview {
|
|
243
|
+
position: absolute;
|
|
244
|
+
background: rgba(0, 0, 0, 0.7);
|
|
245
|
+
border-radius: 50%;
|
|
246
|
+
padding: 10rpx;
|
|
247
|
+
right: 8rpx;
|
|
248
|
+
top: 8rpx;
|
|
249
|
+
z-index: 2;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs_img_box_preview .img {
|
|
253
|
+
width: 25rpx;
|
|
254
|
+
height: 25rpx;
|
|
255
|
+
transform: scale(1.2);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs_img_box_cover {
|
|
259
|
+
width: 200rpx;
|
|
260
|
+
height: 200rpx;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs_img_box_text {
|
|
264
|
+
background: #302e2f;
|
|
265
|
+
padding: 15rpx 20rpx;
|
|
266
|
+
text-align: center;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.u-sku .shopSpecsPopup .specsList .item .specsValueList .specs_common {
|
|
270
|
+
padding: 14rpx 40rpx;
|
|
271
|
+
}
|