@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,180 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view
|
|
3
|
+
class="fui-navigation-bar"
|
|
4
|
+
:class="{ 'fui-bar-line': opcity > 0.85 && splitLine, 'fui-navbar-fixed': isFixed }"
|
|
5
|
+
:style="{ height: height + 'px', backgroundColor: `rgba(${backgroundColor},${opcity})` }"
|
|
6
|
+
>
|
|
7
|
+
<view class="fui-status-bar" :style="{ height: statusBarHeight + 'px' }" v-if="isImmersive"></view>
|
|
8
|
+
<view
|
|
9
|
+
class="fui-navigation_bar-title"
|
|
10
|
+
:style="{ opacity: opcity, color: color, paddingTop: top - statusBarHeight + 'px' }"
|
|
11
|
+
v-if="title && !isCustom"
|
|
12
|
+
>
|
|
13
|
+
{{ title }}
|
|
14
|
+
</view>
|
|
15
|
+
<slot />
|
|
16
|
+
</view>
|
|
17
|
+
</template>
|
|
18
|
+
|
|
19
|
+
<script>
|
|
20
|
+
export default {
|
|
21
|
+
name: 'fuiNavigationBar',
|
|
22
|
+
props: {
|
|
23
|
+
//NavigationBar标题
|
|
24
|
+
title: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ''
|
|
27
|
+
},
|
|
28
|
+
//NavigationBar标题颜色
|
|
29
|
+
color: {
|
|
30
|
+
type: String,
|
|
31
|
+
default: '#fff'
|
|
32
|
+
},
|
|
33
|
+
//NavigationBar背景颜色 rgb
|
|
34
|
+
backgroundColor: {
|
|
35
|
+
type: String,
|
|
36
|
+
default: '86,119,252'
|
|
37
|
+
},
|
|
38
|
+
//是否需要分割线
|
|
39
|
+
splitLine: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
default: false
|
|
42
|
+
},
|
|
43
|
+
//是否设置不透明度
|
|
44
|
+
isOpcity: {
|
|
45
|
+
type: Boolean,
|
|
46
|
+
default: true
|
|
47
|
+
},
|
|
48
|
+
//滚动条滚动距离
|
|
49
|
+
scrollTop: {
|
|
50
|
+
type: [Number, String],
|
|
51
|
+
default: 0
|
|
52
|
+
},
|
|
53
|
+
/*
|
|
54
|
+
isOpcity 为true时生效
|
|
55
|
+
opcity=scrollTop /windowWidth * scrollRatio
|
|
56
|
+
*/
|
|
57
|
+
scrollRatio: {
|
|
58
|
+
type: [Number, String],
|
|
59
|
+
default: 0.3
|
|
60
|
+
},
|
|
61
|
+
//是否自定义header内容
|
|
62
|
+
isCustom: {
|
|
63
|
+
type: Boolean,
|
|
64
|
+
default: false
|
|
65
|
+
},
|
|
66
|
+
//是否沉浸式
|
|
67
|
+
isImmersive: {
|
|
68
|
+
type: Boolean,
|
|
69
|
+
default: true
|
|
70
|
+
},
|
|
71
|
+
isFixed: {
|
|
72
|
+
type: Boolean,
|
|
73
|
+
default: true
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
watch: {
|
|
77
|
+
scrollTop(newValue, oldValue) {
|
|
78
|
+
if (this.isOpcity) {
|
|
79
|
+
this.opcityChange();
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
data() {
|
|
84
|
+
return {
|
|
85
|
+
width: 375, //header宽度
|
|
86
|
+
left: 375, //小程序端 左侧距胶囊按钮距离
|
|
87
|
+
height: 44, //header高度
|
|
88
|
+
top: 0,
|
|
89
|
+
scrollH: 1, //滚动总高度,计算opcity
|
|
90
|
+
opcity: 0, //0-1
|
|
91
|
+
statusBarHeight: 0 //状态栏高度
|
|
92
|
+
};
|
|
93
|
+
},
|
|
94
|
+
created() {
|
|
95
|
+
this.opcity = this.isOpcity ? this.opcity : 1;
|
|
96
|
+
let obj = {};
|
|
97
|
+
// #ifdef MP-WEIXIN
|
|
98
|
+
obj = wx.getMenuButtonBoundingClientRect();
|
|
99
|
+
// #endif
|
|
100
|
+
// #ifdef MP-BAIDU
|
|
101
|
+
obj = swan.getMenuButtonBoundingClientRect();
|
|
102
|
+
// #endif
|
|
103
|
+
// #ifdef MP-ALIPAY
|
|
104
|
+
my.hideAddToDesktopMenu();
|
|
105
|
+
// #endif
|
|
106
|
+
|
|
107
|
+
uni.getSystemInfo({
|
|
108
|
+
success: (res) => {
|
|
109
|
+
this.statusBarHeight = res.statusBarHeight;
|
|
110
|
+
this.width = res.windowWidth;
|
|
111
|
+
this.left = obj.left || res.windowWidth;
|
|
112
|
+
if (this.isImmersive) {
|
|
113
|
+
this.height = obj.top ? obj.top + obj.height + 8 : res.statusBarHeight + 44;
|
|
114
|
+
}
|
|
115
|
+
this.scrollH = res.windowWidth * this.scrollRatio;
|
|
116
|
+
this.top = obj.top ? obj.top + (obj.height - 32) / 2 : res.statusBarHeight + 6;
|
|
117
|
+
this.$emit('init', {
|
|
118
|
+
width: this.width,
|
|
119
|
+
height: this.height,
|
|
120
|
+
left: obj.left,
|
|
121
|
+
top: this.top,
|
|
122
|
+
statusBarHeight: this.statusBarHeight,
|
|
123
|
+
opcity: this.opcity
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
});
|
|
127
|
+
},
|
|
128
|
+
methods: {
|
|
129
|
+
opcityChange() {
|
|
130
|
+
let scroll = this.scrollTop <= 1 ? 0 : this.scrollTop;
|
|
131
|
+
let opcity = scroll / this.scrollH;
|
|
132
|
+
if ((this.opcity >= 1 && opcity >= 1) || (this.opcity == 0 && opcity == 0)) {
|
|
133
|
+
return;
|
|
134
|
+
}
|
|
135
|
+
this.opcity = opcity;
|
|
136
|
+
this.$emit('change', {
|
|
137
|
+
opcity: this.opcity
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
};
|
|
142
|
+
</script>
|
|
143
|
+
|
|
144
|
+
<style scoped>
|
|
145
|
+
.fui-navigation-bar {
|
|
146
|
+
width: 100%;
|
|
147
|
+
}
|
|
148
|
+
.fui-navbar-fixed {
|
|
149
|
+
position: fixed;
|
|
150
|
+
left: 0;
|
|
151
|
+
top: 0;
|
|
152
|
+
z-index: 9998;
|
|
153
|
+
}
|
|
154
|
+
.fui-status-bar {
|
|
155
|
+
width: 100%;
|
|
156
|
+
}
|
|
157
|
+
.fui-navigation_bar-title {
|
|
158
|
+
width: 100%;
|
|
159
|
+
font-size: 17px;
|
|
160
|
+
line-height: 17px;
|
|
161
|
+
/* #ifndef APP-PLUS */
|
|
162
|
+
font-weight: 500;
|
|
163
|
+
/* #endif */
|
|
164
|
+
height: 32px;
|
|
165
|
+
display: flex;
|
|
166
|
+
align-items: center;
|
|
167
|
+
justify-content: center;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.fui-bar-line::after {
|
|
171
|
+
content: '';
|
|
172
|
+
position: absolute;
|
|
173
|
+
border-bottom: 1rpx solid #eaeef1;
|
|
174
|
+
-webkit-transform: scaleY(0.5);
|
|
175
|
+
transform: scaleY(0.5);
|
|
176
|
+
bottom: 0;
|
|
177
|
+
right: 0;
|
|
178
|
+
left: 0;
|
|
179
|
+
}
|
|
180
|
+
</style>
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="fui-nodata-box" :class="[fixed ? 'fui-nodata-fixed' : '']">
|
|
3
|
+
<image
|
|
4
|
+
v-if="imgUrl"
|
|
5
|
+
:src="imgUrl"
|
|
6
|
+
class="fui-tips-icon"
|
|
7
|
+
:style="{ width: imgWidth + 'rpx', height: imgHeight + 'rpx' }"
|
|
8
|
+
></image>
|
|
9
|
+
<view class="fui-tips-content">
|
|
10
|
+
<slot></slot>
|
|
11
|
+
</view>
|
|
12
|
+
<button
|
|
13
|
+
class="fui-tips-btn"
|
|
14
|
+
hover-class="fui-tips-btn-hover"
|
|
15
|
+
:style="{ width: btnWidth + 'rpx' }"
|
|
16
|
+
v-if="btnText"
|
|
17
|
+
@tap="handleClick"
|
|
18
|
+
>
|
|
19
|
+
{{ btnText }}
|
|
20
|
+
</button>
|
|
21
|
+
</view>
|
|
22
|
+
</template>
|
|
23
|
+
|
|
24
|
+
<script>
|
|
25
|
+
export default {
|
|
26
|
+
name: 'fuiNoData',
|
|
27
|
+
props: {
|
|
28
|
+
//是否垂直居中
|
|
29
|
+
fixed: {
|
|
30
|
+
type: Boolean,
|
|
31
|
+
default: true
|
|
32
|
+
},
|
|
33
|
+
//图片地址,没有则不显示
|
|
34
|
+
imgUrl: {
|
|
35
|
+
type: String,
|
|
36
|
+
default: ''
|
|
37
|
+
},
|
|
38
|
+
//图片宽度
|
|
39
|
+
imgWidth: {
|
|
40
|
+
type: Number,
|
|
41
|
+
default: 200
|
|
42
|
+
},
|
|
43
|
+
//图片高度
|
|
44
|
+
imgHeight: {
|
|
45
|
+
type: Number,
|
|
46
|
+
default: 200
|
|
47
|
+
},
|
|
48
|
+
//按钮宽度
|
|
49
|
+
btnWidth: {
|
|
50
|
+
type: Number,
|
|
51
|
+
default: 200
|
|
52
|
+
},
|
|
53
|
+
//按钮文字,没有则不显示
|
|
54
|
+
btnText: {
|
|
55
|
+
type: String,
|
|
56
|
+
default: ''
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
methods: {
|
|
60
|
+
handleClick(e) {
|
|
61
|
+
this.$emit('click', {});
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
</script>
|
|
66
|
+
|
|
67
|
+
<style scoped>
|
|
68
|
+
.fui-nodata-box {
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: column;
|
|
71
|
+
justify-content: center;
|
|
72
|
+
align-items: center;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.fui-nodata-fixed {
|
|
76
|
+
width: 90%;
|
|
77
|
+
position: fixed;
|
|
78
|
+
left: 50%;
|
|
79
|
+
top: 50%;
|
|
80
|
+
-webkit-transform: translate(-50%, -50%);
|
|
81
|
+
transform: translate(-50%, -50%);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.fui-tips-icon {
|
|
85
|
+
display: block;
|
|
86
|
+
flex-shrink: 0;
|
|
87
|
+
width: 280rpx;
|
|
88
|
+
height: 280rpx;
|
|
89
|
+
margin-bottom: 40rpx;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.fui-tips-content {
|
|
93
|
+
text-align: center;
|
|
94
|
+
color: #666666;
|
|
95
|
+
font-size: 28rpx;
|
|
96
|
+
padding: 0 50rpx 24rpx 50rpx;
|
|
97
|
+
box-sizing: border-box;
|
|
98
|
+
word-break: break-all;
|
|
99
|
+
word-wrap: break-word;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.fui-tips-btn {
|
|
103
|
+
height: 60rpx;
|
|
104
|
+
line-height: 60rpx;
|
|
105
|
+
font-size: 28rpx;
|
|
106
|
+
background-color: #eb0909;
|
|
107
|
+
color: #fff;
|
|
108
|
+
border-radius: 6rpx;
|
|
109
|
+
margin: 0;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.fui-tips-btn-hover {
|
|
113
|
+
background-color: #c80808;
|
|
114
|
+
color: #e5e5e5;
|
|
115
|
+
}
|
|
116
|
+
</style>
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="fui-nomore-class fui-loadmore-none">
|
|
3
|
+
<view :class="[isDot ? 'fui-nomore-dot' : 'fui-nomore']">
|
|
4
|
+
<view :style="{ backgroundColor: backgroundColor }" :class="[isDot ? 'fui-dot-text' : 'fui-nomore-text']">
|
|
5
|
+
{{ isDot ? dotText : text }}
|
|
6
|
+
</view>
|
|
7
|
+
</view>
|
|
8
|
+
</view>
|
|
9
|
+
</template>
|
|
10
|
+
<script>
|
|
11
|
+
export default {
|
|
12
|
+
name: 'fuiNomore',
|
|
13
|
+
props: {
|
|
14
|
+
//当前页面背景颜色
|
|
15
|
+
backgroundColor: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: '#fafafa'
|
|
18
|
+
},
|
|
19
|
+
//是否以圆点代替 "没有更多了"
|
|
20
|
+
isDot: {
|
|
21
|
+
type: Boolean,
|
|
22
|
+
default: false
|
|
23
|
+
},
|
|
24
|
+
//isDot为false时生效
|
|
25
|
+
text: {
|
|
26
|
+
type: String,
|
|
27
|
+
default: '没有更多了'
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
data() {
|
|
31
|
+
return {
|
|
32
|
+
dotText: '●'
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
</script>
|
|
37
|
+
|
|
38
|
+
<style scoped>
|
|
39
|
+
.fui-loadmore-none {
|
|
40
|
+
width: 50%;
|
|
41
|
+
margin: 1.5em auto;
|
|
42
|
+
line-height: 1.5em;
|
|
43
|
+
font-size: 28rpx;
|
|
44
|
+
display: flex;
|
|
45
|
+
justify-content: center;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.fui-nomore {
|
|
49
|
+
width: 100%;
|
|
50
|
+
height: 100%;
|
|
51
|
+
position: relative;
|
|
52
|
+
display: flex;
|
|
53
|
+
justify-content: center;
|
|
54
|
+
margin-top: 10rpx;
|
|
55
|
+
padding-bottom: 6rpx;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.fui-nomore::before {
|
|
59
|
+
content: ' ';
|
|
60
|
+
position: absolute;
|
|
61
|
+
border-bottom: 1rpx solid #333;
|
|
62
|
+
-webkit-transform: scaleY(0.5);
|
|
63
|
+
transform: scaleY(0.5);
|
|
64
|
+
width: 100%;
|
|
65
|
+
top: 18rpx;
|
|
66
|
+
left: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.fui-nomore-text {
|
|
70
|
+
color: #999;
|
|
71
|
+
font-size: 28rpx;
|
|
72
|
+
text-align: center;
|
|
73
|
+
padding: 0 18rpx;
|
|
74
|
+
height: 36rpx;
|
|
75
|
+
line-height: 36rpx;
|
|
76
|
+
position: relative;
|
|
77
|
+
z-index: 1;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.fui-nomore-dot {
|
|
81
|
+
position: relative;
|
|
82
|
+
text-align: center;
|
|
83
|
+
-webkit-display: flex;
|
|
84
|
+
display: flex;
|
|
85
|
+
-webkit-justify-content: center;
|
|
86
|
+
justify-content: center;
|
|
87
|
+
margin-top: 10rpx;
|
|
88
|
+
padding-bottom: 6rpx;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.fui-nomore-dot::before {
|
|
92
|
+
content: '';
|
|
93
|
+
position: absolute;
|
|
94
|
+
border-bottom: 1rpx solid #e5e5e5;
|
|
95
|
+
-webkit-transform: scaleY(0.5) translateX(-50%);
|
|
96
|
+
transform: scaleY(0.5) translateX(-50%);
|
|
97
|
+
width: 360rpx;
|
|
98
|
+
top: 18rpx;
|
|
99
|
+
left: 50%;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.fui-dot-text {
|
|
103
|
+
position: relative;
|
|
104
|
+
color: #e5e5e5;
|
|
105
|
+
font-size: 10px;
|
|
106
|
+
text-align: center;
|
|
107
|
+
width: 50rpx;
|
|
108
|
+
height: 36rpx;
|
|
109
|
+
line-height: 36rpx;
|
|
110
|
+
-webkit-transform: scale(0.8);
|
|
111
|
+
transform: scale(0.8);
|
|
112
|
+
-webkit-transform-origin: center center;
|
|
113
|
+
transform-origin: center center;
|
|
114
|
+
z-index: 1;
|
|
115
|
+
}
|
|
116
|
+
</style>
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="fui-numberbox">
|
|
3
|
+
<view
|
|
4
|
+
class="fui-numbox-icon fui-icon-reduce"
|
|
5
|
+
:class="[disabled || min >= value ? 'fui-disabled' : '']"
|
|
6
|
+
@tap="reduce"
|
|
7
|
+
:style="{ color: iconColor, fontSize: iconSize + 'rpx' }"
|
|
8
|
+
></view>
|
|
9
|
+
<input
|
|
10
|
+
type="number"
|
|
11
|
+
v-model="inputValue"
|
|
12
|
+
:disabled="disabled"
|
|
13
|
+
@blur="blur"
|
|
14
|
+
class="fui-num-input"
|
|
15
|
+
:style="{
|
|
16
|
+
color: color,
|
|
17
|
+
fontSize: size + 'rpx',
|
|
18
|
+
backgroundColor: backgroundColor,
|
|
19
|
+
height: height + 'rpx',
|
|
20
|
+
minHeight: height + 'rpx',
|
|
21
|
+
width: width + 'rpx'
|
|
22
|
+
}"
|
|
23
|
+
/>
|
|
24
|
+
<view
|
|
25
|
+
class="fui-numbox-icon fui-icon-plus"
|
|
26
|
+
:class="[disabled || value >= max ? 'fui-disabled' : '']"
|
|
27
|
+
@tap="plus"
|
|
28
|
+
:style="{ color: iconColor, fontSize: iconSize + 'rpx' }"
|
|
29
|
+
></view>
|
|
30
|
+
</view>
|
|
31
|
+
</template>
|
|
32
|
+
|
|
33
|
+
<script>
|
|
34
|
+
export default {
|
|
35
|
+
name: 'fuiNumberbox',
|
|
36
|
+
props: {
|
|
37
|
+
value: {
|
|
38
|
+
type: Number,
|
|
39
|
+
default: 1
|
|
40
|
+
},
|
|
41
|
+
//最小值
|
|
42
|
+
min: {
|
|
43
|
+
type: Number,
|
|
44
|
+
default: 1
|
|
45
|
+
},
|
|
46
|
+
//最大值
|
|
47
|
+
max: {
|
|
48
|
+
type: Number,
|
|
49
|
+
default: 99
|
|
50
|
+
},
|
|
51
|
+
//迈步大小 1 1.1 10...
|
|
52
|
+
step: {
|
|
53
|
+
type: Number,
|
|
54
|
+
default: 1
|
|
55
|
+
},
|
|
56
|
+
//是否禁用操作
|
|
57
|
+
disabled: {
|
|
58
|
+
type: Boolean,
|
|
59
|
+
default: false
|
|
60
|
+
},
|
|
61
|
+
//加减图标大小 rpx
|
|
62
|
+
iconSize: {
|
|
63
|
+
type: Number,
|
|
64
|
+
default: 10
|
|
65
|
+
},
|
|
66
|
+
iconColor: {
|
|
67
|
+
type: String,
|
|
68
|
+
default: '#fff'
|
|
69
|
+
},
|
|
70
|
+
//input 高度
|
|
71
|
+
height: {
|
|
72
|
+
type: Number,
|
|
73
|
+
default: 42
|
|
74
|
+
},
|
|
75
|
+
//input 宽度
|
|
76
|
+
width: {
|
|
77
|
+
type: Number,
|
|
78
|
+
default: 80
|
|
79
|
+
},
|
|
80
|
+
size: {
|
|
81
|
+
type: Number,
|
|
82
|
+
default: 28
|
|
83
|
+
},
|
|
84
|
+
//input 背景颜色
|
|
85
|
+
backgroundColor: {
|
|
86
|
+
type: String,
|
|
87
|
+
default: '#fff'
|
|
88
|
+
},
|
|
89
|
+
//input 字体颜色
|
|
90
|
+
color: {
|
|
91
|
+
type: String,
|
|
92
|
+
default: '#333'
|
|
93
|
+
},
|
|
94
|
+
//索引值,列表中使用
|
|
95
|
+
index: {
|
|
96
|
+
type: [Number, String],
|
|
97
|
+
default: 0
|
|
98
|
+
},
|
|
99
|
+
//自定义参数
|
|
100
|
+
custom: {
|
|
101
|
+
type: [Number, String],
|
|
102
|
+
default: 0
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
created() {
|
|
106
|
+
this.inputValue = +this.value;
|
|
107
|
+
},
|
|
108
|
+
data() {
|
|
109
|
+
return {
|
|
110
|
+
inputValue: 0
|
|
111
|
+
};
|
|
112
|
+
},
|
|
113
|
+
watch: {
|
|
114
|
+
value(val) {
|
|
115
|
+
this.inputValue = +val;
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
methods: {
|
|
119
|
+
getScale() {
|
|
120
|
+
let scale = 1;
|
|
121
|
+
//浮点型
|
|
122
|
+
if (!Number.isInteger(this.step)) {
|
|
123
|
+
scale = Math.pow(10, (this.step + '').split('.')[1].length);
|
|
124
|
+
}
|
|
125
|
+
return scale;
|
|
126
|
+
},
|
|
127
|
+
calcNum(type) {
|
|
128
|
+
if (this.disabled) {
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
const scale = this.getScale();
|
|
132
|
+
let num = this.value * scale;
|
|
133
|
+
let step = this.step * scale;
|
|
134
|
+
if (type === 'reduce') {
|
|
135
|
+
num -= step;
|
|
136
|
+
} else if (type === 'plus') {
|
|
137
|
+
num += step;
|
|
138
|
+
}
|
|
139
|
+
let value = num / scale;
|
|
140
|
+
if (type === 'plus' && value < this.min) {
|
|
141
|
+
value = this.min;
|
|
142
|
+
} else if (type === 'reduce' && value > this.max) {
|
|
143
|
+
value = this.max;
|
|
144
|
+
}
|
|
145
|
+
if (value < this.min || value > this.max) {
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
this.handleChange(value, type);
|
|
149
|
+
},
|
|
150
|
+
plus() {
|
|
151
|
+
this.calcNum('plus');
|
|
152
|
+
},
|
|
153
|
+
reduce() {
|
|
154
|
+
this.calcNum('reduce');
|
|
155
|
+
},
|
|
156
|
+
blur(e) {
|
|
157
|
+
let value = e.detail.value;
|
|
158
|
+
if (value) {
|
|
159
|
+
if (~value.indexOf('.') && Number.isInteger(this.step)) {
|
|
160
|
+
value = value.split('.')[0];
|
|
161
|
+
}
|
|
162
|
+
value = Number(value);
|
|
163
|
+
if (value > this.max) {
|
|
164
|
+
value = this.max;
|
|
165
|
+
} else if (value < this.min) {
|
|
166
|
+
value = this.min;
|
|
167
|
+
}
|
|
168
|
+
} else {
|
|
169
|
+
value = this.min;
|
|
170
|
+
}
|
|
171
|
+
if ((value == this.value && value != this.inputValue) || !e.detail.value) {
|
|
172
|
+
this.inputValue = value;
|
|
173
|
+
}
|
|
174
|
+
this.handleChange(value, 'blur');
|
|
175
|
+
},
|
|
176
|
+
handleChange(value, type) {
|
|
177
|
+
if (this.disabled) return;
|
|
178
|
+
this.$emit('change', {
|
|
179
|
+
value: value,
|
|
180
|
+
type: type,
|
|
181
|
+
index: this.index,
|
|
182
|
+
custom: this.custom
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
};
|
|
187
|
+
</script>
|
|
188
|
+
|
|
189
|
+
<style scoped>
|
|
190
|
+
@font-face {
|
|
191
|
+
font-family: 'numberbox';
|
|
192
|
+
src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAASQAA0AAAAABtwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEdAAAABoAAAAciBpnRUdERUYAAARUAAAAHgAAAB4AKQALT1MvMgAAAZwAAABDAAAAVjxzSINjbWFwAAAB9AAAAEYAAAFK5zLpOGdhc3AAAARMAAAACAAAAAj//wADZ2x5ZgAAAkgAAACHAAAAnIfIEjxoZWFkAAABMAAAAC8AAAA2FZWEOWhoZWEAAAFgAAAAHAAAACQH3gOFaG10eAAAAeAAAAARAAAAEgwAAAFsb2NhAAACPAAAAAwAAAAMADAATm1heHAAAAF8AAAAHwAAACABEAAobmFtZQAAAtAAAAFJAAACiCnmEVVwb3N0AAAEHAAAAC0AAABV/+8iFXjaY2BkYGAA4gVmC5Tj+W2+MnCzMIDATWsFOQT9v5GFgbkeyOVgYAKJAgDrogf+AHjaY2BkYGBu+N/AEMPCAAJAkpEBFbAAAEcKAm142mNgZGBgYGWQYQDRDAxMQMwFhAwM/8F8BgALpAE5AHjaY2BkYWCcwMDKwMDUyXSGgYGhH0IzvmYwYuQAijKwMjNgBQFprikMDs9Yn01kbvjfwBDD3MDQABRmBMkBAOXpDHEAeNpjYYAAFghmZGAAAACdAA4AAAB42mNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZiesT6b+P8/AwOElvwnWQxVDwSMbAxwDiMTkGBiQAWMDMMeAABRZwszAAAAAAAAAAAAAAAwAE542iWKQQrCMBBF5xNpd0pQ7EIoTEnahSCTUNqdWz2A9TrieXKeXCc1qcPn/zfzh0BYv2pVH7oQgbvqdG5Yt/DTrNlPYz+wHvuuqhFSME4sFshTgKUsKfhH5lg8BSul3i5bS3mQdd0RIh2IjnvUrkXDd8zuhuFt86tY9fonIsSYgsXpB+cCGosAeNp9kD1OAzEQhZ/zByQSQiCoXVEA2vyUKRMp9Ailo0g23pBo1155nUg5AS0VB6DlGByAGyDRcgpelkmTImvt6PObmeexAZzjGwr/3yXuhBWO8ShcwREy4Sr1F+Ea+V24jhY+hRvUf4SbuFUD4RYu1BsdVO2Eu5vSbcsKZxgIV3CKJ+Eq9ZVwjfwqXMcVPoQb1L+EmxjjV7iFa2WpDOFhMEFgnEFjig3jAjEcLJIyBtahOfRmEsxMTzd6ETubOBso71dilwMeaDnngCntPbdmvkon/mDLgdSYbh4FS7YpjS4idCgbXyyc1d2oc7D9nu22tNi/a4E1x+xRDWzU/D3bM9JIbAyvkJI18jK3pBJTj2hrrPG7ZynW814IiU68y/SIx5o0dTr3bmniwOLn8owcfbS5kj33qBw+Y1kIeb/dTsQgil2GP5PYcRkAAAB42mNgYoAALjDJyIAOWMGiTIxMjMwiWZmJQJRXVQoigTgjMd9QGIsgAFDsEBsAAAAAAAAB//8AAgABAAAADAAAABYAAAACAAEAAwAEAAEABAAAAAIAAAAAeNpjYGBgZACCq0vUOUD0TWsFORgNADPBBE4AAA==)
|
|
193
|
+
format('woff');
|
|
194
|
+
font-weight: normal;
|
|
195
|
+
font-style: normal;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.fui-numbox-icon {
|
|
199
|
+
font-family: 'numberbox' !important;
|
|
200
|
+
font-style: normal;
|
|
201
|
+
-webkit-font-smoothing: antialiased;
|
|
202
|
+
-moz-osx-font-smoothing: grayscale;
|
|
203
|
+
padding: 5rpx;
|
|
204
|
+
background: #9e9e9e;
|
|
205
|
+
border-radius: 100%;
|
|
206
|
+
margin: 0 5px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.fui-icon-reduce:before {
|
|
210
|
+
content: '\e691';
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.fui-icon-plus:before {
|
|
214
|
+
content: '\e605';
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.fui-numberbox {
|
|
218
|
+
display: -webkit-inline-flex;
|
|
219
|
+
display: inline-flex;
|
|
220
|
+
align-items: center;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.fui-num-input {
|
|
224
|
+
text-align: center;
|
|
225
|
+
background: #ffffff;
|
|
226
|
+
border-radius: 3px;
|
|
227
|
+
border: 1px solid #d4d4d4;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.fui-disabled {
|
|
231
|
+
color: #ededed !important;
|
|
232
|
+
border-color: #ededed !important;
|
|
233
|
+
}
|
|
234
|
+
</style>
|