calendar.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <template>
  2. <view class="container">
  3. <view class="con-center">
  4. <uni-calendar class="uni-calendar" :selected="selected" :show="show" :mode="mode"
  5. @change="onChange"></uni-calendar>
  6. <view style="margin-top: 32rpx;">
  7. <view class="picker-info flex-row flex-around">
  8. <view class="picker-text">取车时间</view>
  9. <view class="picker-text">租借时长</view>
  10. </view>
  11. <view class="picker-info flex-row flex-between">
  12. <picker-view @change="pickerChange" :value="[startH,startM]"
  13. style="height: 200rpx; width: 330rpx;">
  14. <picker-view-column>
  15. <view class="item-picker" v-for="(item, index) in hours" :key="index">{{ item }} 时</view>
  16. </picker-view-column>
  17. <picker-view-column>
  18. <view class="item-picker" v-for="(item, index) in minutes" :key="index">{{ item }} 分</view>
  19. </picker-view-column>
  20. </picker-view>
  21. <picker-view @pickend="pickend" @pickstart="pickstart" @change="pickerChangeNumber" :value="[startN]" style="height: 200rpx; width: 330rpx;">
  22. <picker-view-column>
  23. <view class="item-picker" v-for="(item, index) in number" :key="index">
  24. {{ item + rentalUnit }}</view>
  25. </picker-view-column>
  26. </picker-view>
  27. </view>
  28. </view>
  29. <view class="con-bottom flex-row flex-between">
  30. <view class="bottom-left">
  31. <view>{{'取车:'+startDay}}</view>
  32. <view>{{'还车:'+endDay}} </view>
  33. </view>
  34. <view>共{{startN+1}}{{ rentalUnit }}</view>
  35. <button class="custom-button" :loading="isPaickerLoading" @tap="navToHireCar" >确定</button>
  36. </view>
  37. </view>
  38. </view>
  39. </template>
  40. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  41. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  42. <script>
  43. var common = require('../../common/common.js');
  44. export default {
  45. props: {
  46. rentalUnit: {
  47. type: String,
  48. required: true
  49. }
  50. },
  51. data() {
  52. let _hours=[]
  53. let _minutes=[]
  54. for (let i = 0; i < 24; i++) {
  55. if (i < 10) {
  56. _hours.push('0' + i);
  57. } else {
  58. _hours.push(i);
  59. }
  60. }
  61. for (let i = 0; i < 60; i++) {
  62. if (i < 10) {
  63. _minutes.push('0' + i);
  64. } else {
  65. _minutes.push(i);
  66. }
  67. }
  68. let _isNextDay=(new Date().getMinutes()-0)>30&&((new Date().getHours()-0+1)==0)
  69. let _startH=(new Date().getMinutes()-0)>30?(new Date().getHours()-0+1):(new Date().getHours()-0)
  70. let _startM=(new Date().getMinutes()-0)>30?(new Date().getMinutes()-30):(new Date().getMinutes()-0+30)
  71. return {
  72. show: true,
  73. mode: 'date',
  74. selected: [],
  75. month: '',
  76. date: '',
  77. startT: 0,
  78. timeValue: [0,0],
  79. startDate: '', // 取车日期
  80. endDate: '', // 还车日期
  81. duration_unit: 0, //周期单位
  82. startH: _startH,
  83. startM: _startM,
  84. startN: 0,
  85. hours: _hours,
  86. minutes: _minutes,
  87. number: [],
  88. startDay: '',
  89. endDay: '',
  90. time: '',
  91. isNextDay:_isNextDay,
  92. isPaickerLoading:false
  93. };
  94. },
  95. mounted() {
  96. this.bindTime()
  97. if (this.rentalUnit == '小时') {
  98. this.duration_unit = 4
  99. } else if (this.rentalUnit == '天') {
  100. this.duration_unit = 1
  101. } else if (this.rentalUnit == '周') {
  102. this.duration_unit = 6
  103. }
  104. this.time = this.isNextDay?common.getToDay(1):common.getToDay()
  105. //#ifdef MP-ALIPAY
  106. const _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  107. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  108. //#endif
  109. //#ifdef MP-WEIXIN
  110. const _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  111. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  112. //#endif
  113. this.startDate = this.time+'T'+_startH+':'+_startM
  114. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  115. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  116. this.endDay = common.formatTimeDate(this.endDate)
  117. },
  118. /**
  119. * 生命周期函数--监听页面加载
  120. */
  121. onLoad: function(options) {
  122. },
  123. /**
  124. * 生命周期函数--监听页面显示
  125. */
  126. onShow: function() {
  127. },
  128. methods: {
  129. bindTime() {
  130. if (this.rentalUnit == '小时') {
  131. for (let i = 1; i < 25; i++) {
  132. this.number.push(i);
  133. }
  134. } else if (this.rentalUnit == '天') {
  135. for (let i = 1; i < 31; i++) {
  136. this.number.push(i);
  137. }
  138. } else if (this.rentalUnit == '周') {
  139. for (let i = 1; i < 5; i++) {
  140. this.number.push(i);
  141. }
  142. }
  143. },
  144. onChange(e) {
  145. this.time = e.fulldate
  146. //#ifdef MP-ALIPAY
  147. const _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  148. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  149. //#endif
  150. //#ifdef MP-WEIXIN
  151. const _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  152. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  153. //#endif
  154. this.startDate = this.time+'T'+_startH+':'+_startM
  155. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  156. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  157. this.endDay = common.formatTimeDate(this.endDate)
  158. },
  159. pickerChange(e) {
  160. //#ifdef MP-ALIPAY
  161. const val = e.detail.value;
  162. if (val[0] != this.timeValue[0]) {
  163. this.startH = val[0]
  164. this.timeValue[0] = val[0];
  165. }
  166. if (val[1] != this.timeValue[1]) {
  167. this.startM = val[1]
  168. this.timeValue[1] = val[1];
  169. }
  170. //#endif
  171. //#ifdef MP-WEIXIN
  172. const val = e.detail.value;
  173. this.startH = val[0]
  174. this.startM = val[1]
  175. //#endif
  176. this.loadTime()
  177. },
  178. pickerChangeNumber(e) {
  179. var _startN = e.detail.value[0]
  180. this.startN = _startN
  181. this.loadTime()
  182. },
  183. loadTime() {
  184. //#ifdef MP-ALIPAY
  185. const _startH = this.startH< 10&&this.startH!== '00' ? ('0' + this.startH ): this.startH
  186. const _startM = this.startM< 10&&this.startM!== '00' ? ('0' + this.startM) : this.startM
  187. //#endif
  188. //#ifdef MP-WEIXIN
  189. const _startH = this.startH< 10&&this.startH!== '00' ? ('0' + this.startH) : this.startH
  190. const _startM = this.startM< 10&&this.startM!== '00' ? ('0' + this.startM) : this.startM
  191. //#endif
  192. this.startDate =_startH==0?(this.time+'T0'+_startH+':'+_startM):( this.time+'T'+_startH+':'+_startM)
  193. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  194. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  195. this.endDay = common.formatTimeDate(this.endDate)
  196. },
  197. navToHireCar() {
  198. if(this.isPaickerLoading) return
  199. const value = {
  200. takeCar: this.startDay,
  201. returnCar: this.endDay,
  202. leaseTime: this.startN + 1,
  203. startDate: this.startDate
  204. }
  205. this.$emit('valuesUpdated', value);
  206. },
  207. pickstart(){
  208. console.log(123);
  209. this.setData({
  210. isPaickerLoading:true
  211. })
  212. },
  213. pickend(){
  214. console.log(123564);
  215. this.setData({
  216. isPaickerLoading:false
  217. })
  218. },
  219. }
  220. };
  221. </script>
  222. <style>
  223. @import './calendar.css';
  224. </style>