<template>
|
|
<view class="uni-calendar-item__weeks-box" :class="{
|
|
'uni-calendar-item--disable':weeks.disable,
|
|
'uni-calendar-item--checked':(calendar.fullDate === weeks.fullDate && weeks.extraInfo&&weeks.extraInfo.info) ,
|
|
'uni-calendar-item--seleted':(weeks.extraInfo&&weeks.extraInfo.info&&calendar.fullDate !== weeks.fullDate) ,
|
|
'uni-calendar-item--before-checked':weeks.beforeMultiple,
|
|
'uni-calendar-item--multiple': weeks.multiple,
|
|
'uni-calendar-item--after-checked':weeks.afterMultiple,
|
|
}"
|
|
@click="choiceDate(weeks)">
|
|
<view class="uni-calendar-item__weeks-box-item">
|
|
<!-- <text v-if="selected&&weeks.extraInfo" class="uni-calendar-item__weeks-box-circle"></text> -->
|
|
<text class="uni-calendar-item__weeks-box-text" :class="{
|
|
'uni-calendar-item--checked':(calendar.fullDate === weeks.fullDate && weeks.extraInfo&&weeks.extraInfo.info),
|
|
'uni-calendar-item--seleted':(weeks.extraInfo&&weeks.extraInfo.info&&calendar.fullDate !== weeks.fullDate) ,
|
|
'uni-calendar-item--before-checked':weeks.beforeMultiple,
|
|
'uni-calendar-item--multiple': weeks.multiple,
|
|
'uni-calendar-item--after-checked':weeks.afterMultiple,
|
|
'uni-calendar-item--disable':weeks.disable,
|
|
}">{{weeks.date}}</text>
|
|
<!-- <text v-if="!lunar&&!weeks.extraInfo && weeks.isDay" class="uni-calendar-item__weeks-lunar-text" :class="{
|
|
'uni-calendar-item--isDay-text':weeks.isDay,
|
|
'uni-calendar-item--isDay':calendar.fullDate === weeks.fullDate && weeks.isDay,
|
|
'uni-calendar-item--checked':calendar.fullDate === weeks.fullDate && !weeks.isDay,
|
|
'uni-calendar-item--before-checked':weeks.beforeMultiple,
|
|
'uni-calendar-item--multiple': weeks.multiple,
|
|
'uni-calendar-item--after-checked':weeks.afterMultiple,
|
|
}">{{todayText}}</text> -->
|
|
<text v-if="lunar&&!weeks.extraInfo" class="uni-calendar-item__weeks-lunar-text" :class="{
|
|
'uni-calendar-item--checked':weeks.extraInfo&&weeks.extraInfo.info,
|
|
'uni-calendar-item--before-checked':weeks.beforeMultiple,
|
|
'uni-calendar-item--multiple': weeks.multiple,
|
|
'uni-calendar-item--after-checked':weeks.afterMultiple,
|
|
'uni-calendar-item--disable':weeks.disable,
|
|
}">{{weeks.isDay ? todayText : (weeks.lunar.IDayCn === '初一'?weeks.lunar.IMonthCn:weeks.lunar.IDayCn)}}</text>
|
|
<!-- <text v-if="weeks.extraInfo&&weeks.extraInfo.info" class="uni-calendar-item__weeks-lunar-text" :class="{
|
|
'uni-calendar-item--extra':weeks.extraInfo.info,
|
|
'uni-calendar-item--isDay-text':weeks.isDay,
|
|
'uni-calendar-item--isDay':calendar.fullDate === weeks.fullDate && weeks.isDay,
|
|
'uni-calendar-item--checked':calendar.fullDate === weeks.fullDate && !weeks.isDay,
|
|
'uni-calendar-item--before-checked':weeks.beforeMultiple,
|
|
'uni-calendar-item--multiple': weeks.multiple,
|
|
'uni-calendar-item--after-checked':weeks.afterMultiple,
|
|
'uni-calendar-item--disable':weeks.disable,
|
|
}">{{weeks.extraInfo.info}}</text> -->
|
|
|
|
<text style="font-size: 20rpx;"
|
|
v-if="isNotOrder"
|
|
>不接单</text>
|
|
<text v-else-if="isHoliday" class="uni-calendar-item__holiday-price">¥{{holidayPrice}}</text>
|
|
<text v-else-if="normalPrice && normalPrice > 0" class="uni-calendar-item__normal-price">¥{{normalPrice}}</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { initVueI18n } from '@dcloudio/uni-i18n'
|
|
import i18nMessages from './i18n/index.js'
|
|
const { t } = initVueI18n(i18nMessages)
|
|
|
|
export default {
|
|
emits:['change'],
|
|
props: {
|
|
disabledDay: {
|
|
type: Array,
|
|
default () {
|
|
return []
|
|
}
|
|
},
|
|
weeks: {
|
|
type: Object,
|
|
default () {
|
|
return {}
|
|
}
|
|
},
|
|
calendar: {
|
|
type: Object,
|
|
default: () => {
|
|
return {}
|
|
}
|
|
},
|
|
selected: {
|
|
type: Array,
|
|
default: () => {
|
|
return []
|
|
}
|
|
},
|
|
lunar: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
holidayDate: {
|
|
type: Array,
|
|
default () {
|
|
return []
|
|
}
|
|
},
|
|
holidayPrice: {
|
|
type: [Number, String],
|
|
default: 0
|
|
},
|
|
normalPrice: {
|
|
type: [Number, String],
|
|
default: 0
|
|
}
|
|
},
|
|
computed: {
|
|
todayText() {
|
|
return t("uni-calender.today")
|
|
},
|
|
isNotOrder(){
|
|
return this.disabledDay.includes(this.weeks.fullDate)
|
|
},
|
|
isHoliday(){
|
|
return this.holidayDate.includes(this.weeks.fullDate)
|
|
},
|
|
},
|
|
methods: {
|
|
choiceDate(weeks) {
|
|
this.$emit('change', weeks)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
$uni-font-size-base:14px;
|
|
$uni-text-color:#333;
|
|
$uni-font-size-sm:12px;
|
|
$uni-color-error: #e43d33;
|
|
$uni-opacity-disabled: 0.3;
|
|
$uni-text-color-disable:#c0c0c0;
|
|
$uni-primary: #FFBF60 !default;
|
|
.uni-calendar-item__weeks-box {
|
|
flex: 1;
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.uni-calendar-item__weeks-box-text {
|
|
font-size: $uni-font-size-base;
|
|
color: $uni-text-color;
|
|
}
|
|
|
|
.uni-calendar-item__weeks-lunar-text {
|
|
font-size: $uni-font-size-sm;
|
|
color: $uni-text-color;
|
|
}
|
|
|
|
.uni-calendar-item__weeks-box-item {
|
|
position: relative;
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
}
|
|
|
|
.uni-calendar-item__weeks-box-circle {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 5px;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 8px;
|
|
background-color: $uni-color-error;
|
|
|
|
}
|
|
|
|
.uni-calendar-item--disable {
|
|
background-color: rgba(249, 249, 249, $uni-opacity-disabled);
|
|
color: $uni-text-color-disable;
|
|
}
|
|
|
|
.uni-calendar-item--isDay-text {
|
|
color: $uni-primary;
|
|
}
|
|
|
|
.uni-calendar-item--isDay {
|
|
background-color: $uni-primary;
|
|
opacity: 0.8;
|
|
color: #fff;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.uni-calendar-item--extra {
|
|
color: $uni-color-error;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.uni-calendar-item--checked {
|
|
background-color: $uni-primary;
|
|
color: #fff;
|
|
opacity: 1;
|
|
border-radius: 50%;
|
|
}
|
|
.uni-calendar-item--seleted {
|
|
background-color: #FFF1E3;
|
|
color: #9CB2CD;
|
|
opacity: 1;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.uni-calendar-item--multiple {
|
|
background-color: $uni-primary;
|
|
color: #fff;
|
|
opacity: 0.8;
|
|
}
|
|
.uni-calendar-item--before-checked {
|
|
background-color: #ff5a5f;
|
|
color: #fff;
|
|
}
|
|
.uni-calendar-item--after-checked {
|
|
background-color: #ff5a5f;
|
|
color: #fff;
|
|
}
|
|
|
|
.uni-calendar-item__holiday-price {
|
|
font-size: 20rpx;
|
|
color: #ff6b6b;
|
|
font-weight: bold;
|
|
margin-top: 4rpx;
|
|
}
|
|
|
|
.uni-calendar-item__normal-price {
|
|
font-size: 20rpx;
|
|
color: #666;
|
|
font-weight: bold;
|
|
margin-top: 4rpx;
|
|
}
|
|
</style>
|