calendar.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view>
  3. <!-- template对应的原始代码,为保证正常显示,已对其进行隐藏。 -->
  4. <block name="calendar" v-if="false">
  5. <view class="van-calendar">
  6. <header :title="title" :showTitle="showTitle" :subtitle="subtitle" :showSubtitle="showSubtitle">
  7. <slot name="title" slot="title"></slot>
  8. </header>
  9. <scroll-view class="van-calendar__body" scroll-y :scroll-into-view="scrollIntoView">
  10. <month
  11. :id="'month' + index"
  12. class="month"
  13. :data-date="item"
  14. :date="item"
  15. :type="type"
  16. :color="color"
  17. :minDate="minDate"
  18. :maxDate="maxDate"
  19. :showMark="showMark"
  20. :formatter="formatter"
  21. :rowHeight="rowHeight"
  22. :currentDate="currentDate"
  23. :showSubtitle="showSubtitle"
  24. :allowSameDay="allowSameDay"
  25. :showMonthTitle="index !== 0 || !showSubtitle"
  26. @click="onClickDay"
  27. v-for="(item, index) in computed.getMonths(minDate, maxDate)"
  28. :key="index"
  29. ></month>
  30. </scroll-view>
  31. <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
  32. <slot name="footer"></slot>
  33. </view>
  34. <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
  35. <van-button
  36. v-if="showConfirm"
  37. round
  38. block
  39. type="danger"
  40. :color="color"
  41. custom-class="van-calendar__confirm"
  42. :disabled="computed.getButtonDisabled(type, currentDate)"
  43. nativeType="text"
  44. @click="onConfirm"
  45. >
  46. {{ computed.getButtonDisabled(type, currentDate) ? confirmDisabledText : confirmText }}
  47. </van-button>
  48. </view>
  49. </view>
  50. </block>
  51. </view>
  52. </template>
  53. <script module="computed" lang="wxs" src="@/miniprogram_npm/@vant/weapp/calendar/index.wxs"></script>
  54. <style>
  55. @import './calendar.css';
  56. </style>