uni-events-helper-wx
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

288 lines
10 KiB

3 years ago
  1. <template>
  2. <u-popup
  3. :show="show"
  4. mode="bottom"
  5. closeable
  6. @close="close"
  7. round
  8. :closeOnClickOverlay="closeOnClickOverlay"
  9. >
  10. <view class="u-calendar">
  11. <uHeader
  12. :title="title"
  13. :subtitle="subtitle"
  14. :showSubtitle="showSubtitle"
  15. :showTitle="showTitle"
  16. ></uHeader>
  17. <scroll-view
  18. :style="{
  19. height: $u.addUnit(listHeight)
  20. }"
  21. scroll-y
  22. @scroll="onScroll"
  23. :scrollIntoView="scrollIntoView"
  24. >
  25. <uMonth
  26. :color="color"
  27. :rowHeight="rowHeight"
  28. :showMark="showMark"
  29. :months="months"
  30. :mode="mode"
  31. :maxCount="maxCount"
  32. :startText="startText"
  33. :endText="endText"
  34. :defaultDate="defaultDate"
  35. :minDate="minDate"
  36. :maxDate="maxDate"
  37. :maxMonth="maxMonth"
  38. :readonly="readonly"
  39. :maxRange="maxRange"
  40. :rangePrompt="rangePrompt"
  41. :showRangePrompt="showRangePrompt"
  42. :allowSameDay="allowSameDay"
  43. ref="month"
  44. @monthSelected="monthSelected"
  45. @updateMonthTop="updateMonthTop"
  46. ></uMonth>
  47. </scroll-view>
  48. <slot name="footer" v-if="showConfirm">
  49. <view class="u-calendar__confirm">
  50. <u-button
  51. shape="circle"
  52. :text="buttonDisabled ? confirmDisabledText : confirmText"
  53. :color="color"
  54. @click="confirm"
  55. :disabled="buttonDisabled"
  56. ></u-button>
  57. </view>
  58. </slot>
  59. </view>
  60. </u-popup>
  61. </template>
  62. <script>
  63. import uHeader from './header.vue';
  64. import uMonth from './month.vue';
  65. import props from './props.js';
  66. import util from './util.js';
  67. import dayjs from '../../libs/util/dayjs.js';
  68. import Calendar from '../../libs/util/calendar.js';
  69. /**
  70. * Calendar 日历
  71. * @description 此组件用于单个选择日期范围选择日期等日历被包裹在底部弹起的容器中.
  72. * @tutorial https://www.uviewui.com/components/calendar.html
  73. *
  74. * @property {String} title 标题内容 (默认 日期选择 )
  75. * @property {Boolean} showTitle 是否显示标题 (默认 true )
  76. * @property {Boolean} showSubtitle 是否显示副标题 (默认 true )
  77. * @property {String} mode 日期类型选择 single-选择单个日期multiple-可以选择多个日期range-选择日期范围 默认 'single' )
  78. * @property {String} startText mode=range时第一个日期底部的提示文字 (默认 '开始' )
  79. * @property {String} endText mode=range时最后一个日期底部的提示文字 (默认 '结束' )
  80. * @property {Array} customList 自定义列表
  81. * @property {String} color 主题色对底部按钮和选中日期有效 (默认 #3c9cff' )
  82. * @property {String | Number} minDate 最小的可选日期 (默认 0 )
  83. * @property {String | Number} maxDate 最大可选日期 (默认 0 )
  84. * @property {Array | String| Date} defaultDate 默认选中的日期mode为multiple或range是必须为数组格式
  85. * @property {String | Number} maxCount mode=multiple时最多可选多少个日期 (默认 Number.MAX_SAFE_INTEGER )
  86. * @property {String | Number} rowHeight 日期行高 (默认 56 )
  87. * @property {Function} formatter 日期格式化函数
  88. * @property {Boolean} showLunar 是否显示农历 (默认 false )
  89. * @property {Boolean} showMark 是否显示月份背景色 (默认 true )
  90. * @property {String} confirmText 确定按钮的文字 (默认 '确定' )
  91. * @property {String} confirmDisabledText 确认按钮处于禁用状态时的文字 (默认 '确定' )
  92. * @property {Boolean} show 是否显示日历弹窗 (默认 false )
  93. * @property {Boolean} closeOnClickOverlay 是否允许点击遮罩关闭日历 (默认 false )
  94. * @property {Boolean} readonly 是否为只读状态只读状态下禁止选择日期 (默认 false )
  95. * @property {String | Number} maxRange 日期区间最多可选天数默认无限制mode = range时有效
  96. * @property {String} rangePrompt 范围选择超过最多可选天数时的提示文案mode = range时有效
  97. * @property {Boolean} showRangePrompt 范围选择超过最多可选天数时是否展示提示文案mode = range时有效 (默认 true )
  98. * @property {Boolean} allowSameDay 是否允许日期范围的起止时间为同一天mode = range时有效 (默认 false )
  99. *
  100. * @event {Function()} confirm 点击确定按钮时触发 选择日期相关的返回参数
  101. * @event {Function()} close 日历关闭时触发 可定义页面关闭时的回调事件
  102. * @example <u-calendar :defaultDate="defaultDateMultiple" :show="show" mode="multiple" @confirm="confirm">
  103. </u-calendar>
  104. * */
  105. export default {
  106. name: 'u-calendar',
  107. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  108. components: {
  109. uHeader,
  110. uMonth
  111. },
  112. data() {
  113. return {
  114. // 需要显示的月份的数组
  115. months: [],
  116. // 在月份滚动区域中,当前视图中月份的index索引
  117. monthIndex: 0,
  118. // 月份滚动区域的高度
  119. listHeight: 0,
  120. // month组件中选择的日期数组
  121. selected: [],
  122. // 如果没有设置最大可选日期,默认为往后推3个月
  123. maxMonth: 3,
  124. scrollIntoView: '',
  125. // 过滤处理方法
  126. innerFormatter: value => value
  127. }
  128. },
  129. watch: {
  130. selectedChange: {
  131. immediate: true,
  132. handler(n) {
  133. this.setMonth()
  134. }
  135. },
  136. // 打开弹窗时,设置月份数据
  137. show: {
  138. immediate: true,
  139. handler(n) {
  140. this.setMonth()
  141. }
  142. },
  143. },
  144. computed: {
  145. // 多个条件的变化,会引起选中日期的变化,这里统一管理监听
  146. selectedChange() {
  147. return [this.minDate, this.maxDate, this.defaultDate]
  148. },
  149. subtitle() {
  150. // 初始化时,this.months为空数组,所以需要特别判断处理
  151. if (this.months.length) {
  152. return `${this.months[this.monthIndex].year}${this.months[this.monthIndex].month}`
  153. } else {
  154. return ''
  155. }
  156. },
  157. buttonDisabled() {
  158. // 如果为range类型,且选择的日期个数不足1个时,让底部的按钮出于disabled状态
  159. if (this.mode === 'range') {
  160. if (this.selected.length <= 1) {
  161. return true
  162. } else {
  163. return false
  164. }
  165. } else {
  166. return false
  167. }
  168. }
  169. },
  170. mounted() {
  171. this.start = Date.now()
  172. this.init()
  173. },
  174. methods: {
  175. // 在微信小程序中,不支持将函数当做props参数,故只能通过ref形式调用
  176. setFormatter(e) {
  177. this.innerFormatter = e
  178. },
  179. // month组件内部选择日期后,通过事件通知给父组件
  180. monthSelected(e) {
  181. this.selected = e
  182. if(!this.showConfirm) {
  183. // 在不需要确认按钮的情况下,如果为单选,或者范围多选且已选长度大于2,则直接进行返还
  184. if (this.mode === 'multiple' || this.mode === 'single' || this.mode === 'range' && this.selected.length >= 2) {
  185. this.$emit('confirm', this.selected)
  186. }
  187. }
  188. },
  189. init() {
  190. // 滚动区域的高度
  191. this.listHeight = this.rowHeight * 5 + 30
  192. this.setMonth()
  193. },
  194. close() {
  195. this.$emit('close')
  196. },
  197. // 点击确定按钮
  198. confirm() {
  199. if (!this.buttonDisabled) {
  200. this.$emit('confirm', this.selected)
  201. }
  202. },
  203. // 设置月份数据
  204. setMonth() {
  205. // 最小日期的毫秒数
  206. const minDate = this.minDate || dayjs().valueOf()
  207. // 如果没有指定最大日期,则往后推3个月
  208. const maxDate = this.maxDate || dayjs(minDate).add(this.maxMonth - 1, 'month').valueOf()
  209. // 最小与最大月份
  210. let minMonth = dayjs(minDate).month() + 1
  211. let maxMonth = dayjs(maxDate).month() + 1
  212. // 如果maxMonth小于minMonth,则意味着maxMonth为下一年的月份,需要加上12,为的是计算出两个月份之间间隔着多少月份
  213. maxMonth = minMonth > maxMonth ? maxMonth + 12 : maxMonth
  214. // 最大最小月份之间的共有多少个月份
  215. const months = Math.abs(minMonth - maxMonth)
  216. // 先清空数组
  217. this.months = []
  218. for (let i = 0; i <= months; i++) {
  219. this.months.push({
  220. date: new Array(dayjs(minDate).add(i, 'month').daysInMonth()).fill(1).map((item,
  221. index) => {
  222. // 日期,取值1-31
  223. let day = index + 1
  224. // 星期,0-6,0为周日
  225. const week = dayjs(minDate).add(i, "month").date(day).day()
  226. const date = dayjs(minDate).add(i, "month").date(day).format("YYYY-MM-DD")
  227. let bottomInfo = ''
  228. if (this.showLunar) {
  229. // 将日期转为农历格式
  230. const lunar = Calendar.solar2lunar(dayjs(date).year(), dayjs(date)
  231. .month() + 1, dayjs(date).date())
  232. bottomInfo = lunar.IDayCn
  233. }
  234. let config = {
  235. day,
  236. week,
  237. // 小于最小允许的日期,或者大于最大的日期,则设置为disabled状态
  238. disabled: dayjs(date).isBefore(dayjs(minDate).format("YYYY-MM-DD")) ||
  239. dayjs(date).isAfter(dayjs(maxDate).format("YYYY-MM-DD")),
  240. // 返回一个日期对象,供外部的formatter获取当前日期的年月日等信息,进行加工处理
  241. date: new Date(date),
  242. bottomInfo,
  243. dot: false,
  244. month: dayjs(minDate).add(i, "month").month() + 1
  245. }
  246. const formatter = this.formatter || this.innerFormatter
  247. return formatter(config)
  248. }),
  249. // 当前所属的月份
  250. month: dayjs(minDate).add(i, "month").month() + 1,
  251. // 当前年份
  252. year: dayjs(minDate).add(i, "month").year()
  253. });
  254. }
  255. },
  256. // scroll-view滚动监听
  257. onScroll(event) {
  258. // 不允许小于0的滚动值,如果scroll-view到顶了,继续下拉,会出现负数值
  259. const scrollTop = Math.max(0, event.detail.scrollTop)
  260. // 将当前滚动条数值,除以滚动区域的高度,可以得出当前滚动到了哪一个月份的索引
  261. for (let i = 0; i < this.months.length; i++) {
  262. if (scrollTop >= (this.months[i].top || this.listHeight)) {
  263. this.monthIndex = i
  264. }
  265. }
  266. },
  267. // 更新月份的top值
  268. updateMonthTop(topArr = []) {
  269. // 设置对应月份的top值,用于onScroll方法更新月份
  270. topArr.map((item, index) => {
  271. this.months[index].top = item
  272. })
  273. }
  274. },
  275. }
  276. </script>
  277. <style lang="scss">
  278. @import "../../libs/css/components.scss";
  279. .u-calendar {
  280. &__confirm {
  281. padding: 7px 18px;
  282. }
  283. }
  284. </style>