uni-calendar.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. <template>
  2. <view class="uni-calendar">
  3. <view v-if="!insert&&show" class="uni-calendar__mask" :class="{'uni-calendar--mask-show':aniMaskShow}" @click="clean"></view>
  4. <view v-if="insert || show" class="uni-calendar__content" :class="{'uni-calendar--fixed':!insert,'uni-calendar--ani-show':aniMaskShow}">
  5. <view v-if="!insert" class="uni-calendar__header uni-calendar--fixed-top">
  6. <view class="uni-calendar__header-btn-box" @click="close">
  7. <text class="uni-calendar__header-text uni-calendar--fixed-width">{{cancelText}}</text>
  8. </view>
  9. <view class="uni-calendar__header-btn-box" @click="confirm">
  10. <text class="uni-calendar__header-text uni-calendar--fixed-width">{{okText}}</text>
  11. </view>
  12. </view>
  13. <view class="uni-calendar__header" v-if="showHeader">
  14. <view class="uni-calendar__header-btn-box" @click.stop="pre">
  15. <view class="uni-calendar__header-btn uni-calendar--left"></view>
  16. </view>
  17. <picker mode="date" :value="date" fields="month" @change="bindDateChange">
  18. <text class="uni-calendar__header-text">{{ (nowDate.year||'') +' / '+( nowDate.month||'')}}</text>
  19. </picker>
  20. <view class="uni-calendar__header-btn-box" @click.stop="next">
  21. <view class="uni-calendar__header-btn uni-calendar--right"></view>
  22. </view>
  23. <text class="uni-calendar__backtoday" @click="backToday">{{todayText}}</text>
  24. </view>
  25. <view class="uni-calendar__box">
  26. <view v-if="showMonth" class="uni-calendar__box-bg">
  27. <text class="uni-calendar__box-bg-text">{{nowDate.month}}</text>
  28. </view>
  29. <view class="uni-calendar__weeks">
  30. <view class="uni-calendar__weeks-day">
  31. <text class="uni-calendar__weeks-day-text">{{SUNText}}</text>
  32. </view>
  33. <view class="uni-calendar__weeks-day">
  34. <text class="uni-calendar__weeks-day-text">{{monText}}</text>
  35. </view>
  36. <view class="uni-calendar__weeks-day">
  37. <text class="uni-calendar__weeks-day-text">{{TUEText}}</text>
  38. </view>
  39. <view class="uni-calendar__weeks-day">
  40. <text class="uni-calendar__weeks-day-text">{{WEDText}}</text>
  41. </view>
  42. <view class="uni-calendar__weeks-day">
  43. <text class="uni-calendar__weeks-day-text">{{THUText}}</text>
  44. </view>
  45. <view class="uni-calendar__weeks-day">
  46. <text class="uni-calendar__weeks-day-text">{{FRIText}}</text>
  47. </view>
  48. <view class="uni-calendar__weeks-day">
  49. <text class="uni-calendar__weeks-day-text">{{SATText}}</text>
  50. </view>
  51. </view>
  52. <view class="uni-calendar__weeks" v-for="(item,weekIndex) in weeks" :key="weekIndex">
  53. <view class="uni-calendar__weeks-item" v-for="(weeks,weeksIndex) in item" :key="weeksIndex">
  54. <calendar-item class="uni-calendar-item--hook" :weeks="weeks" :toText="toText" :calendar="calendar" :selected="selected" :lunar="lunar" @change="choiceDate"></calendar-item>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </template>
  61. <script>
  62. import Calendar from './util.js';
  63. import CalendarItem from './uni-calendar-item.vue'
  64. /**
  65. * Calendar 日历
  66. * @description 日历组件可以查看日期,选择任意范围内的日期,打点操作。常用场景如:酒店日期预订、火车机票选择购买日期、上下班打卡等
  67. * @tutorial https://ext.dcloud.net.cn/plugin?id=56
  68. * @property {String} date 自定义当前时间,默认为今天
  69. * @property {Boolean} lunar 显示农历
  70. * @property {String} startDate 日期选择范围-开始日期
  71. * @property {String} endDate 日期选择范围-结束日期
  72. * @property {Boolean} range 范围选择
  73. * @property {Boolean} insert = [true|false] 插入模式,默认为false
  74. * @value true 弹窗模式
  75. * @value false 插入模式
  76. * @property {Boolean} clearDate = [true|false] 弹窗模式是否清空上次选择内容
  77. * @property {Array} selected 打点,期待格式[{date: '2019-06-27', info: '签到', data: { custom: '自定义信息', name: '自定义消息头',xxx:xxx... }}]
  78. * @property {Boolean} showMonth 是否选择月份为背景
  79. * @event {Function} change 日期改变,`insert :ture` 时生效
  80. * @event {Function} confirm 确认选择`insert :false` 时生效
  81. * @event {Function} monthSwitch 切换月份时触发
  82. * @example <uni-calendar :insert="true":lunar="true" :start-date="'2019-3-2'":end-date="'2019-5-20'"@change="change" />
  83. */
  84. export default {
  85. components: {
  86. CalendarItem
  87. },
  88. emits:['close','confirm','change','monthSwitch'],
  89. props: {
  90. date: {
  91. type: String,
  92. default: ''
  93. },
  94. selected: {
  95. type: Array,
  96. default () {
  97. return []
  98. }
  99. },
  100. lunar: {
  101. type: Boolean,
  102. default: false
  103. },
  104. startDate: {
  105. type: String,
  106. default: ''
  107. },
  108. endDate: {
  109. type: String,
  110. default: ''
  111. },
  112. range: {
  113. type: Boolean,
  114. default: false
  115. },
  116. insert: {
  117. type: Boolean,
  118. default: true
  119. },
  120. showMonth: {
  121. type: Boolean,
  122. default: true
  123. },
  124. clearDate: {
  125. type: Boolean,
  126. default: true
  127. },
  128. showHeader: {
  129. type: Boolean,
  130. default: true
  131. },
  132. toText: {
  133. type: String,
  134. default: ''
  135. }
  136. },
  137. data() {
  138. return {
  139. show: false,
  140. weeks: [],
  141. calendar: {},
  142. nowDate: '',
  143. aniMaskShow: false
  144. }
  145. },
  146. computed:{
  147. /**
  148. * for i18n
  149. */
  150. okText() {
  151. return this.$t('确定')
  152. },
  153. cancelText() {
  154. return this.$t('取消')
  155. },
  156. todayText() {
  157. return this.$t('今日')
  158. },
  159. monText() {
  160. return this.$t('一')
  161. },
  162. TUEText() {
  163. return this.$t('二')
  164. },
  165. WEDText() {
  166. return this.$t('三')
  167. },
  168. THUText() {
  169. return this.$t('四')
  170. },
  171. FRIText() {
  172. return this.$t('五')
  173. },
  174. SATText() {
  175. return this.$t('六')
  176. },
  177. SUNText() {
  178. return this.$t('日')
  179. },
  180. },
  181. watch: {
  182. date(newVal) {
  183. // this.cale.setDate(newVal)
  184. this.init(newVal)
  185. },
  186. startDate(val){
  187. this.cale.resetSatrtDate(val)
  188. this.cale.setDate(this.nowDate.fullDate)
  189. this.weeks = this.cale.weeks
  190. },
  191. endDate(val){
  192. this.cale.resetEndDate(val)
  193. this.cale.setDate(this.nowDate.fullDate)
  194. this.weeks = this.cale.weeks
  195. },
  196. selected(newVal) {
  197. this.cale.setSelectInfo(this.nowDate.fullDate, newVal)
  198. this.weeks = this.cale.weeks
  199. }
  200. },
  201. created() {
  202. this.cale = new Calendar({
  203. selected: this.selected,
  204. startDate: this.startDate,
  205. endDate: this.endDate,
  206. range: this.range,
  207. })
  208. this.init(this.date)
  209. },
  210. methods: {
  211. // 取消穿透
  212. clean() {},
  213. bindDateChange(e) {
  214. const value = e.detail.value + '-1'
  215. this.setDate(value)
  216. const { year,month } = this.cale.getDate(value)
  217. this.$emit('monthSwitch', {
  218. year,
  219. month
  220. })
  221. },
  222. /**
  223. * 初始化日期显示
  224. * @param {Object} date
  225. */
  226. init(date) {
  227. this.cale.setDate(date)
  228. this.weeks = this.cale.weeks
  229. this.nowDate = this.calendar = this.cale.getInfo(date)
  230. },
  231. /**
  232. * 打开日历弹窗
  233. */
  234. open() {
  235. // 弹窗模式并且清理数据
  236. if (this.clearDate && !this.insert) {
  237. this.cale.cleanMultipleStatus()
  238. // this.cale.setDate(this.date)
  239. this.init(this.date)
  240. }
  241. this.show = true
  242. this.$nextTick(() => {
  243. setTimeout(() => {
  244. this.aniMaskShow = true
  245. }, 50)
  246. })
  247. },
  248. /**
  249. * 关闭日历弹窗
  250. */
  251. close() {
  252. this.aniMaskShow = false
  253. this.$nextTick(() => {
  254. setTimeout(() => {
  255. this.show = false
  256. this.$emit('close')
  257. }, 300)
  258. })
  259. },
  260. /**
  261. * 确认按钮
  262. */
  263. confirm() {
  264. this.setEmit('confirm')
  265. this.close()
  266. },
  267. /**
  268. * 变化触发
  269. */
  270. change() {
  271. if (!this.insert) return
  272. this.setEmit('change')
  273. },
  274. /**
  275. * 选择月份触发
  276. */
  277. monthSwitch() {
  278. let {
  279. year,
  280. month
  281. } = this.nowDate
  282. this.$emit('monthSwitch', {
  283. year,
  284. month: Number(month)
  285. })
  286. },
  287. /**
  288. * 派发事件
  289. * @param {Object} name
  290. */
  291. setEmit(name) {
  292. let {
  293. year,
  294. month,
  295. date,
  296. fullDate,
  297. lunar,
  298. extraInfo
  299. } = this.calendar
  300. this.$emit(name, {
  301. range: this.cale.multipleStatus,
  302. year,
  303. month,
  304. date,
  305. fulldate: fullDate,
  306. lunar,
  307. extraInfo: extraInfo || {}
  308. })
  309. },
  310. /**
  311. * 选择天触发
  312. * @param {Object} weeks
  313. */
  314. choiceDate(weeks) {
  315. if (weeks.disable) return
  316. this.calendar = weeks
  317. // 设置多选
  318. this.cale.setMultiple(this.calendar.fullDate)
  319. this.weeks = this.cale.weeks
  320. this.change()
  321. },
  322. /**
  323. * 回到今天
  324. */
  325. backToday() {
  326. const nowYearMonth = `${this.nowDate.year}-${this.nowDate.month}`
  327. const date = this.cale.getDate(new Date())
  328. const todayYearMonth = `${date.year}-${date.month}`
  329. this.init(date.fullDate)
  330. if(nowYearMonth !== todayYearMonth) {
  331. this.monthSwitch()
  332. }
  333. this.change()
  334. },
  335. /**
  336. * 上个月
  337. */
  338. pre() {
  339. const preDate = this.cale.getDate(this.nowDate.fullDate, -1, 'month').fullDate
  340. this.setDate(preDate)
  341. this.monthSwitch()
  342. },
  343. /**
  344. * 下个月
  345. */
  346. next() {
  347. const nextDate = this.cale.getDate(this.nowDate.fullDate, +1, 'month').fullDate
  348. this.setDate(nextDate)
  349. this.monthSwitch()
  350. },
  351. /**
  352. * 设置日期
  353. * @param {Object} date
  354. */
  355. setDate(date) {
  356. this.cale.setDate(date)
  357. this.weeks = this.cale.weeks
  358. this.nowDate = this.cale.getInfo(date)
  359. }
  360. }
  361. }
  362. </script>
  363. <style lang="scss" scoped>
  364. $uni-bg-color-mask: rgba($color: #000000, $alpha: 0.4);
  365. $uni-border-color: #EDEDED;
  366. $uni-text-color: #333;
  367. $uni-bg-color-hover:#f1f1f1;
  368. $uni-font-size-base:14px;
  369. $uni-text-color-placeholder: #808080;
  370. $uni-color-subtitle: #555555;
  371. $uni-text-color-grey:#999;
  372. .uni-calendar {
  373. /* #ifndef APP-NVUE */
  374. display: flex;
  375. /* #endif */
  376. flex-direction: column;
  377. }
  378. .uni-calendar__mask {
  379. position: fixed;
  380. bottom: 0;
  381. top: 0;
  382. left: 0;
  383. right: 0;
  384. background-color: $uni-bg-color-mask;
  385. transition-property: opacity;
  386. transition-duration: 0.3s;
  387. opacity: 0;
  388. /* #ifndef APP-NVUE */
  389. z-index: 99;
  390. /* #endif */
  391. }
  392. .uni-calendar--mask-show {
  393. opacity: 1
  394. }
  395. .uni-calendar--fixed {
  396. position: fixed;
  397. /* #ifdef APP-NVUE */
  398. bottom: 0;
  399. /* #endif */
  400. left: 0;
  401. right: 0;
  402. transition-property: transform;
  403. transition-duration: 0.3s;
  404. transform: translateY(460px);
  405. /* #ifndef APP-NVUE */
  406. bottom: calc(var(--window-bottom));
  407. z-index: 99;
  408. /* #endif */
  409. }
  410. .uni-calendar--ani-show {
  411. transform: translateY(0);
  412. }
  413. .uni-calendar__content {
  414. background-color: #fff;
  415. }
  416. .uni-calendar__header {
  417. position: relative;
  418. /* #ifndef APP-NVUE */
  419. display: flex;
  420. /* #endif */
  421. flex-direction: row;
  422. justify-content: center;
  423. align-items: center;
  424. height: 50px;
  425. border-bottom-color: $uni-border-color;
  426. border-bottom-style: solid;
  427. border-bottom-width: 1px;
  428. }
  429. .uni-calendar--fixed-top {
  430. /* #ifndef APP-NVUE */
  431. display: flex;
  432. /* #endif */
  433. flex-direction: row;
  434. justify-content: space-between;
  435. border-top-color: $uni-border-color;
  436. border-top-style: solid;
  437. border-top-width: 1px;
  438. }
  439. .uni-calendar--fixed-width {
  440. width: 50px;
  441. }
  442. .uni-calendar__backtoday {
  443. position: absolute;
  444. right: 0;
  445. top: 25rpx;
  446. padding: 0 5px;
  447. padding-left: 10px;
  448. height: 25px;
  449. line-height: 25px;
  450. font-size: 12px;
  451. border-top-left-radius: 25px;
  452. border-bottom-left-radius: 25px;
  453. color: $uni-text-color;
  454. background-color: $uni-bg-color-hover;
  455. }
  456. .uni-calendar__header-text {
  457. text-align: center;
  458. width: 100px;
  459. font-size: $uni-font-size-base;
  460. color: $uni-text-color;
  461. }
  462. .uni-calendar__header-btn-box {
  463. /* #ifndef APP-NVUE */
  464. display: flex;
  465. /* #endif */
  466. flex-direction: row;
  467. align-items: center;
  468. justify-content: center;
  469. width: 50px;
  470. height: 50px;
  471. }
  472. .uni-calendar__header-btn {
  473. width: 10px;
  474. height: 10px;
  475. border-left-color: $uni-text-color-placeholder;
  476. border-left-style: solid;
  477. border-left-width: 2px;
  478. border-top-color: $uni-color-subtitle;
  479. border-top-style: solid;
  480. border-top-width: 2px;
  481. }
  482. .uni-calendar--left {
  483. transform: rotate(-45deg);
  484. }
  485. .uni-calendar--right {
  486. transform: rotate(135deg);
  487. }
  488. .uni-calendar__weeks {
  489. position: relative;
  490. /* #ifndef APP-NVUE */
  491. display: flex;
  492. /* #endif */
  493. flex-direction: row;
  494. }
  495. .uni-calendar__weeks-item {
  496. flex: 1;
  497. }
  498. .uni-calendar__weeks-day {
  499. flex: 1;
  500. /* #ifndef APP-NVUE */
  501. display: flex;
  502. /* #endif */
  503. flex-direction: column;
  504. justify-content: center;
  505. align-items: center;
  506. height: 45px;
  507. border-bottom-color: #F5F5F5;
  508. border-bottom-style: solid;
  509. border-bottom-width: 1px;
  510. }
  511. .uni-calendar__weeks-day-text {
  512. font-size: 14px;
  513. }
  514. .uni-calendar__box {
  515. position: relative;
  516. background: #F3F8FF;
  517. }
  518. .uni-calendar__box-bg {
  519. /* #ifndef APP-NVUE */
  520. display: flex;
  521. /* #endif */
  522. justify-content: center;
  523. align-items: center;
  524. position: absolute;
  525. top: 0;
  526. left: 0;
  527. right: 0;
  528. bottom: 0;
  529. }
  530. .uni-calendar__box-bg-text {
  531. font-size: 200px;
  532. font-weight: bold;
  533. color: $uni-text-color-grey;
  534. opacity: 0.1;
  535. text-align: center;
  536. /* #ifndef APP-NVUE */
  537. line-height: 1;
  538. /* #endif */
  539. }
  540. </style>