index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <u-popup v-model="showPopup" :closeable="false" mode="bottom" border-radius="32" @close="close">
  3. <view class="main">
  4. <view class="cur-date">{{ curMonth }}</view>
  5. <img @tap="close" src="https://qiniu.bms16.com/FhBojI0tUP3dp9gZQ9lNSUNtn8B7" class="close-icon">
  6. <view
  7. class="calendar-wrap"
  8. @touchstart="handleTouchStart"
  9. @touchmove="handleTouchMove"
  10. @touchend="handleTouchEnd"
  11. >
  12. <SecondaryCalendar
  13. ref="uniCalendar"
  14. :style="{ backgroundColor: '#ccc' }"
  15. :show="show"
  16. :date="defaultDate"
  17. :show-month="false"
  18. :toText="$t('取车')"
  19. :show-header="false"
  20. mode="date"
  21. @change="onChange"
  22. />
  23. <view class="director" @tap="nextMonth">
  24. <view :class="['dot_1', extractMonth(curMonth) % 2 !== 0 && 'opc']"/>
  25. <view :class="['dot_2', extractMonth(curMonth) % 2 === 0 && 'opc']"/>
  26. </view>
  27. </view>
  28. <view class="time-wrap">
  29. <view class="picker-text">{{ $t('取车时间') }}</view>
  30. <view class="flex-row flex-between">
  31. <picker-view
  32. :value="[startH,startM]"
  33. style="height: 200rpx; width: 100%;"
  34. @change="pickerChange"
  35. >
  36. <picker-view-column>
  37. <view v-for="(item, index) in hours" :key="index" class="item-picker">
  38. {{ item }}
  39. <text class="unit">{{ $t('时小') }}</text>
  40. </view>
  41. </picker-view-column>
  42. <picker-view-column>
  43. <view v-for="(item, index) in minutes" :key="index" class="item-picker">
  44. {{ item }}
  45. <text class="unit">{{ $t('分') }}</text>
  46. </view>
  47. </picker-view-column>
  48. </picker-view>
  49. </view>
  50. </view>
  51. <view class="bottom-row">
  52. <view class="text">{{ $t('取车小')+':'+startDay }}</view>
  53. <button :loading="isPaickerLoading" class="custom-button" @tap="navToHireCar" >{{ $t('确定') }}</button>
  54. </view>
  55. </view>
  56. </u-popup>
  57. </template>
  58. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  59. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  60. <script>
  61. import SecondaryCalendar from './components/uni-calendar'
  62. var common = require('../../common/common.js');
  63. export default {
  64. props: {
  65. showPopup: {
  66. type: Boolean,
  67. default: false
  68. },
  69. },
  70. components: { SecondaryCalendar },
  71. data() {
  72. let _hours=[]
  73. let _minutes=[]
  74. for (let i = 0; i < 24; i++) {
  75. if (i < 10) {
  76. _hours.push('0' + i);
  77. } else {
  78. _hours.push(i);
  79. }
  80. }
  81. for (let i = 0; i < 60; i++) {
  82. if (i < 10) {
  83. _minutes.push('0' + i);
  84. } else {
  85. _minutes.push(i);
  86. }
  87. }
  88. let _isNextDay=(new Date().getMinutes()-0)>30&&((new Date().getHours()-0+1)==0)
  89. let _startH=(new Date().getMinutes()-0)>30?(new Date().getHours()-0+1):(new Date().getHours()-0)
  90. let _startM=(new Date().getMinutes()-0)>30?(new Date().getMinutes()-30):(new Date().getMinutes()-0+30)
  91. return {
  92. defaultDate: null,
  93. show: true,
  94. month: '',
  95. date: '',
  96. startT: 0,
  97. timeValue: [0,0],
  98. startDate: '', // 取车日期
  99. endDate: '', // 还车日期
  100. duration_unit: 0, //周期单位
  101. startH: (new Date().getMinutes()-0)>30?(new Date().getHours()-0+1):(new Date().getHours()-0),
  102. startM: _startM,
  103. startN: 0,
  104. hours: _hours,
  105. minutes: _minutes,
  106. number: [],
  107. startDay: '',
  108. endDay: '',
  109. time: '',
  110. isNextDay:_isNextDay,
  111. isPaickerLoading:false,
  112. startX: '',
  113. startY: '',
  114. moveX: '',
  115. moveY: '',
  116. touchStartTime: 0,
  117. touchEndTime: 0,
  118. curMonth: '',
  119. isClick: true
  120. };
  121. },
  122. mounted() {
  123. this.time = this.isNextDay?common.getToDay(1):common.getToDay()
  124. let _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  125. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  126. this.startDate = this.time+'T'+_startH+':'+_startM
  127. const DATE = new Date()
  128. this.curMonth = `${DATE.getFullYear()}`+'-'+`${DATE.getMonth()+1}`
  129. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  130. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  131. this.endDay = common.formatTimeDate(this.endDate)
  132. },
  133. /**
  134. * 生命周期函数--监听页面加载
  135. */
  136. onLoad: function(options) {
  137. },
  138. /**
  139. * 生命周期函数--监听页面显示
  140. */
  141. onShow: function() {
  142. },
  143. methods: {
  144. setTakeCarData(result) {
  145. const [date, time] = result.takeCar.split(' ');
  146. const [hour, minute] = time.split(':');
  147. const [year, month] = result.dateText.split('-');
  148. this.startH = +hour;
  149. this.startM = +minute;
  150. this.curMonth = `${year}`+'-'+`${month}`;
  151. this.startDay = result.takeCar;
  152. this.defaultDate = result.dateText;
  153. },
  154. extractMonth(str) {
  155. const match = str.match(/(\d+)月/);
  156. return match ? parseInt(match[1], 10) : null;
  157. },
  158. handleTouchStart(e) {
  159. this.startX = e.touches[0].clientX;
  160. this.startY = e.touches[0].clientY;
  161. this.touchStartTime = Date.now()
  162. this.isClick = true
  163. },
  164. handleTouchMove(e) {
  165. this.moveX = e.touches[0].clientX;
  166. this.moveY = e.touches[0].clientY;
  167. this.isClick = false // 如果有移动,则判定为非点击
  168. },
  169. handleTouchEnd() {
  170. if (this.isClick) return
  171. this.touchEndTime = Date.now();
  172. const diffX = this.moveX - this.startX;
  173. const diffY = this.moveY - this.startY;
  174. const touchDuration = this.touchEndTime - this.touchStartTime
  175. // 判断是否为滑动手势
  176. if (Math.abs(diffX) > 50 && Math.abs(diffY) < 20 && touchDuration < 500) {
  177. if (diffX > 0) {
  178. console.log('向左滑动', this.$refs.uniCalendar);
  179. this.$refs.uniCalendar && this.$refs.uniCalendar.pre()
  180. } else {
  181. console.log('向右滑动');
  182. this.$refs.uniCalendar && this.$refs.uniCalendar.next()
  183. }
  184. const { nowDate } = this.$refs.uniCalendar
  185. this.curMonth = `${nowDate.year}`+'-'+`${nowDate.month}`
  186. }
  187. },
  188. nextMonth() {
  189. this.$refs.uniCalendar && this.$refs.uniCalendar.next()
  190. const { nowDate } = this.$refs.uniCalendar
  191. this.curMonth = `${nowDate.year}`+'-'+`${nowDate.month}`
  192. },
  193. onChange(e) {
  194. this.time = e.fulldate
  195. const _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  196. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  197. this.startDate = this.time+'T'+_startH+':'+_startM
  198. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  199. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  200. this.endDay = common.formatTimeDate(this.endDate)
  201. },
  202. pickerChange(e) {
  203. //#ifdef MP-ALIPAY
  204. const val = e.detail.value;
  205. if (val[0] != this.timeValue[0]) {
  206. this.startH = val[0]
  207. this.timeValue[0] = val[0];
  208. }
  209. if (val[1] != this.timeValue[1]) {
  210. this.startM = val[1]
  211. this.timeValue[1] = val[1];
  212. }
  213. //#endif
  214. const val = e.detail.value;
  215. this.startH = val[0]
  216. this.startM = val[1]
  217. this.loadTime()
  218. },
  219. loadTime() {
  220. //#ifdef MP-ALIPAY
  221. const _startH = this.startH< 10&&this.startH!== '00' ? ('0' + this.startH ): this.startH
  222. const _startM = this.startM< 10&&this.startM!== '00' ? ('0' + this.startM) : this.startM
  223. //#endif
  224. const _startH = this.startH< 10&&this.startH!== '00' ? ('0' + this.startH) : this.startH
  225. const _startM = this.startM< 10&&this.startM!== '00' ? ('0' + this.startM) : this.startM
  226. this.startDate =_startH==0?(this.time+'T0'+_startH+':'+_startM):( this.time+'T'+_startH+':'+_startM)
  227. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  228. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  229. this.endDay = common.formatTimeDate(this.endDate)
  230. },
  231. navToHireCar() {
  232. if(this.isPaickerLoading) return
  233. const value = {
  234. takeCar: this.startDay,
  235. returnCar: this.endDay,
  236. leaseTime: this.startN + 1,
  237. startDate: this.startDate,
  238. date: this.time
  239. }
  240. this.$emit('valuesUpdated', value);
  241. },
  242. close() {
  243. this.$emit('close', false)
  244. }
  245. }
  246. };
  247. </script>
  248. <style>
  249. @import './index.css';
  250. </style>