@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,284 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view
|
|
3
|
+
class="fui-tabs-view"
|
|
4
|
+
:class="[isFixed ? 'fui-tabs-fixed' : 'fui-tabs-relative', unlined ? 'fui-unlined' : '']"
|
|
5
|
+
:style="{
|
|
6
|
+
height: height + 'rpx',
|
|
7
|
+
padding: `0 ${padding}rpx`,
|
|
8
|
+
background: backgroundColor,
|
|
9
|
+
top: isFixed ? top + 'px' : 'auto'
|
|
10
|
+
}"
|
|
11
|
+
>
|
|
12
|
+
<view
|
|
13
|
+
v-for="(item, index) in tabs"
|
|
14
|
+
:key="index"
|
|
15
|
+
class="fui-tabs-item"
|
|
16
|
+
:style="{ width: itemWidth, borderRight: index < tabs.length - 1 ? borderRight : '' }"
|
|
17
|
+
@tap.stop="swichTabs(index)"
|
|
18
|
+
>
|
|
19
|
+
<view
|
|
20
|
+
class="fui-tabs-title"
|
|
21
|
+
:class="{ 'fui-tabs-active': currentTab == index, 'fui-tabs-disabled': item.disabled }"
|
|
22
|
+
:style="{
|
|
23
|
+
color: currentTab == index ? selectedColor : color,
|
|
24
|
+
fontSize: size + 'rpx',
|
|
25
|
+
lineHeight: lineHeight + 'rpx',
|
|
26
|
+
fontWeight: bold && currentTab == index ? 'bold' : 'normal'
|
|
27
|
+
}"
|
|
28
|
+
>
|
|
29
|
+
{{ item.name }}
|
|
30
|
+
</view>
|
|
31
|
+
</view>
|
|
32
|
+
<view
|
|
33
|
+
class="fui-tabs-slider"
|
|
34
|
+
:style="{
|
|
35
|
+
transform: 'translateX(' + scrollLeft + 'px)',
|
|
36
|
+
width: sliderWidth + 'rpx',
|
|
37
|
+
height: sliderHeight + 'rpx',
|
|
38
|
+
borderRadius: sliderRadius,
|
|
39
|
+
bottom: bottom,
|
|
40
|
+
background: sliderBgColor,
|
|
41
|
+
marginBottom: bottom == '50%' ? '-' + sliderHeight / 2 + 'rpx' : 0
|
|
42
|
+
}"
|
|
43
|
+
></view>
|
|
44
|
+
</view>
|
|
45
|
+
</template>
|
|
46
|
+
|
|
47
|
+
<script>
|
|
48
|
+
export default {
|
|
49
|
+
name: 'fuiTabs',
|
|
50
|
+
props: {
|
|
51
|
+
//标签页
|
|
52
|
+
tabs: {
|
|
53
|
+
type: Array,
|
|
54
|
+
default() {
|
|
55
|
+
return [];
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
//rpx
|
|
59
|
+
height: {
|
|
60
|
+
type: Number,
|
|
61
|
+
default: 88
|
|
62
|
+
},
|
|
63
|
+
//rpx 只对左右padding起作用,上下为0
|
|
64
|
+
padding: {
|
|
65
|
+
type: Number,
|
|
66
|
+
default: 30
|
|
67
|
+
},
|
|
68
|
+
//背景色
|
|
69
|
+
backgroundColor: {
|
|
70
|
+
type: String,
|
|
71
|
+
default: '#FFFFFF'
|
|
72
|
+
},
|
|
73
|
+
//是否固定
|
|
74
|
+
isFixed: {
|
|
75
|
+
type: Boolean,
|
|
76
|
+
default: false
|
|
77
|
+
},
|
|
78
|
+
//px
|
|
79
|
+
top: {
|
|
80
|
+
type: Number,
|
|
81
|
+
// #ifdef APP-PLUS
|
|
82
|
+
default: 70,
|
|
83
|
+
// #endif
|
|
84
|
+
// #ifdef H5
|
|
85
|
+
default: 44,
|
|
86
|
+
// #endif
|
|
87
|
+
|
|
88
|
+
// #ifdef MP
|
|
89
|
+
default: 54
|
|
90
|
+
// #endif
|
|
91
|
+
},
|
|
92
|
+
//是否去掉底部线条
|
|
93
|
+
unlined: {
|
|
94
|
+
type: Boolean,
|
|
95
|
+
default: false
|
|
96
|
+
},
|
|
97
|
+
//当前选项卡
|
|
98
|
+
currentTab: {
|
|
99
|
+
type: Number,
|
|
100
|
+
default: 0
|
|
101
|
+
},
|
|
102
|
+
//滑块宽度
|
|
103
|
+
sliderWidth: {
|
|
104
|
+
type: Number,
|
|
105
|
+
default: 68
|
|
106
|
+
},
|
|
107
|
+
//滑块高度
|
|
108
|
+
sliderHeight: {
|
|
109
|
+
type: Number,
|
|
110
|
+
default: 6
|
|
111
|
+
},
|
|
112
|
+
//滑块背景颜色
|
|
113
|
+
sliderBgColor: {
|
|
114
|
+
type: String,
|
|
115
|
+
default: '#6468D5'
|
|
116
|
+
},
|
|
117
|
+
sliderRadius: {
|
|
118
|
+
type: String,
|
|
119
|
+
default: '50rpx'
|
|
120
|
+
},
|
|
121
|
+
//滑块bottom
|
|
122
|
+
bottom: {
|
|
123
|
+
type: String,
|
|
124
|
+
default: '0'
|
|
125
|
+
},
|
|
126
|
+
borderRight: {
|
|
127
|
+
type: String,
|
|
128
|
+
default: '0'
|
|
129
|
+
},
|
|
130
|
+
//标签页宽度
|
|
131
|
+
itemWidth: {
|
|
132
|
+
type: String,
|
|
133
|
+
default: '25%'
|
|
134
|
+
},
|
|
135
|
+
//字体颜色
|
|
136
|
+
color: {
|
|
137
|
+
type: String,
|
|
138
|
+
default: '#333333'
|
|
139
|
+
},
|
|
140
|
+
//选中后字体颜色
|
|
141
|
+
selectedColor: {
|
|
142
|
+
type: String,
|
|
143
|
+
default: '#6468D5'
|
|
144
|
+
},
|
|
145
|
+
//字体大小
|
|
146
|
+
size: {
|
|
147
|
+
type: Number,
|
|
148
|
+
default: 32
|
|
149
|
+
},
|
|
150
|
+
lineHeight: {
|
|
151
|
+
type: Number,
|
|
152
|
+
default: 32
|
|
153
|
+
},
|
|
154
|
+
//选中后 是否加粗 ,未选中则无效
|
|
155
|
+
bold: {
|
|
156
|
+
type: Boolean,
|
|
157
|
+
default: false
|
|
158
|
+
},
|
|
159
|
+
// 滑块向左偏移位置
|
|
160
|
+
scrollRight: {
|
|
161
|
+
type: Number,
|
|
162
|
+
default: 0
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
watch: {
|
|
166
|
+
currentTab() {
|
|
167
|
+
this.checkCor();
|
|
168
|
+
},
|
|
169
|
+
tabs() {
|
|
170
|
+
this.checkCor();
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
created() {
|
|
174
|
+
setTimeout(() => {
|
|
175
|
+
// 高度自适应
|
|
176
|
+
uni.getSystemInfo({
|
|
177
|
+
success: (res) => {
|
|
178
|
+
this.winWidth = res.windowWidth;
|
|
179
|
+
this.checkCor();
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
}, 50);
|
|
183
|
+
},
|
|
184
|
+
data() {
|
|
185
|
+
return {
|
|
186
|
+
winWidth: 0,
|
|
187
|
+
scrollLeft: 0
|
|
188
|
+
};
|
|
189
|
+
},
|
|
190
|
+
methods: {
|
|
191
|
+
checkCor() {
|
|
192
|
+
let tabsNum = this.tabs.length;
|
|
193
|
+
let padding = (this.winWidth / 750) * this.padding;
|
|
194
|
+
let width = this.winWidth - padding * 2;
|
|
195
|
+
// console.log('checkCor',width,tabsNum,this.winWidth,this.sliderWidth,padding)
|
|
196
|
+
let left = (width / tabsNum - (this.winWidth / 750) * this.sliderWidth) / 2 + padding;
|
|
197
|
+
let scrollLeft = left;
|
|
198
|
+
if (this.currentTab > 0) {
|
|
199
|
+
scrollLeft = scrollLeft + (width / tabsNum) * this.currentTab;
|
|
200
|
+
}
|
|
201
|
+
this.scrollLeft = scrollLeft;
|
|
202
|
+
},
|
|
203
|
+
// 点击标题切换当前页时改变样式
|
|
204
|
+
swichTabs(index) {
|
|
205
|
+
let item = this.tabs[index];
|
|
206
|
+
if (item && item.disabled) return;
|
|
207
|
+
if (this.currentTab == index) {
|
|
208
|
+
return false;
|
|
209
|
+
} else {
|
|
210
|
+
this.$emit('change', {
|
|
211
|
+
index: Number(index)
|
|
212
|
+
});
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
};
|
|
217
|
+
</script>
|
|
218
|
+
|
|
219
|
+
<style scoped>
|
|
220
|
+
.fui-tabs-view {
|
|
221
|
+
width: 100%;
|
|
222
|
+
box-sizing: border-box;
|
|
223
|
+
display: flex;
|
|
224
|
+
align-items: center;
|
|
225
|
+
justify-content: space-between;
|
|
226
|
+
z-index: 995;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.fui-tabs-relative {
|
|
230
|
+
position: relative;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.fui-tabs-fixed {
|
|
234
|
+
position: fixed;
|
|
235
|
+
left: 0;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.fui-tabs-fixed::before,
|
|
239
|
+
.fui-tabs-relative::before {
|
|
240
|
+
content: '';
|
|
241
|
+
position: absolute;
|
|
242
|
+
border-bottom: 1rpx solid #eaeef1;
|
|
243
|
+
-webkit-transform: scaleY(0.5) translateZ(0);
|
|
244
|
+
transform: scaleY(0.5) translateZ(0);
|
|
245
|
+
transform-origin: 0 100%;
|
|
246
|
+
bottom: 0;
|
|
247
|
+
right: 0;
|
|
248
|
+
left: 0;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.fui-unlined::before {
|
|
252
|
+
border-bottom: 0 !important;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.fui-tabs-item {
|
|
256
|
+
display: flex;
|
|
257
|
+
align-items: center;
|
|
258
|
+
justify-content: center;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.fui-tabs-disabled {
|
|
262
|
+
opacity: 0.6;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.fui-tabs-title {
|
|
266
|
+
display: flex;
|
|
267
|
+
align-items: center;
|
|
268
|
+
justify-content: center;
|
|
269
|
+
position: relative;
|
|
270
|
+
z-index: 2;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.fui-tabs-active {
|
|
274
|
+
transition: all 0.15s ease-in-out;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.fui-tabs-slider {
|
|
278
|
+
position: absolute;
|
|
279
|
+
left: 0;
|
|
280
|
+
transition: all 0.15s ease-in-out;
|
|
281
|
+
z-index: 0;
|
|
282
|
+
transform: translateZ(0);
|
|
283
|
+
}
|
|
284
|
+
</style>
|
|
@@ -0,0 +1,374 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view
|
|
3
|
+
class="fui-tag"
|
|
4
|
+
:hover-class="hover ? 'fui-tag-opcity' : ''"
|
|
5
|
+
:hover-stay-time="150"
|
|
6
|
+
:class="[
|
|
7
|
+
originLeft ? 'fui-origin-left' : '',
|
|
8
|
+
originRight ? 'fui-origin-right' : '',
|
|
9
|
+
getClassName(shape, plain),
|
|
10
|
+
getTypeClass(type, plain)
|
|
11
|
+
]"
|
|
12
|
+
:style="{
|
|
13
|
+
transform: `scale(${scaleMultiple})`,
|
|
14
|
+
padding: padding,
|
|
15
|
+
margin: margin,
|
|
16
|
+
fontSize: size,
|
|
17
|
+
lineHeight: size,
|
|
18
|
+
width: width
|
|
19
|
+
}"
|
|
20
|
+
@tap="handleClick"
|
|
21
|
+
>
|
|
22
|
+
<slot></slot>
|
|
23
|
+
</view>
|
|
24
|
+
</template>
|
|
25
|
+
|
|
26
|
+
<script>
|
|
27
|
+
export default {
|
|
28
|
+
name: 'fuiTag',
|
|
29
|
+
props: {
|
|
30
|
+
type: {
|
|
31
|
+
type: String,
|
|
32
|
+
default: 'primary'
|
|
33
|
+
},
|
|
34
|
+
//padding
|
|
35
|
+
padding: {
|
|
36
|
+
type: String,
|
|
37
|
+
default: '16rpx 26rpx'
|
|
38
|
+
},
|
|
39
|
+
margin: {
|
|
40
|
+
type: String,
|
|
41
|
+
default: '0'
|
|
42
|
+
},
|
|
43
|
+
//文字大小 rpx
|
|
44
|
+
size: {
|
|
45
|
+
type: String,
|
|
46
|
+
default: '28rpx'
|
|
47
|
+
},
|
|
48
|
+
width: {
|
|
49
|
+
type: String,
|
|
50
|
+
default: 'auto'
|
|
51
|
+
},
|
|
52
|
+
// circle, square,circleLeft,circleRight
|
|
53
|
+
shape: {
|
|
54
|
+
type: String,
|
|
55
|
+
default: 'square'
|
|
56
|
+
},
|
|
57
|
+
//是否空心
|
|
58
|
+
plain: {
|
|
59
|
+
type: Boolean,
|
|
60
|
+
default: false
|
|
61
|
+
},
|
|
62
|
+
//点击效果
|
|
63
|
+
hover: {
|
|
64
|
+
type: Boolean,
|
|
65
|
+
default: false
|
|
66
|
+
},
|
|
67
|
+
//缩放倍数
|
|
68
|
+
scaleMultiple: {
|
|
69
|
+
type: Number,
|
|
70
|
+
default: 1
|
|
71
|
+
},
|
|
72
|
+
originLeft: {
|
|
73
|
+
type: Boolean,
|
|
74
|
+
default: false
|
|
75
|
+
},
|
|
76
|
+
originRight: {
|
|
77
|
+
type: Boolean,
|
|
78
|
+
default: false
|
|
79
|
+
},
|
|
80
|
+
index: {
|
|
81
|
+
type: Number,
|
|
82
|
+
default: 0
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
methods: {
|
|
86
|
+
handleClick() {
|
|
87
|
+
this.$emit('click', { index: this.index });
|
|
88
|
+
},
|
|
89
|
+
getTypeClass(type, plain) {
|
|
90
|
+
return plain ? 'fui-' + type + '-outline' : 'fui-' + type;
|
|
91
|
+
},
|
|
92
|
+
getClassName(shape, plain) {
|
|
93
|
+
//circle, square,circleLeft,circleRight
|
|
94
|
+
var className = plain ? 'fui-tag-outline ' : '';
|
|
95
|
+
if (shape != 'square') {
|
|
96
|
+
if (shape == 'circle') {
|
|
97
|
+
className = className + (plain ? 'fui-tag-outline-fillet' : 'fui-tag-fillet');
|
|
98
|
+
} else if (shape == 'circleLeft') {
|
|
99
|
+
className = className + 'fui-tag-fillet-left';
|
|
100
|
+
} else if (shape == 'circleRight') {
|
|
101
|
+
className = className + 'fui-tag-fillet-right';
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
return className;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
</script>
|
|
109
|
+
|
|
110
|
+
<style scoped>
|
|
111
|
+
/* color start*/
|
|
112
|
+
|
|
113
|
+
.fui-primary {
|
|
114
|
+
background-color: #5677fc !important;
|
|
115
|
+
color: #fff;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.fui-light-primary {
|
|
119
|
+
background-color: #5c8dff !important;
|
|
120
|
+
color: #fff;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.fui-dark-primary {
|
|
124
|
+
background-color: #4a67d6 !important;
|
|
125
|
+
color: #fff;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.fui-dLight-primary {
|
|
129
|
+
background-color: #4e77d9 !important;
|
|
130
|
+
color: #fff;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.fui-danger {
|
|
134
|
+
background-color: #ed3f14 !important;
|
|
135
|
+
color: #fff;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.fui-red {
|
|
139
|
+
background-color: #ff201f !important;
|
|
140
|
+
color: #fff;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.fui-warning {
|
|
144
|
+
background-color: #ff7900 !important;
|
|
145
|
+
color: #fff;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.fui-green {
|
|
149
|
+
background-color: #19be6b !important;
|
|
150
|
+
color: #fff;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.fui-high-green {
|
|
154
|
+
background-color: #52dcae !important;
|
|
155
|
+
color: #52dcae;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.fui-black {
|
|
159
|
+
background-color: #000 !important;
|
|
160
|
+
color: #fff;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.fui-white {
|
|
164
|
+
background-color: #fff !important;
|
|
165
|
+
color: #333 !important;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.fui-translucent {
|
|
169
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.fui-light-black {
|
|
173
|
+
background-color: #333 !important;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.fui-gray {
|
|
177
|
+
background-color: #ededed !important;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.fui-phcolor-gray {
|
|
181
|
+
background-color: #ccc !important;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.fui-divider-gray {
|
|
185
|
+
background-color: #eaeef1 !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.fui-btn-gray {
|
|
189
|
+
background-color: #ededed !important;
|
|
190
|
+
color: #999 !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.fui-hover-gray {
|
|
194
|
+
background-color: #f7f7f9 !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.fui-bg-gray {
|
|
198
|
+
background-color: #fafafa !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.fui-light-blue {
|
|
202
|
+
background-color: #ecf6fd;
|
|
203
|
+
color: #4dabeb !important;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.fui-light-brownish {
|
|
207
|
+
background-color: rgb(201, 78, 78, 0.2);
|
|
208
|
+
color: #c94e4e !important;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.fui-light-orange {
|
|
212
|
+
background-color: #fef5eb;
|
|
213
|
+
color: #faa851 !important;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.fui-light-green {
|
|
217
|
+
background-color: rgb(43, 161, 133, 0.1);
|
|
218
|
+
color: #2ba185 !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.fui-primary-outline::after {
|
|
222
|
+
border: 1px solid #5677fc !important;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.fui-primary-outline {
|
|
226
|
+
color: #5677fc !important;
|
|
227
|
+
background-color: none;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.fui-danger-outline {
|
|
231
|
+
color: #ed3f14 !important;
|
|
232
|
+
background-color: none;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.fui-danger-outline::after {
|
|
236
|
+
border: 1px solid #ed3f14 !important;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.fui-red-outline {
|
|
240
|
+
color: #ff201f !important;
|
|
241
|
+
background-color: none;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.fui-red-outline::after {
|
|
245
|
+
border: 1px solid #ff201f !important;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.fui-warning-outline {
|
|
249
|
+
color: #ff7900 !important;
|
|
250
|
+
background-color: none;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.fui-warning-outline::after {
|
|
254
|
+
border: 1px solid #ff7900 !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.fui-green-outline {
|
|
258
|
+
color: #44cf85 !important;
|
|
259
|
+
background-color: none;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.fui-green-outline::after {
|
|
263
|
+
border: 1px solid #44cf85 !important;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.fui-high-green-outline {
|
|
267
|
+
color: #52dcae !important;
|
|
268
|
+
background-color: none;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.fui-high-green-outline::after {
|
|
272
|
+
border: 1px solid #52dcae !important;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.fui-gray-outline {
|
|
276
|
+
color: #999 !important;
|
|
277
|
+
background-color: none;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.fui-gray-outline::after {
|
|
281
|
+
border: 1px solid #ccc !important;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.fui-black-outline {
|
|
285
|
+
color: #333 !important;
|
|
286
|
+
background-color: none;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.fui-black-outline::after {
|
|
290
|
+
border: 1px solid #333 !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.fui-white-outline {
|
|
294
|
+
color: #fff !important;
|
|
295
|
+
background-color: none;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.fui-white-outline::after {
|
|
299
|
+
border: 1px solid #fff !important;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/* color end*/
|
|
303
|
+
|
|
304
|
+
/* tag start*/
|
|
305
|
+
|
|
306
|
+
.fui-tag {
|
|
307
|
+
display: flex;
|
|
308
|
+
align-items: center;
|
|
309
|
+
justify-content: center;
|
|
310
|
+
border-radius: 6rpx;
|
|
311
|
+
flex-shrink: 0;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.fui-tag-outline {
|
|
315
|
+
position: relative;
|
|
316
|
+
background-color: none;
|
|
317
|
+
color: #5677fc;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.fui-tag-outline::after {
|
|
321
|
+
content: '';
|
|
322
|
+
position: absolute;
|
|
323
|
+
width: 200%;
|
|
324
|
+
height: 200%;
|
|
325
|
+
-webkit-transform-origin: 0 0;
|
|
326
|
+
transform-origin: 0 0;
|
|
327
|
+
-webkit-transform: scale(0.5, 0.5);
|
|
328
|
+
transform: scale(0.5, 0.5);
|
|
329
|
+
-webkit-box-sizing: border-box;
|
|
330
|
+
box-sizing: border-box;
|
|
331
|
+
left: 0;
|
|
332
|
+
top: 0;
|
|
333
|
+
border-radius: 12rpx;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.fui-tag-fillet {
|
|
337
|
+
border-radius: 50rpx;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.fui-white.fui-tag-fillet::after {
|
|
341
|
+
border-radius: 80rpx;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.fui-tag-outline-fillet::after {
|
|
345
|
+
border-radius: 80rpx;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.fui-tag-fillet-left {
|
|
349
|
+
border-radius: 50rpx 0 0 50rpx;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.fui-tag-fillet-right {
|
|
353
|
+
border-radius: 0 50rpx 50rpx 0;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.fui-tag-fillet-left.fui-tag-outline::after {
|
|
357
|
+
border-radius: 100rpx 0 0 100rpx;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.fui-tag-fillet-right.fui-tag-outline::after {
|
|
361
|
+
border-radius: 0 100rpx 100rpx 0;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
/* tag end*/
|
|
365
|
+
.fui-origin-left {
|
|
366
|
+
transform-origin: 0 center;
|
|
367
|
+
}
|
|
368
|
+
.fui-origin-right {
|
|
369
|
+
transform-origin: 100% center;
|
|
370
|
+
}
|
|
371
|
+
.fui-tag-opcity {
|
|
372
|
+
opacity: 0.5;
|
|
373
|
+
}
|
|
374
|
+
</style>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="fui-timeaxis-class fui-time-axis">
|
|
3
|
+
<slot></slot>
|
|
4
|
+
</view>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
name: 'fuiTimeAxis',
|
|
10
|
+
data() {
|
|
11
|
+
return {};
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<style scoped>
|
|
17
|
+
.fui-time-axis {
|
|
18
|
+
padding-left: 20px;
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
position: relative;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.fui-time-axis::before {
|
|
24
|
+
content: ' ';
|
|
25
|
+
position: absolute;
|
|
26
|
+
left: 0;
|
|
27
|
+
top: 0;
|
|
28
|
+
width: 1px;
|
|
29
|
+
bottom: 0;
|
|
30
|
+
border-left: 1px solid #ddd;
|
|
31
|
+
-webkit-transform-origin: 0 0;
|
|
32
|
+
transform-origin: 0 0;
|
|
33
|
+
-webkit-transform: scaleX(0.5);
|
|
34
|
+
transform: scaleX(0.5);
|
|
35
|
+
}
|
|
36
|
+
</style>
|