123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view>
- <!-- template对应的原始代码,为保证正常显示,已对其进行隐藏。 -->
- <block name="calendar" v-if="false">
- <view class="van-calendar">
- <header :title="title" :showTitle="showTitle" :subtitle="subtitle" :showSubtitle="showSubtitle">
- <slot name="title" slot="title"></slot>
- </header>
- <scroll-view class="van-calendar__body" scroll-y :scroll-into-view="scrollIntoView">
- <month
- :id="'month' + index"
- class="month"
- :data-date="item"
- :date="item"
- :type="type"
- :color="color"
- :minDate="minDate"
- :maxDate="maxDate"
- :showMark="showMark"
- :formatter="formatter"
- :rowHeight="rowHeight"
- :currentDate="currentDate"
- :showSubtitle="showSubtitle"
- :allowSameDay="allowSameDay"
- :showMonthTitle="index !== 0 || !showSubtitle"
- @click="onClickDay"
- v-for="(item, index) in computed.getMonths(minDate, maxDate)"
- :key="index"
- ></month>
- </scroll-view>
- <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
- <slot name="footer"></slot>
- </view>
- <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
- <van-button
- v-if="showConfirm"
- round
- block
- type="danger"
- :color="color"
- custom-class="van-calendar__confirm"
- :disabled="computed.getButtonDisabled(type, currentDate)"
- nativeType="text"
- @click="onConfirm"
- >
- {{ computed.getButtonDisabled(type, currentDate) ? confirmDisabledText : confirmText }}
- </van-button>
- </view>
- </view>
- </block>
- </view>
- </template>
- <script module="computed" lang="wxs" src="@/node_modules/@vant/weapp/dist/calendar/index.wxs"></script>
- <style>
- @import './calendar.css';
- </style>
|