uv-calendar.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. <template>
  2. <uv-popup
  3. ref="calendarPopup"
  4. mode="bottom"
  5. closeable
  6. :round="round"
  7. :closeOnClickOverlay="closeOnClickOverlay"
  8. @change="popupChange"
  9. >
  10. <view class="uv-calendar">
  11. <uvHeader
  12. :title="title"
  13. :subtitle="subtitle"
  14. :showSubtitle="showSubtitle"
  15. :showTitle="showTitle"
  16. ></uvHeader>
  17. <scroll-view
  18. :style="{ height: $uv.addUnit(listHeight) }"
  19. scroll-y
  20. @scroll="onScroll"
  21. :scroll-top="scrollTop"
  22. :scrollIntoView="scrollIntoView"
  23. >
  24. <uvMonth
  25. :color="color"
  26. :rowHeight="rowHeight"
  27. :showMark="showMark"
  28. :months="months"
  29. :mode="mode"
  30. :maxCount="maxCount"
  31. :startText="startText"
  32. :endText="endText"
  33. :defaultDate="defaultDate"
  34. :minDate="innerMinDate"
  35. :maxDate="innerMaxDate"
  36. :maxMonth="monthNum"
  37. :readonly="readonly"
  38. :maxRange="maxRange"
  39. :rangePrompt="rangePrompt"
  40. :showRangePrompt="showRangePrompt"
  41. :allowSameDay="allowSameDay"
  42. ref="month"
  43. @monthSelected="monthSelected"
  44. @updateMonthTop="updateMonthTop"
  45. @change="changeDay"
  46. ></uvMonth>
  47. </scroll-view>
  48. <slot name="footer" v-if="showConfirm">
  49. <view class="uv-calendar__confirm">
  50. <uv-button
  51. shape="circle"
  52. :text="buttonDisabled ? confirmDisabledText : confirmText"
  53. :color="color"
  54. @click="confirm"
  55. :disabled="buttonDisabled"
  56. ></uv-button>
  57. </view>
  58. </slot>
  59. </view>
  60. </uv-popup>
  61. </template>
  62. <script>
  63. import mpMixin from '@/uni_modules/uv-ui-tools/libs/mixin/mpMixin.js'
  64. import mixin from '@/uni_modules/uv-ui-tools/libs/mixin/mixin.js'
  65. import uvHeader from './header.vue'
  66. import uvMonth from './month.vue'
  67. import props from './props.js'
  68. import dayjs from '@/uni_modules/uv-ui-tools/libs/util/dayjs.js'
  69. import Calendar from './calendar.js'
  70. /**
  71. * Calendar 日历
  72. * @description 此组件用于单个选择日期,范围选择日期等,日历被包裹在底部弹起的容器中.
  73. * @tutorial https://www.uvui.cn/components/calendar.html
  74. *
  75. * @property {String} title 标题内容 (默认 日期选择 )
  76. * @property {Boolean} showTitle 是否显示标题 (默认 true )
  77. * @property {Boolean} showSubtitle 是否显示副标题 (默认 true )
  78. * @property {String} mode 日期类型选择 single-选择单个日期,multiple-可以选择多个日期,range-选择日期范围 ( 默认 'single' )
  79. * @property {String} startText mode=range时,第一个日期底部的提示文字 (默认 '开始' )
  80. * @property {String} endText mode=range时,最后一个日期底部的提示文字 (默认 '结束' )
  81. * @property {Array} customList 自定义列表
  82. * @property {String} color 主题色,对底部按钮和选中日期有效 (默认 ‘#3c9cff' )
  83. * @property {String | Number} minDate 最小的可选日期 (默认 0 )
  84. * @property {String | Number} maxDate 最大可选日期 (默认 0 )
  85. * @property {Array | String| Date} defaultDate 默认选中的日期,mode为multiple或range是必须为数组格式
  86. * @property {String | Number} maxCount mode=multiple时,最多可选多少个日期 (默认 Number.MAX_SAFE_INTEGER )
  87. * @property {String | Number} rowHeight 日期行高 (默认 56 )
  88. * @property {Function} formatter 日期格式化函数
  89. * @property {Boolean} showLunar 是否显示农历 (默认 false )
  90. * @property {Boolean} showMark 是否显示月份背景色 (默认 true )
  91. * @property {String} confirmText 确定按钮的文字 (默认 '确定' )
  92. * @property {String} confirmDisabledText 确认按钮处于禁用状态时的文字 (默认 '确定' )
  93. * @property {Boolean} show 是否显示日历弹窗 (默认 false )
  94. * @property {Boolean} closeOnClickOverlay 是否允许点击遮罩关闭日历 (默认 false )
  95. * @property {Boolean} closeOnClickConfirm 是否允许点击确认按钮关闭日历,设置为false不影响confirm事件返回 (默认 true )
  96. * @property {Boolean} readonly 是否为只读状态,只读状态下禁止选择日期 (默认 false )
  97. * @property {String | Number} maxRange 日期区间最多可选天数,默认无限制,mode = range时有效
  98. * @property {String} rangePrompt 范围选择超过最多可选天数时的提示文案,mode = range时有效
  99. * @property {Boolean} showRangePrompt 范围选择超过最多可选天数时,是否展示提示文案,mode = range时有效 (默认 true )
  100. * @property {Boolean} allowSameDay 是否允许日期范围的起止时间为同一天,mode = range时有效 (默认 false )
  101. * @property {Number|String} round 圆角值,默认无圆角 (默认 0 )
  102. * @property {Number|String} monthNum 最多展示的月份数量 (默认 3 )
  103. *
  104. * @event {Function()} confirm 点击确定按钮时触发 选择日期相关的返回参数
  105. * @event {Function()} close 日历关闭时触发 可定义页面关闭时的回调事件
  106. * @example <uv-calendar ref="calendar" :defaultDate="defaultDateMultiple" mode="multiple" @confirm="confirm">
  107. </uv-calendar>
  108. * */
  109. export default {
  110. name: 'uv-calendar',
  111. emits:['confirm','close','change'],
  112. mixins: [mpMixin, mixin, props],
  113. components: {
  114. uvHeader,
  115. uvMonth
  116. },
  117. data() {
  118. return {
  119. // 需要显示的月份的数组
  120. months: [],
  121. // 在月份滚动区域中,当前视图中月份的index索引
  122. monthIndex: 0,
  123. // 月份滚动区域的高度
  124. listHeight: 0,
  125. // month组件中选择的日期数组
  126. selected: [],
  127. scrollIntoView: '',
  128. scrollTop:0,
  129. // 过滤处理方法
  130. innerFormatter: (value) => value
  131. }
  132. },
  133. watch: {
  134. selectedChange: {
  135. immediate: true,
  136. handler(n) {
  137. this.setMonth()
  138. }
  139. }
  140. },
  141. computed: {
  142. // 由于maxDate和minDate可以为字符串(2021-10-10),或者数值(时间戳),但是dayjs如果接受字符串形式的时间戳会有问题,这里进行处理
  143. innerMaxDate() {
  144. return this.$uv.test.number(this.maxDate)
  145. ? Number(this.maxDate)
  146. : this.maxDate
  147. },
  148. innerMinDate() {
  149. return this.$uv.test.number(this.minDate)
  150. ? Number(this.minDate)
  151. : this.minDate
  152. },
  153. // 多个条件的变化,会引起选中日期的变化,这里统一管理监听
  154. selectedChange() {
  155. return [this.innerMinDate, this.innerMaxDate, this.defaultDate]
  156. },
  157. subtitle() {
  158. // 初始化时,this.months为空数组,所以需要特别判断处理
  159. if (this.months.length) {
  160. return `${this.months[this.monthIndex].year}年${
  161. this.months[this.monthIndex].month
  162. }月`
  163. } else {
  164. return ''
  165. }
  166. },
  167. buttonDisabled() {
  168. // 如果为range类型,且选择的日期个数不足1个时,让底部的按钮出于disabled状态
  169. if (this.mode === 'range') {
  170. if (this.selected.length <= 1) {
  171. return true
  172. } else {
  173. return false
  174. }
  175. } else {
  176. return false
  177. }
  178. }
  179. },
  180. mounted() {
  181. this.start = Date.now()
  182. this.init()
  183. },
  184. methods: {
  185. // 在微信小程序中,不支持将函数当做props参数,故只能通过ref形式调用
  186. setFormatter(e) {
  187. this.innerFormatter = e
  188. },
  189. // 点击日期框触发
  190. changeDay(e) {
  191. this.$emit('change',e);
  192. },
  193. // month组件内部选择日期后,通过事件通知给父组件
  194. monthSelected(e) {
  195. this.selected = e
  196. if (!this.showConfirm) {
  197. // 在不需要确认按钮的情况下,如果为单选,或者范围多选且已选长度大于2,则直接进行返还
  198. if (
  199. this.mode === 'multiple' ||
  200. this.mode === 'single' ||
  201. (this.mode === 'range' && this.selected.length >= 2)
  202. ) {
  203. this.$emit('confirm', this.selected)
  204. }
  205. }
  206. },
  207. init() {
  208. // 校验maxDate,不能小于minDate
  209. if (
  210. this.innerMaxDate &&
  211. this.innerMinDate &&
  212. new Date(this.innerMaxDate).getTime() < new Date(this.innerMinDate).getTime()
  213. ) {
  214. return this.$uv.error('maxDate不能小于minDate')
  215. }
  216. // 滚动区域的高度
  217. this.listHeight = this.rowHeight * 5 + 30
  218. this.setMonth()
  219. },
  220. open() {
  221. this.setMonth()
  222. this.$refs.calendarPopup.open();
  223. },
  224. popupChange(e) {
  225. if(!e.show) {
  226. this.$emit('close');
  227. }
  228. },
  229. // 点击确定按钮
  230. confirm() {
  231. if (!this.buttonDisabled) {
  232. this.$emit('confirm', this.selected)
  233. }
  234. if (this.closeOnClickConfirm) {
  235. this.$refs.calendarPopup.close();
  236. }
  237. },
  238. // 获得两个日期之间的月份数
  239. getMonths(minDate, maxDate) {
  240. const minYear = dayjs(minDate).year()
  241. const minMonth = dayjs(minDate).month() + 1
  242. const maxYear = dayjs(maxDate).year()
  243. const maxMonth = dayjs(maxDate).month() + 1
  244. return (maxYear - minYear) * 12 + (maxMonth - minMonth) + 1
  245. },
  246. // 设置月份数据
  247. setMonth() {
  248. // 最小日期的毫秒数
  249. const minDate = this.innerMinDate || dayjs().valueOf()
  250. // 如果没有指定最大日期,则往后推3个月
  251. const maxDate =
  252. this.innerMaxDate ||
  253. dayjs(minDate)
  254. .add(this.monthNum - 1, 'month')
  255. .valueOf()
  256. // 最大最小月份之间的共有多少个月份,
  257. const months = this.$uv.range(
  258. 1,
  259. this.monthNum,
  260. this.getMonths(minDate, maxDate)
  261. )
  262. // 先清空数组
  263. this.months = []
  264. for (let i = 0; i < months; i++) {
  265. this.months.push({
  266. date: new Array(
  267. dayjs(minDate).add(i, 'month').daysInMonth()
  268. )
  269. .fill(1)
  270. .map((item, index) => {
  271. // 日期,取值1-31
  272. let day = index + 1
  273. // 星期,0-6,0为周日
  274. const week = dayjs(minDate)
  275. .add(i, 'month')
  276. .date(day)
  277. .day()
  278. const date = dayjs(minDate)
  279. .add(i, 'month')
  280. .date(day)
  281. .format('YYYY-MM-DD')
  282. let topInfo = ''
  283. let bottomInfo = ''
  284. if (this.showLunar) {
  285. // 将日期转为农历格式
  286. const lunar = Calendar.solar2lunar(
  287. dayjs(date).year(),
  288. dayjs(date).month() + 1,
  289. dayjs(date).date()
  290. )
  291. bottomInfo = lunar.IDayCn
  292. }
  293. let config = {
  294. day,
  295. week,
  296. // 小于最小允许的日期,或者大于最大的日期,则设置为disabled状态
  297. disabled:
  298. dayjs(date).isBefore(
  299. dayjs(minDate).format('YYYY-MM-DD')
  300. ) ||
  301. dayjs(date).isAfter(
  302. dayjs(maxDate).format('YYYY-MM-DD')
  303. ),
  304. // 返回一个日期对象,供外部的formatter获取当前日期的年月日等信息,进行加工处理
  305. date: new Date(date),
  306. topInfo,
  307. bottomInfo,
  308. dot: false,
  309. month:
  310. dayjs(minDate).add(i, 'month').month() + 1
  311. }
  312. const formatter =
  313. this.formatter || this.innerFormatter
  314. return formatter(config)
  315. }),
  316. // 当前所属的月份
  317. month: dayjs(minDate).add(i, 'month').month() + 1,
  318. // 当前年份
  319. year: dayjs(minDate).add(i, 'month').year()
  320. })
  321. }
  322. },
  323. // 滚动到默认设置的月份
  324. scrollIntoDefaultMonth(selected) {
  325. // 查询默认日期在可选列表的下标
  326. const _index = this.months.findIndex(({
  327. year,
  328. month
  329. }) => {
  330. month = this.$uv.padZero(month)
  331. return `${year}-${month}` === selected
  332. })
  333. if (_index !== -1) {
  334. // #ifndef MP-WEIXIN
  335. this.$nextTick(() => {
  336. this.scrollIntoView = `month-${_index}`
  337. })
  338. // #endif
  339. // #ifdef MP-WEIXIN
  340. this.scrollTop = this.months[_index].top || 0;
  341. // #endif
  342. }
  343. },
  344. // scroll-view滚动监听
  345. onScroll(event) {
  346. // 不允许小于0的滚动值,如果scroll-view到顶了,继续下拉,会出现负数值
  347. const scrollTop = Math.max(0, event.detail.scrollTop)
  348. // 将当前滚动条数值,除以滚动区域的高度,可以得出当前滚动到了哪一个月份的索引
  349. for (let i = 0; i < this.months.length; i++) {
  350. if (scrollTop >= (this.months[i].top || this.listHeight)) {
  351. this.monthIndex = i
  352. }
  353. }
  354. },
  355. // 更新月份的top值
  356. updateMonthTop(topArr = []) {
  357. // 设置对应月份的top值,用于onScroll方法更新月份
  358. topArr.map((item, index) => {
  359. this.months[index].top = item
  360. })
  361. // 获取默认日期的下标
  362. if (!this.defaultDate) {
  363. // 如果没有设置默认日期,则将当天日期设置为默认选中的日期
  364. const selected = dayjs().format("YYYY-MM")
  365. this.scrollIntoDefaultMonth(selected)
  366. return
  367. }
  368. let selected = dayjs().format("YYYY-MM");
  369. // 单选模式,可以是字符串或数组,Date对象等
  370. if (!this.$uv.test.array(this.defaultDate)) {
  371. selected = dayjs(this.defaultDate).format("YYYY-MM")
  372. } else {
  373. selected = dayjs(this.defaultDate[0]).format("YYYY-MM");
  374. }
  375. this.scrollIntoDefaultMonth(selected)
  376. }
  377. }
  378. }
  379. </script>
  380. <style lang="scss" scoped>
  381. .uv-calendar {
  382. &__confirm {
  383. padding: 7px 18px;
  384. }
  385. }
  386. </style>