selectDate.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. // pages/Components/selectDate/selectDate.js
  2. const util = require('../../../utils/util')
  3. Component({
  4. lifetimes: {
  5. attached: function () {
  6. var date = new Date()
  7. const year = date.getFullYear()
  8. const month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1
  9. const day = date.getDate() + 1 < 10 ? '0' + date.getDate() : date.getDate()
  10. let now = new Date();
  11. let edd = new Date(now.setDate(now.getDate() + 7));
  12. let ed = util.formatTime(edd).substring(0, 10).replace(/\//g, '-')
  13. this.setData({
  14. endDate: year + '-' + month + '-' + day,
  15. lastDate: year + '-' + month + '-' + day,
  16. initChangeDate: ed
  17. })
  18. }
  19. },
  20. /**
  21. * 组件的属性列表
  22. */
  23. properties: {
  24. beginDate: {
  25. type: String
  26. },
  27. endDate: {
  28. type: String
  29. },
  30. typeFlag:{
  31. type:Boolean,
  32. default: false
  33. },
  34. toTop:{
  35. type:Number,
  36. value: -360
  37. }
  38. },
  39. /**
  40. * 组件的初始数据
  41. */
  42. data: {
  43. beginDate: '2020-01-01',
  44. endDate: '2021-02-02',
  45. initDate: '2020-01-01',
  46. lastDate: '',
  47. yFlag: false,
  48. animationBox: {},
  49. animationBg: {},
  50. typeArr:['全部','已预约','排队中'],
  51. typeIndex: 0,
  52. str:{}
  53. },
  54. /**
  55. * 组件的方法列表
  56. */
  57. methods: {
  58. bindBeginDateChange: function (e) {
  59. if (e.detail.value > this.data.endDate) {
  60. this.setData({
  61. beginDate: this.data.endDate
  62. })
  63. } else {
  64. this.setData({
  65. beginDate: e.detail.value
  66. })
  67. }
  68. },
  69. bindEndDateChange: function (e) {
  70. if (e.detail.value > this.data.initChangeDate) {
  71. this.setData({
  72. endDate: this.data.initChangeDate
  73. })
  74. } else {
  75. this.setData({
  76. endDate: e.detail.value
  77. })
  78. }
  79. },
  80. resetDate: function () {
  81. this.setData({
  82. beginDate: this.data.initDate,
  83. endDate: this.data.initChangeDate,
  84. typeIndex: 0
  85. })
  86. const date = new Date()
  87. const dateArr = [date.getFullYear()+"-01"+"-01", this.data.initChangeDate];
  88. const typeIndex = this.data.typeIndex
  89. this.triggerEvent("getDates", {dateArr,typeIndex});
  90. this.showSelect()
  91. },
  92. submitDate: function () {
  93. const dateArr = [this.data.beginDate, this.data.endDate];
  94. const typeIndex = this.data.typeIndex
  95. this.triggerEvent("getDates", {dateArr,typeIndex});
  96. this.showSelect()
  97. },
  98. showSelect: function () {
  99. var animation = wx.createAnimation({
  100. timingFunction: 'linear',
  101. })
  102. this.animation = animation
  103. var num = 0
  104. var opacity = 0
  105. if (this.data.yFlag == false) {
  106. num = Math.abs(this.data.toTop) / 2 + 30
  107. opacity = 0.4
  108. this.setData({
  109. yFlag: true
  110. })
  111. } else {
  112. num = this.data.toTop
  113. opacity = 0
  114. this.setData({
  115. yFlag: false
  116. })
  117. }
  118. animation.translateY(num).step()
  119. this.setData({
  120. animationBox: animation.export()
  121. })
  122. var animation2 = wx.createAnimation({
  123. timingFunction: 'linear',
  124. })
  125. this.animation2 = animation2
  126. animation2.opacity(opacity).step()
  127. this.setData({
  128. animationBg: animation2.export()
  129. })
  130. },
  131. bindPickerChange:function(e){
  132. const typeIndex = e.detail.value
  133. this.setData({
  134. typeIndex
  135. })
  136. // this.triggerEvent("changeType",str)
  137. },
  138. }
  139. })