uview-ui-wjf 1.0.0
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/LICENSE +21 -0
- package/README.md +71 -0
- package/changelog.md +388 -0
- package/components/u--form/u--form.vue +92 -0
- package/components/u--image/u--image.vue +73 -0
- package/components/u--input/u--input.vue +115 -0
- package/components/u--text/u--text.vue +72 -0
- package/components/u--textarea/u--textarea.vue +85 -0
- package/components/u-action-sheet/props.js +54 -0
- package/components/u-action-sheet/u-action-sheet.vue +278 -0
- package/components/u-album/props.js +59 -0
- package/components/u-album/u-album.vue +259 -0
- package/components/u-alert/props.js +44 -0
- package/components/u-alert/u-alert.vue +243 -0
- package/components/u-avatar/props.js +78 -0
- package/components/u-avatar/u-avatar.vue +173 -0
- package/components/u-avatar-group/props.js +52 -0
- package/components/u-avatar-group/u-avatar-group.vue +103 -0
- package/components/u-back-top/props.js +54 -0
- package/components/u-back-top/u-back-top.vue +129 -0
- package/components/u-badge/props.js +72 -0
- package/components/u-badge/u-badge.vue +171 -0
- package/components/u-button/nvue.scss +46 -0
- package/components/u-button/props.js +161 -0
- package/components/u-button/u-button.vue +495 -0
- package/components/u-button/vue.scss +80 -0
- package/components/u-calendar/header.vue +99 -0
- package/components/u-calendar/month.vue +579 -0
- package/components/u-calendar/props.js +144 -0
- package/components/u-calendar/u-calendar.vue +384 -0
- package/components/u-calendar/util.js +85 -0
- package/components/u-car-keyboard/props.js +14 -0
- package/components/u-car-keyboard/u-car-keyboard.vue +311 -0
- package/components/u-cell/props.js +110 -0
- package/components/u-cell/u-cell.vue +229 -0
- package/components/u-cell-group/props.js +14 -0
- package/components/u-cell-group/u-cell-group.vue +61 -0
- package/components/u-checkbox/props.js +69 -0
- package/components/u-checkbox/u-checkbox.vue +344 -0
- package/components/u-checkbox-group/props.js +82 -0
- package/components/u-checkbox-group/u-checkbox-group.vue +103 -0
- package/components/u-circle-progress/props.js +8 -0
- package/components/u-circle-progress/u-circle-progress.vue +198 -0
- package/components/u-code/props.js +34 -0
- package/components/u-code/u-code.vue +129 -0
- package/components/u-code-input/props.js +79 -0
- package/components/u-code-input/u-code-input.vue +252 -0
- package/components/u-col/props.js +29 -0
- package/components/u-col/u-col.vue +162 -0
- package/components/u-collapse/props.js +19 -0
- package/components/u-collapse/u-collapse.vue +90 -0
- package/components/u-collapse-item/props.js +59 -0
- package/components/u-collapse-item/u-collapse-item.vue +225 -0
- package/components/u-column-notice/props.js +55 -0
- package/components/u-column-notice/u-column-notice.vue +160 -0
- package/components/u-count-down/props.js +24 -0
- package/components/u-count-down/u-count-down.vue +163 -0
- package/components/u-count-down/utils.js +62 -0
- package/components/u-count-to/props.js +59 -0
- package/components/u-count-to/u-count-to.vue +184 -0
- package/components/u-datetime-picker/props.js +120 -0
- package/components/u-datetime-picker/u-datetime-picker.vue +361 -0
- package/components/u-divider/props.js +44 -0
- package/components/u-divider/u-divider.vue +116 -0
- package/components/u-dropdown/props.js +65 -0
- package/components/u-dropdown/u-dropdown.vue +127 -0
- package/components/u-dropdown-item/props.js +36 -0
- package/components/u-dropdown-item/u-dropdown-item.vue +127 -0
- package/components/u-empty/props.js +59 -0
- package/components/u-empty/u-empty.vue +128 -0
- package/components/u-form/props.js +45 -0
- package/components/u-form/u-form.vue +214 -0
- package/components/u-form-item/props.js +48 -0
- package/components/u-form-item/u-form-item.vue +235 -0
- package/components/u-gap/props.js +24 -0
- package/components/u-gap/u-gap.vue +38 -0
- package/components/u-grid/props.js +19 -0
- package/components/u-grid/u-grid.vue +97 -0
- package/components/u-grid-item/props.js +14 -0
- package/components/u-grid-item/u-grid-item.vue +209 -0
- package/components/u-icon/icons.js +214 -0
- package/components/u-icon/props.js +89 -0
- package/components/u-icon/u-icon.vue +237 -0
- package/components/u-image/props.js +84 -0
- package/components/u-image/u-image.vue +232 -0
- package/components/u-index-anchor/props.js +29 -0
- package/components/u-index-anchor/u-index-anchor.vue +91 -0
- package/components/u-index-item/props.js +5 -0
- package/components/u-index-item/u-index-item.vue +87 -0
- package/components/u-index-list/props.js +29 -0
- package/components/u-index-list/u-index-list.vue +440 -0
- package/components/u-input/props.js +187 -0
- package/components/u-input/u-input.vue +369 -0
- package/components/u-keyboard/props.js +84 -0
- package/components/u-keyboard/u-keyboard.vue +164 -0
- package/components/u-line/props.js +33 -0
- package/components/u-line/u-line.vue +62 -0
- package/components/u-line-progress/props.js +28 -0
- package/components/u-line-progress/u-line-progress.vue +144 -0
- package/components/u-link/props.js +39 -0
- package/components/u-link/u-link.vue +83 -0
- package/components/u-list/props.js +76 -0
- package/components/u-list/u-list.vue +157 -0
- package/components/u-list-item/props.js +9 -0
- package/components/u-list-item/u-list-item.vue +116 -0
- package/components/u-loading-icon/props.js +59 -0
- package/components/u-loading-icon/u-loading-icon.vue +343 -0
- package/components/u-loading-page/props.js +49 -0
- package/components/u-loading-page/u-loading-page.vue +115 -0
- package/components/u-loadmore/props.js +94 -0
- package/components/u-loadmore/u-loadmore.vue +150 -0
- package/components/u-modal/props.js +89 -0
- package/components/u-modal/u-modal.vue +228 -0
- package/components/u-navbar/props.js +84 -0
- package/components/u-navbar/u-navbar.vue +186 -0
- package/components/u-no-network/props.js +19 -0
- package/components/u-no-network/u-no-network.vue +220 -0
- package/components/u-notice-bar/props.js +70 -0
- package/components/u-notice-bar/u-notice-bar.vue +101 -0
- package/components/u-notify/props.js +49 -0
- package/components/u-notify/u-notify.vue +211 -0
- package/components/u-number-box/props.js +109 -0
- package/components/u-number-box/u-number-box.vue +416 -0
- package/components/u-number-keyboard/props.js +19 -0
- package/components/u-number-keyboard/u-number-keyboard.vue +196 -0
- package/components/u-overlay/props.js +24 -0
- package/components/u-overlay/u-overlay.vue +68 -0
- package/components/u-parse/node/node.vue +499 -0
- package/components/u-parse/parser.js +1075 -0
- package/components/u-parse/props.js +45 -0
- package/components/u-parse/u-parse.vue +366 -0
- package/components/u-picker/props.js +79 -0
- package/components/u-picker/u-picker.vue +286 -0
- package/components/u-picker-column/props.js +5 -0
- package/components/u-picker-column/u-picker-column.vue +27 -0
- package/components/u-popup/props.js +79 -0
- package/components/u-popup/u-popup.vue +304 -0
- package/components/u-radio/props.js +64 -0
- package/components/u-radio/u-radio.vue +339 -0
- package/components/u-radio-group/props.js +85 -0
- package/components/u-radio-group/u-radio-group.vue +108 -0
- package/components/u-rate/props.js +69 -0
- package/components/u-rate/u-rate.vue +306 -0
- package/components/u-read-more/props.js +61 -0
- package/components/u-read-more/u-read-more.vue +157 -0
- package/components/u-row/props.js +19 -0
- package/components/u-row/u-row.vue +93 -0
- package/components/u-row-notice/props.js +39 -0
- package/components/u-row-notice/u-row-notice.vue +330 -0
- package/components/u-safe-bottom/props.js +5 -0
- package/components/u-safe-bottom/u-safe-bottom.vue +56 -0
- package/components/u-scroll-list/nvue.js +28 -0
- package/components/u-scroll-list/other.js +0 -0
- package/components/u-scroll-list/props.js +34 -0
- package/components/u-scroll-list/scrollWxs.wxs +50 -0
- package/components/u-scroll-list/u-scroll-list.vue +224 -0
- package/components/u-search/props.js +118 -0
- package/components/u-search/u-search.vue +303 -0
- package/components/u-skeleton/props.js +59 -0
- package/components/u-skeleton/u-skeleton.vue +244 -0
- package/components/u-slider/mpother.js +113 -0
- package/components/u-slider/mpwxs.js +42 -0
- package/components/u-slider/mpwxs.wxs +121 -0
- package/components/u-slider/nvue - /345/211/257/346/234/254.js" +180 -0
- package/components/u-slider/nvue.js +193 -0
- package/components/u-slider/props.js +54 -0
- package/components/u-slider/u-slider.vue +55 -0
- package/components/u-status-bar/props.js +8 -0
- package/components/u-status-bar/u-status-bar.vue +46 -0
- package/components/u-steps/props.js +39 -0
- package/components/u-steps/u-steps.vue +80 -0
- package/components/u-steps-item/props.js +24 -0
- package/components/u-steps-item/u-steps-item.vue +316 -0
- package/components/u-sticky/props.js +40 -0
- package/components/u-sticky/u-sticky.vue +212 -0
- package/components/u-subsection/props.js +49 -0
- package/components/u-subsection/u-subsection.vue +299 -0
- package/components/u-swipe-action/props.js +9 -0
- package/components/u-swipe-action/u-swipe-action.vue +67 -0
- package/components/u-swipe-action-item/index - backup.wxs +256 -0
- package/components/u-swipe-action-item/index.wxs +225 -0
- package/components/u-swipe-action-item/nvue - backup.js +270 -0
- package/components/u-swipe-action-item/nvue.js +174 -0
- package/components/u-swipe-action-item/props.js +41 -0
- package/components/u-swipe-action-item/u-swipe-action-item.vue +190 -0
- package/components/u-swipe-action-item/wxs.js +15 -0
- package/components/u-swiper/props.js +125 -0
- package/components/u-swiper/u-swiper.vue +255 -0
- package/components/u-swiper-indicator/props.js +29 -0
- package/components/u-swiper-indicator/u-swiper-indicator.vue +110 -0
- package/components/u-switch/props.js +54 -0
- package/components/u-switch/u-switch.vue +177 -0
- package/components/u-tabbar/props.js +44 -0
- package/components/u-tabbar/u-tabbar.vue +141 -0
- package/components/u-tabbar-item/props.js +35 -0
- package/components/u-tabbar-item/u-tabbar-item.vue +142 -0
- package/components/u-table/props.js +5 -0
- package/components/u-table/u-table.vue +29 -0
- package/components/u-tabs/props.js +64 -0
- package/components/u-tabs/u-tabs.vue +363 -0
- package/components/u-tabs-item/props.js +5 -0
- package/components/u-tabs-item/u-tabs-item.vue +29 -0
- package/components/u-tag/props.js +84 -0
- package/components/u-tag/u-tag.vue +358 -0
- package/components/u-td/props.js +5 -0
- package/components/u-td/u-td.vue +31 -0
- package/components/u-text/props.js +110 -0
- package/components/u-text/u-text.vue +223 -0
- package/components/u-text/value.js +85 -0
- package/components/u-textarea/props.js +119 -0
- package/components/u-textarea/u-textarea.vue +239 -0
- package/components/u-toast/u-toast.vue +291 -0
- package/components/u-toolbar/props.js +34 -0
- package/components/u-toolbar/u-toolbar.vue +102 -0
- package/components/u-tooltip/clipboard.min.js +58 -0
- package/components/u-tooltip/props.js +59 -0
- package/components/u-tooltip/u-tooltip.vue +366 -0
- package/components/u-tr/props.js +5 -0
- package/components/u-tr/u-tr.vue +31 -0
- package/components/u-transition/nvue.ani-map.js +68 -0
- package/components/u-transition/props.js +24 -0
- package/components/u-transition/transition.js +157 -0
- package/components/u-transition/u-transition.vue +92 -0
- package/components/u-transition/vue.ani-style.scss +113 -0
- package/components/u-upload/mixin.js +21 -0
- package/components/u-upload/props.js +124 -0
- package/components/u-upload/u-upload.vue +566 -0
- package/components/u-upload/utils.js +151 -0
- package/components/uview-ui/uview-ui.vue +15 -0
- package/index.js +79 -0
- package/index.scss +23 -0
- package/libs/config/color.js +17 -0
- package/libs/config/config.js +34 -0
- package/libs/config/props/actionSheet.js +25 -0
- package/libs/config/props/album.js +25 -0
- package/libs/config/props/alert.js +22 -0
- package/libs/config/props/avatar.js +28 -0
- package/libs/config/props/avatarGroup.js +23 -0
- package/libs/config/props/backtop.js +27 -0
- package/libs/config/props/badge.js +27 -0
- package/libs/config/props/button.js +42 -0
- package/libs/config/props/calendar.js +42 -0
- package/libs/config/props/carKeyboard.js +15 -0
- package/libs/config/props/cell.js +35 -0
- package/libs/config/props/cellGroup.js +17 -0
- package/libs/config/props/checkbox.js +27 -0
- package/libs/config/props/checkboxGroup.js +29 -0
- package/libs/config/props/circleProgress.js +15 -0
- package/libs/config/props/code.js +21 -0
- package/libs/config/props/codeInput.js +29 -0
- package/libs/config/props/col.js +19 -0
- package/libs/config/props/collapse.js +17 -0
- package/libs/config/props/collapseItem.js +25 -0
- package/libs/config/props/columnNotice.js +24 -0
- package/libs/config/props/countDown.js +18 -0
- package/libs/config/props/countTo.js +25 -0
- package/libs/config/props/datetimePicker.js +37 -0
- package/libs/config/props/divider.js +23 -0
- package/libs/config/props/empty.js +26 -0
- package/libs/config/props/form.js +22 -0
- package/libs/config/props/formItem.js +23 -0
- package/libs/config/props/gap.js +19 -0
- package/libs/config/props/grid.js +17 -0
- package/libs/config/props/gridItem.js +16 -0
- package/libs/config/props/icon.js +36 -0
- package/libs/config/props/image.js +30 -0
- package/libs/config/props/indexAnchor.js +19 -0
- package/libs/config/props/indexList.js +19 -0
- package/libs/config/props/input.js +48 -0
- package/libs/config/props/keyboard.js +30 -0
- package/libs/config/props/line.js +20 -0
- package/libs/config/props/lineProgress.js +19 -0
- package/libs/config/props/link.js +26 -0
- package/libs/config/props/list.js +28 -0
- package/libs/config/props/listItem.js +15 -0
- package/libs/config/props/loadingIcon.js +30 -0
- package/libs/config/props/loadingPage.js +23 -0
- package/libs/config/props/loadmore.js +32 -0
- package/libs/config/props/modal.js +31 -0
- package/libs/config/props/navbar.js +32 -0
- package/libs/config/props/noNetwork.js +18 -0
- package/libs/config/props/noticeBar.js +27 -0
- package/libs/config/props/notify.js +22 -0
- package/libs/config/props/numberBox.js +35 -0
- package/libs/config/props/numberKeyboard.js +17 -0
- package/libs/config/props/overlay.js +18 -0
- package/libs/config/props/parse.js +22 -0
- package/libs/config/props/picker.js +29 -0
- package/libs/config/props/popup.js +29 -0
- package/libs/config/props/radio.js +27 -0
- package/libs/config/props/radioGroup.js +30 -0
- package/libs/config/props/rate.js +26 -0
- package/libs/config/props/readMore.js +22 -0
- package/libs/config/props/row.js +17 -0
- package/libs/config/props/rowNotice.js +21 -0
- package/libs/config/props/scrollList.js +20 -0
- package/libs/config/props/search.js +37 -0
- package/libs/config/props/section.js +24 -0
- package/libs/config/props/skeleton.js +25 -0
- package/libs/config/props/slider.js +25 -0
- package/libs/config/props/statusBar.js +15 -0
- package/libs/config/props/steps.js +21 -0
- package/libs/config/props/stepsItem.js +18 -0
- package/libs/config/props/sticky.js +20 -0
- package/libs/config/props/subsection.js +23 -0
- package/libs/config/props/swipeAction.js +15 -0
- package/libs/config/props/swipeActionItem.js +21 -0
- package/libs/config/props/swiper.js +39 -0
- package/libs/config/props/swipterIndicator.js +19 -0
- package/libs/config/props/switch.js +24 -0
- package/libs/config/props/tabbar.js +22 -0
- package/libs/config/props/tabbarItem.js +20 -0
- package/libs/config/props/tabs.js +32 -0
- package/libs/config/props/tag.js +29 -0
- package/libs/config/props/text.js +38 -0
- package/libs/config/props/textarea.js +36 -0
- package/libs/config/props/toast.js +30 -0
- package/libs/config/props/toolbar.js +21 -0
- package/libs/config/props/tooltip.js +25 -0
- package/libs/config/props/transition.js +18 -0
- package/libs/config/props/upload.js +36 -0
- package/libs/config/props.js +190 -0
- package/libs/config/zIndex.js +20 -0
- package/libs/css/color.scss +155 -0
- package/libs/css/common.scss +97 -0
- package/libs/css/components.scss +15 -0
- package/libs/css/flex.scss +257 -0
- package/libs/css/h5.scss +0 -0
- package/libs/css/mixin.scss +8 -0
- package/libs/css/mp.scss +0 -0
- package/libs/css/nvue.scss +0 -0
- package/libs/css/vue.scss +27 -0
- package/libs/function/colorGradient.js +134 -0
- package/libs/function/debounce.js +29 -0
- package/libs/function/digit.js +167 -0
- package/libs/function/index.js +731 -0
- package/libs/function/platform.js +75 -0
- package/libs/function/test.js +288 -0
- package/libs/function/throttle.js +30 -0
- package/libs/luch-request/adapters/index.js +97 -0
- package/libs/luch-request/core/InterceptorManager.js +50 -0
- package/libs/luch-request/core/Request.js +198 -0
- package/libs/luch-request/core/buildFullPath.js +20 -0
- package/libs/luch-request/core/defaults.js +29 -0
- package/libs/luch-request/core/dispatchRequest.js +3 -0
- package/libs/luch-request/core/mergeConfig.js +103 -0
- package/libs/luch-request/core/settle.js +16 -0
- package/libs/luch-request/helpers/buildURL.js +69 -0
- package/libs/luch-request/helpers/combineURLs.js +14 -0
- package/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/libs/luch-request/index.d.ts +116 -0
- package/libs/luch-request/index.js +3 -0
- package/libs/luch-request/utils/clone.js +264 -0
- package/libs/luch-request/utils.js +131 -0
- package/libs/mixin/button.js +13 -0
- package/libs/mixin/mixin.js +160 -0
- package/libs/mixin/mpMixin.js +8 -0
- package/libs/mixin/mpShare.js +13 -0
- package/libs/mixin/openType.js +25 -0
- package/libs/mixin/style.js +228 -0
- package/libs/mixin/touch.js +59 -0
- package/libs/util/async-validator.js +1343 -0
- package/libs/util/calendar.js +546 -0
- package/libs/util/dayjs.js +308 -0
- package/libs/util/emitter.js +51 -0
- package/libs/util/route.js +124 -0
- package/package.json +83 -0
- package/theme.scss +44 -0
|
@@ -0,0 +1,579 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="u-calendar-month-wrapper" ref="u-calendar-month-wrapper">
|
|
3
|
+
<view v-for="(item, index) in months" :key="index" :class="[`u-calendar-month-${index}`]"
|
|
4
|
+
:ref="`u-calendar-month-${index}`" :id="`month-${index}`">
|
|
5
|
+
<text v-if="index !== 0" class="u-calendar-month__title">{{ item.year }}年{{ item.month }}月</text>
|
|
6
|
+
<view class="u-calendar-month__days">
|
|
7
|
+
<view v-if="showMark" class="u-calendar-month__days__month-mark-wrapper">
|
|
8
|
+
<text class="u-calendar-month__days__month-mark-wrapper__text">{{ item.month }}</text>
|
|
9
|
+
</view>
|
|
10
|
+
<view class="u-calendar-month__days__day" v-for="(item1, index1) in item.date" :key="index1"
|
|
11
|
+
:style="[dayStyle(index, index1, item1)]" @tap="clickHandler(index, index1, item1)"
|
|
12
|
+
:class="[item1.selected && 'u-calendar-month__days__day__select--selected']">
|
|
13
|
+
<view class="u-calendar-month__days__day__select" :style="[daySelectStyle(index, index1, item1)]">
|
|
14
|
+
<text class="u-calendar-month__days__day__select__info"
|
|
15
|
+
:class="[item1.disabled && 'u-calendar-month__days__day__select__info--disabled']"
|
|
16
|
+
:style="[textStyle(item1)]">{{ item1.day }}</text>
|
|
17
|
+
<text v-if="getBottomInfo(index, index1, item1)"
|
|
18
|
+
class="u-calendar-month__days__day__select__buttom-info"
|
|
19
|
+
:class="[item1.disabled && 'u-calendar-month__days__day__select__buttom-info--disabled']"
|
|
20
|
+
:style="[textStyle(item1)]">{{ getBottomInfo(index, index1, item1) }}</text>
|
|
21
|
+
<text v-if="item1.dot" class="u-calendar-month__days__day__select__dot"></text>
|
|
22
|
+
</view>
|
|
23
|
+
</view>
|
|
24
|
+
</view>
|
|
25
|
+
</view>
|
|
26
|
+
</view>
|
|
27
|
+
</template>
|
|
28
|
+
|
|
29
|
+
<script>
|
|
30
|
+
// #ifdef APP-NVUE
|
|
31
|
+
// 由于nvue不支持百分比单位,需要查询宽度来计算每个日期的宽度
|
|
32
|
+
const dom = uni.requireNativePlugin('dom')
|
|
33
|
+
// #endif
|
|
34
|
+
import dayjs from '../../libs/util/dayjs.js';
|
|
35
|
+
export default {
|
|
36
|
+
name: 'u-calendar-month',
|
|
37
|
+
mixins: [uni.$u.mpMixin, uni.$u.mixin],
|
|
38
|
+
props: {
|
|
39
|
+
// 是否显示月份背景色
|
|
40
|
+
showMark: {
|
|
41
|
+
type: Boolean,
|
|
42
|
+
default: true
|
|
43
|
+
},
|
|
44
|
+
// 主题色,对底部按钮和选中日期有效
|
|
45
|
+
color: {
|
|
46
|
+
type: String,
|
|
47
|
+
default: '#3c9cff'
|
|
48
|
+
},
|
|
49
|
+
// 月份数据
|
|
50
|
+
months: {
|
|
51
|
+
type: Array,
|
|
52
|
+
default: () => []
|
|
53
|
+
},
|
|
54
|
+
// 日期选择类型
|
|
55
|
+
mode: {
|
|
56
|
+
type: String,
|
|
57
|
+
default: 'single'
|
|
58
|
+
},
|
|
59
|
+
// 日期行高
|
|
60
|
+
rowHeight: {
|
|
61
|
+
type: [String, Number],
|
|
62
|
+
default: 58
|
|
63
|
+
},
|
|
64
|
+
// mode=multiple时,最多可选多少个日期
|
|
65
|
+
maxCount: {
|
|
66
|
+
type: [String, Number],
|
|
67
|
+
default: Infinity
|
|
68
|
+
},
|
|
69
|
+
// mode=range时,第一个日期底部的提示文字
|
|
70
|
+
startText: {
|
|
71
|
+
type: String,
|
|
72
|
+
default: '开始'
|
|
73
|
+
},
|
|
74
|
+
// mode=range时,最后一个日期底部的提示文字
|
|
75
|
+
endText: {
|
|
76
|
+
type: String,
|
|
77
|
+
default: '结束'
|
|
78
|
+
},
|
|
79
|
+
// 默认选中的日期,mode为multiple或range是必须为数组格式
|
|
80
|
+
defaultDate: {
|
|
81
|
+
type: [Array, String, Date],
|
|
82
|
+
default: null
|
|
83
|
+
},
|
|
84
|
+
// 最小的可选日期
|
|
85
|
+
minDate: {
|
|
86
|
+
type: [String, Number],
|
|
87
|
+
default: 0
|
|
88
|
+
},
|
|
89
|
+
// 最大可选日期
|
|
90
|
+
maxDate: {
|
|
91
|
+
type: [String, Number],
|
|
92
|
+
default: 0
|
|
93
|
+
},
|
|
94
|
+
// 如果没有设置maxDate,则往后推多少个月
|
|
95
|
+
maxMonth: {
|
|
96
|
+
type: [String, Number],
|
|
97
|
+
default: 2
|
|
98
|
+
},
|
|
99
|
+
// 是否为只读状态,只读状态下禁止选择日期
|
|
100
|
+
readonly: {
|
|
101
|
+
type: Boolean,
|
|
102
|
+
default: uni.$u.props.calendar.readonly
|
|
103
|
+
},
|
|
104
|
+
// 日期区间最多可选天数,默认无限制,mode = range时有效
|
|
105
|
+
maxRange: {
|
|
106
|
+
type: [Number, String],
|
|
107
|
+
default: Infinity
|
|
108
|
+
},
|
|
109
|
+
// 范围选择超过最多可选天数时的提示文案,mode = range时有效
|
|
110
|
+
rangePrompt: {
|
|
111
|
+
type: String,
|
|
112
|
+
default: ''
|
|
113
|
+
},
|
|
114
|
+
// 范围选择超过最多可选天数时,是否展示提示文案,mode = range时有效
|
|
115
|
+
showRangePrompt: {
|
|
116
|
+
type: Boolean,
|
|
117
|
+
default: true
|
|
118
|
+
},
|
|
119
|
+
// 是否允许日期范围的起止时间为同一天,mode = range时有效
|
|
120
|
+
allowSameDay: {
|
|
121
|
+
type: Boolean,
|
|
122
|
+
default: false
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
data() {
|
|
126
|
+
return {
|
|
127
|
+
// 每个日期的宽度
|
|
128
|
+
width: 0,
|
|
129
|
+
// 当前选中的日期item
|
|
130
|
+
item: {},
|
|
131
|
+
selected: []
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
watch: {
|
|
135
|
+
selectedChange: {
|
|
136
|
+
immediate: true,
|
|
137
|
+
handler(n) {
|
|
138
|
+
this.setDefaultDate()
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
computed: {
|
|
143
|
+
// 多个条件的变化,会引起选中日期的变化,这里统一管理监听
|
|
144
|
+
selectedChange() {
|
|
145
|
+
return [this.minDate, this.maxDate, this.defaultDate]
|
|
146
|
+
},
|
|
147
|
+
dayStyle(index1, index2, item) {
|
|
148
|
+
return (index1, index2, item) => {
|
|
149
|
+
const style = {}
|
|
150
|
+
let week = item.week
|
|
151
|
+
// 不进行四舍五入的形式保留2位小数
|
|
152
|
+
const dayWidth = Number(parseFloat(this.width / 7).toFixed(3).slice(0, -1))
|
|
153
|
+
// 得出每个日期的宽度
|
|
154
|
+
// #ifdef APP-NVUE
|
|
155
|
+
style.width = uni.$u.addUnit(dayWidth)
|
|
156
|
+
// #endif
|
|
157
|
+
style.height = uni.$u.addUnit(this.rowHeight)
|
|
158
|
+
if (index2 === 0) {
|
|
159
|
+
// 获取当前为星期几,如果为0,则为星期天,减一为每月第一天时,需要向左偏移的item个数
|
|
160
|
+
week = (week === 0 ? 7 : week) - 1
|
|
161
|
+
style.marginLeft = uni.$u.addUnit(week * dayWidth)
|
|
162
|
+
}
|
|
163
|
+
if (this.mode === 'range') {
|
|
164
|
+
// 之所以需要这么写,是因为DCloud公司的iOS客户端的开发者能力有限导致的bug
|
|
165
|
+
style.paddingLeft = 0
|
|
166
|
+
style.paddingRight = 0
|
|
167
|
+
style.paddingBottom = 0
|
|
168
|
+
style.paddingTop = 0
|
|
169
|
+
}
|
|
170
|
+
return style
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
daySelectStyle() {
|
|
174
|
+
return (index1, index2, item) => {
|
|
175
|
+
let date = dayjs(item.date).format("YYYY-MM-DD"),
|
|
176
|
+
style = {}
|
|
177
|
+
// 判断date是否在selected数组中,因为月份可能会需要补0,所以使用dateSame判断,而不用数组的includes判断
|
|
178
|
+
if (this.selected.some(item => this.dateSame(item, date))) {
|
|
179
|
+
style.backgroundColor = this.color
|
|
180
|
+
}
|
|
181
|
+
if (this.mode === 'single') {
|
|
182
|
+
if (date === this.selected[0]) {
|
|
183
|
+
// 因为需要对nvue的兼容,只能这么写,无法缩写,也无法通过类名控制等等
|
|
184
|
+
style.borderTopLeftRadius = '3px'
|
|
185
|
+
style.borderBottomLeftRadius = '3px'
|
|
186
|
+
style.borderTopRightRadius = '3px'
|
|
187
|
+
style.borderBottomRightRadius = '3px'
|
|
188
|
+
}
|
|
189
|
+
} else if (this.mode === 'range') {
|
|
190
|
+
if (this.selected.length >= 2) {
|
|
191
|
+
const len = this.selected.length - 1
|
|
192
|
+
// 第一个日期设置左上角和左下角的圆角
|
|
193
|
+
if (this.dateSame(date, this.selected[0])) {
|
|
194
|
+
style.borderTopLeftRadius = '3px'
|
|
195
|
+
style.borderBottomLeftRadius = '3px'
|
|
196
|
+
}
|
|
197
|
+
// 最后一个日期设置右上角和右下角的圆角
|
|
198
|
+
if (this.dateSame(date, this.selected[len])) {
|
|
199
|
+
style.borderTopRightRadius = '3px'
|
|
200
|
+
style.borderBottomRightRadius = '3px'
|
|
201
|
+
}
|
|
202
|
+
// 处于第一和最后一个之间的日期,背景色设置为浅色,通过将对应颜色进行等分,再取其尾部的颜色值
|
|
203
|
+
if (dayjs(date).isAfter(dayjs(this.selected[0])) && dayjs(date).isBefore(dayjs(this
|
|
204
|
+
.selected[len]))) {
|
|
205
|
+
style.backgroundColor = uni.$u.colorGradient(this.color, '#ffffff', 100)[90]
|
|
206
|
+
// 增加一个透明度,让范围区间的背景色也能看到底部的mark水印字符
|
|
207
|
+
style.opacity = 0.7
|
|
208
|
+
}
|
|
209
|
+
} else if (this.selected.length === 1) {
|
|
210
|
+
// 之所以需要这么写,是因为DCloud公司的iOS客户端的开发者能力有限导致的bug
|
|
211
|
+
// 进行还原操作,否则在nvue的iOS,uni-app有bug,会导致诡异的表现
|
|
212
|
+
style.borderTopLeftRadius = '3px'
|
|
213
|
+
style.borderBottomLeftRadius = '3px'
|
|
214
|
+
}
|
|
215
|
+
} else {
|
|
216
|
+
if (this.selected.some(item => this.dateSame(item, date))) {
|
|
217
|
+
style.borderTopLeftRadius = '3px'
|
|
218
|
+
style.borderBottomLeftRadius = '3px'
|
|
219
|
+
style.borderTopRightRadius = '3px'
|
|
220
|
+
style.borderBottomRightRadius = '3px'
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
return style
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
// 某个日期是否被选中
|
|
227
|
+
textStyle() {
|
|
228
|
+
return (item) => {
|
|
229
|
+
const date = dayjs(item.date).format("YYYY-MM-DD"),
|
|
230
|
+
style = {}
|
|
231
|
+
// 选中的日期,提示文字设置白色
|
|
232
|
+
if (this.selected.some(item => this.dateSame(item, date))) {
|
|
233
|
+
style.color = '#ffffff'
|
|
234
|
+
}
|
|
235
|
+
if (this.mode === 'range') {
|
|
236
|
+
const len = this.selected.length - 1
|
|
237
|
+
// 如果是范围选择模式,第一个和最后一个之间的日期,文字颜色设置为高亮的主题色
|
|
238
|
+
if (dayjs(date).isAfter(dayjs(this.selected[0])) && dayjs(date).isBefore(dayjs(this
|
|
239
|
+
.selected[len]))) {
|
|
240
|
+
style.color = this.color
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
return style
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
// 获取底部的提示文字
|
|
247
|
+
getBottomInfo() {
|
|
248
|
+
return (index1, index2, item) => {
|
|
249
|
+
const date = dayjs(item.date).format("YYYY-MM-DD")
|
|
250
|
+
const bottomInfo = item.bottomInfo
|
|
251
|
+
// 当为日期范围模式时,且选择的日期个数大于0时
|
|
252
|
+
if (this.mode === 'range' && this.selected.length > 0) {
|
|
253
|
+
if (this.selected.length === 1) {
|
|
254
|
+
// 选择了一个日期时,如果当前日期为数组中的第一个日期,则显示底部文字为“开始”
|
|
255
|
+
if (this.dateSame(date, this.selected[0])) return this.startText
|
|
256
|
+
else return bottomInfo
|
|
257
|
+
} else {
|
|
258
|
+
const len = this.selected.length - 1
|
|
259
|
+
// 如果数组中的日期大于2个时,第一个和最后一个显示为开始和结束日期
|
|
260
|
+
if (this.dateSame(date, this.selected[0]) && this.dateSame(date, this.selected[1]) &&
|
|
261
|
+
len === 1) {
|
|
262
|
+
// 如果长度为2,且第一个等于第二个日期,则提示语放在同一个item中
|
|
263
|
+
return `${this.startText}/${this.endText}`
|
|
264
|
+
} else if (this.dateSame(date, this.selected[0])) {
|
|
265
|
+
return this.startText
|
|
266
|
+
} else if (this.dateSame(date, this.selected[len])) {
|
|
267
|
+
return this.endText
|
|
268
|
+
} else {
|
|
269
|
+
return bottomInfo
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
} else {
|
|
273
|
+
return bottomInfo
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
mounted() {
|
|
279
|
+
this.init()
|
|
280
|
+
},
|
|
281
|
+
methods: {
|
|
282
|
+
init() {
|
|
283
|
+
// 初始化默认选中
|
|
284
|
+
this.$emit('monthSelected', this.selected)
|
|
285
|
+
this.$nextTick(() => {
|
|
286
|
+
// 这里需要另一个延时,因为获取宽度后,会进行月份数据渲染,只有渲染完成之后,才有真正的高度
|
|
287
|
+
// 因为nvue下,$nextTick并不是100%可靠的
|
|
288
|
+
uni.$u.sleep(10).then(() => {
|
|
289
|
+
this.getWrapperWidth()
|
|
290
|
+
this.getMonthRect()
|
|
291
|
+
})
|
|
292
|
+
})
|
|
293
|
+
},
|
|
294
|
+
// 判断两个日期是否相等
|
|
295
|
+
dateSame(date1, date2) {
|
|
296
|
+
return dayjs(date1).isSame(dayjs(date2))
|
|
297
|
+
},
|
|
298
|
+
// 获取月份数据区域的宽度,因为nvue不支持百分比,所以无法通过css设置每个日期item的宽度
|
|
299
|
+
getWrapperWidth() {
|
|
300
|
+
// #ifdef APP-NVUE
|
|
301
|
+
dom.getComponentRect(this.$refs['u-calendar-month-wrapper'], res => {
|
|
302
|
+
this.width = res.size.width
|
|
303
|
+
})
|
|
304
|
+
// #endif
|
|
305
|
+
// #ifndef APP-NVUE
|
|
306
|
+
this.$uGetRect('.u-calendar-month-wrapper').then(size => {
|
|
307
|
+
this.width = size.width
|
|
308
|
+
})
|
|
309
|
+
// #endif
|
|
310
|
+
},
|
|
311
|
+
getMonthRect() {
|
|
312
|
+
// 获取每个月份数据的尺寸,用于父组件在scroll-view滚动事件中,监听当前滚动到了第几个月份
|
|
313
|
+
const promiseAllArr = this.months.map((item, index) => this.getMonthRectByPromise(
|
|
314
|
+
`u-calendar-month-${index}`))
|
|
315
|
+
// 一次性返回
|
|
316
|
+
Promise.all(promiseAllArr).then(
|
|
317
|
+
sizes => {
|
|
318
|
+
let height = 1
|
|
319
|
+
const topArr = []
|
|
320
|
+
for (let i = 0; i < this.months.length; i++) {
|
|
321
|
+
// 添加到months数组中,供scroll-view滚动事件中,判断当前滚动到哪个月份
|
|
322
|
+
topArr[i] = height
|
|
323
|
+
height += sizes[i].height
|
|
324
|
+
}
|
|
325
|
+
// 由于微信下,无法通过this.months[i].top的形式(引用类型)去修改父组件的month的top值,所以使用事件形式对外发出
|
|
326
|
+
this.$emit('updateMonthTop', topArr)
|
|
327
|
+
})
|
|
328
|
+
},
|
|
329
|
+
// 获取每个月份区域的尺寸
|
|
330
|
+
getMonthRectByPromise(el) {
|
|
331
|
+
// #ifndef APP-NVUE
|
|
332
|
+
// $uGetRect为uView自带的节点查询简化方法,详见文档介绍:https://www.uviewui.com/js/getRect.html
|
|
333
|
+
// 组件内部一般用this.$uGetRect,对外的为uni.$u.getRect,二者功能一致,名称不同
|
|
334
|
+
return new Promise(resolve => {
|
|
335
|
+
this.$uGetRect(`.${el}`).then(size => {
|
|
336
|
+
resolve(size)
|
|
337
|
+
})
|
|
338
|
+
})
|
|
339
|
+
// #endif
|
|
340
|
+
|
|
341
|
+
// #ifdef APP-NVUE
|
|
342
|
+
// nvue下,使用dom模块查询元素高度
|
|
343
|
+
// 返回一个promise,让调用此方法的主体能使用then回调
|
|
344
|
+
return new Promise(resolve => {
|
|
345
|
+
dom.getComponentRect(this.$refs[el][0], res => {
|
|
346
|
+
resolve(res.size)
|
|
347
|
+
})
|
|
348
|
+
})
|
|
349
|
+
// #endif
|
|
350
|
+
},
|
|
351
|
+
// 点击某一个日期
|
|
352
|
+
clickHandler(index1, index2, item) {
|
|
353
|
+
if (this.readonly) {
|
|
354
|
+
return;
|
|
355
|
+
}
|
|
356
|
+
this.item = item
|
|
357
|
+
const date = dayjs(item.date).format("YYYY-MM-DD")
|
|
358
|
+
if (item.disabled) return
|
|
359
|
+
// 对上一次选择的日期数组进行深度克隆
|
|
360
|
+
let selected = uni.$u.deepClone(this.selected)
|
|
361
|
+
if (this.mode === 'single') {
|
|
362
|
+
// 单选情况下,让数组中的元素为当前点击的日期
|
|
363
|
+
selected = [date]
|
|
364
|
+
} else if (this.mode === 'multiple') {
|
|
365
|
+
if (selected.some(item => this.dateSame(item, date))) {
|
|
366
|
+
// 如果点击的日期已在数组中,则进行移除操作,也就是达到反选的效果
|
|
367
|
+
const itemIndex = selected.findIndex(item => item === date)
|
|
368
|
+
selected.splice(itemIndex, 1)
|
|
369
|
+
} else {
|
|
370
|
+
// 如果点击的日期不在数组中,且已有的长度小于总可选长度时,则添加到数组中去
|
|
371
|
+
if (selected.length < this.maxCount) selected.push(date)
|
|
372
|
+
}
|
|
373
|
+
} else {
|
|
374
|
+
// 选择区间形式
|
|
375
|
+
if (selected.length === 0 || selected.length >= 2) {
|
|
376
|
+
// 如果原来就为0或者大于2的长度,则当前点击的日期,就是开始日期
|
|
377
|
+
selected = [date]
|
|
378
|
+
} else if (selected.length === 1) {
|
|
379
|
+
// 如果已经选择了开始日期
|
|
380
|
+
const existsDate = selected[0]
|
|
381
|
+
// 如果当前选择的日期小于上一次选择的日期,则当前的日期定为开始日期
|
|
382
|
+
if (dayjs(date).isBefore(existsDate)) {
|
|
383
|
+
selected = [date]
|
|
384
|
+
} else if (dayjs(date).isAfter(existsDate)) {
|
|
385
|
+
// 当前日期减去最大可选的日期天数,如果大于起始时间,则进行提示
|
|
386
|
+
if(dayjs(dayjs(date).subtract(this.maxRange, 'day')).isAfter(dayjs(selected[0])) && this.showRangePrompt) {
|
|
387
|
+
if(this.rangePrompt) {
|
|
388
|
+
uni.$u.toast(this.rangePrompt)
|
|
389
|
+
} else {
|
|
390
|
+
uni.$u.toast(`选择天数不能超过 ${this.maxRange} 天`)
|
|
391
|
+
}
|
|
392
|
+
return
|
|
393
|
+
}
|
|
394
|
+
// 如果当前日期大于已有日期,将当前的添加到数组尾部
|
|
395
|
+
selected.push(date)
|
|
396
|
+
const startDate = selected[0]
|
|
397
|
+
const endDate = selected[1]
|
|
398
|
+
const arr = []
|
|
399
|
+
let i = 0
|
|
400
|
+
do {
|
|
401
|
+
// 将开始和结束日期之间的日期添加到数组中
|
|
402
|
+
arr.push(dayjs(startDate).add(i, 'day').format("YYYY-MM-DD"))
|
|
403
|
+
i++
|
|
404
|
+
// 累加的日期小于结束日期时,继续下一次的循环
|
|
405
|
+
} while (dayjs(startDate).add(i, 'day').isBefore(dayjs(endDate)))
|
|
406
|
+
// 为了一次性修改数组,避免computed中多次触发,这里才用arr变量一次性赋值的方式,同时将最后一个日期添加近来
|
|
407
|
+
arr.push(endDate)
|
|
408
|
+
selected = arr
|
|
409
|
+
} else {
|
|
410
|
+
// 选择区间时,只有一个日期的情况下,且不允许选择起止为同一天的话,不允许选择自己
|
|
411
|
+
if (selected[0] === date && !this.allowSameDay) return
|
|
412
|
+
selected.push(date)
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
this.setSelected(selected)
|
|
417
|
+
},
|
|
418
|
+
// 设置默认日期
|
|
419
|
+
setDefaultDate() {
|
|
420
|
+
if (!this.defaultDate) {
|
|
421
|
+
// 如果没有设置默认日期,则将当天日期设置为默认选中的日期
|
|
422
|
+
const selected = [dayjs().format("YYYY-MM-DD")]
|
|
423
|
+
return this.setSelected(selected, false)
|
|
424
|
+
}
|
|
425
|
+
let defaultDate = []
|
|
426
|
+
const minDate = this.minDate || dayjs().format("YYYY-MM-DD")
|
|
427
|
+
const maxDate = this.maxDate || dayjs(minDate).add(this.maxMonth - 1, 'month').format("YYYY-MM-DD")
|
|
428
|
+
if (this.mode === 'single') {
|
|
429
|
+
// 单选模式,可以是字符串或数组,Date对象等
|
|
430
|
+
if (!uni.$u.test.array(this.defaultDate)) {
|
|
431
|
+
defaultDate = [dayjs(this.defaultDate).format("YYYY-MM-DD")]
|
|
432
|
+
} else {
|
|
433
|
+
defaultDate = [this.defaultDate[0]]
|
|
434
|
+
}
|
|
435
|
+
} else {
|
|
436
|
+
// 如果为非数组,则不执行
|
|
437
|
+
if (!uni.$u.test.array(this.defaultDate)) return
|
|
438
|
+
defaultDate = this.defaultDate
|
|
439
|
+
}
|
|
440
|
+
// 过滤用户传递的默认数组,取出只在可允许最大值与最小值之间的元素
|
|
441
|
+
defaultDate = defaultDate.filter(item => {
|
|
442
|
+
return dayjs(item).isAfter(dayjs(minDate).subtract(1, 'day')) && dayjs(item).isBefore(dayjs(
|
|
443
|
+
maxDate).add(1, 'day'))
|
|
444
|
+
})
|
|
445
|
+
this.setSelected(defaultDate, false)
|
|
446
|
+
},
|
|
447
|
+
setSelected(selected, event = true) {
|
|
448
|
+
this.selected = selected
|
|
449
|
+
event && this.$emit('monthSelected', this.selected)
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
</script>
|
|
454
|
+
|
|
455
|
+
<style lang="scss" scoped>
|
|
456
|
+
@import "../../libs/css/components.scss";
|
|
457
|
+
|
|
458
|
+
.u-calendar-month-wrapper {
|
|
459
|
+
margin-top: 4px;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.u-calendar-month {
|
|
463
|
+
|
|
464
|
+
&__title {
|
|
465
|
+
font-size: 14px;
|
|
466
|
+
line-height: 42px;
|
|
467
|
+
height: 42px;
|
|
468
|
+
color: $u-main-color;
|
|
469
|
+
text-align: center;
|
|
470
|
+
font-weight: bold;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
&__days {
|
|
474
|
+
position: relative;
|
|
475
|
+
@include flex;
|
|
476
|
+
flex-wrap: wrap;
|
|
477
|
+
|
|
478
|
+
&__month-mark-wrapper {
|
|
479
|
+
position: absolute;
|
|
480
|
+
top: 0;
|
|
481
|
+
bottom: 0;
|
|
482
|
+
left: 0;
|
|
483
|
+
right: 0;
|
|
484
|
+
@include flex;
|
|
485
|
+
justify-content: center;
|
|
486
|
+
align-items: center;
|
|
487
|
+
|
|
488
|
+
&__text {
|
|
489
|
+
font-size: 155px;
|
|
490
|
+
color: rgba(231, 232, 234, 0.83);
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
&__day {
|
|
495
|
+
@include flex;
|
|
496
|
+
padding: 2px;
|
|
497
|
+
/* #ifndef APP-NVUE */
|
|
498
|
+
// vue下使用css进行宽度计算,因为某些安卓机会无法进行js获取父元素宽度进行计算得出,会有偏移
|
|
499
|
+
width: calc(100% / 7);
|
|
500
|
+
box-sizing: border-box;
|
|
501
|
+
/* #endif */
|
|
502
|
+
|
|
503
|
+
&__select {
|
|
504
|
+
flex: 1;
|
|
505
|
+
@include flex;
|
|
506
|
+
align-items: center;
|
|
507
|
+
justify-content: center;
|
|
508
|
+
position: relative;
|
|
509
|
+
|
|
510
|
+
&__dot {
|
|
511
|
+
width: 7px;
|
|
512
|
+
height: 7px;
|
|
513
|
+
border-radius: 100px;
|
|
514
|
+
background-color: $u-error;
|
|
515
|
+
position: absolute;
|
|
516
|
+
top: 12px;
|
|
517
|
+
right: 7px;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
&__buttom-info {
|
|
521
|
+
color: $u-content-color;
|
|
522
|
+
text-align: center;
|
|
523
|
+
position: absolute;
|
|
524
|
+
bottom: 5px;
|
|
525
|
+
font-size: 10px;
|
|
526
|
+
text-align: center;
|
|
527
|
+
left: 0;
|
|
528
|
+
right: 0;
|
|
529
|
+
|
|
530
|
+
&--selected {
|
|
531
|
+
color: #ffffff;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
&--disabled {
|
|
535
|
+
color: #cacbcd;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
&__info {
|
|
540
|
+
text-align: center;
|
|
541
|
+
font-size: 16px;
|
|
542
|
+
|
|
543
|
+
&--selected {
|
|
544
|
+
color: #ffffff;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
&--disabled {
|
|
548
|
+
color: #cacbcd;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
&--selected {
|
|
553
|
+
background-color: $u-primary;
|
|
554
|
+
@include flex;
|
|
555
|
+
justify-content: center;
|
|
556
|
+
align-items: center;
|
|
557
|
+
flex: 1;
|
|
558
|
+
border-radius: 3px;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
&--range-selected {
|
|
562
|
+
opacity: 0.3;
|
|
563
|
+
border-radius: 0;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
&--range-start-selected {
|
|
567
|
+
border-top-right-radius: 0;
|
|
568
|
+
border-bottom-right-radius: 0;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
&--range-end-selected {
|
|
572
|
+
border-top-left-radius: 0;
|
|
573
|
+
border-bottom-left-radius: 0;
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
</style>
|