index.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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="取车"
  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">取车时间</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">时</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">分</text>
  46. </view>
  47. </picker-view-column>
  48. </picker-view>
  49. </view>
  50. </view>
  51. <view class="bottom-row">
  52. <view class="text">{{ '取车:'+startDay }}</view>
  53. <button :loading="isPaickerLoading" class="custom-button" @tap="navToHireCar" >确定</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.bindTime()
  124. this.time = this.isNextDay?common.getToDay(1):common.getToDay()
  125. //#ifdef MP-ALIPAY
  126. let _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  127. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  128. //#endif
  129. //#ifdef MP-WEIXIN
  130. let _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  131. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  132. //#endif
  133. // #ifdef APP
  134. let _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  135. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  136. // #endif
  137. this.startDate = this.time+'T'+_startH+':'+_startM
  138. const DATE = new Date()
  139. this.curMonth = `${DATE.getFullYear()}年${DATE.getMonth()+1}月`
  140. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  141. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  142. this.endDay = common.formatTimeDate(this.endDate)
  143. },
  144. /**
  145. * 生命周期函数--监听页面加载
  146. */
  147. onLoad: function(options) {
  148. },
  149. /**
  150. * 生命周期函数--监听页面显示
  151. */
  152. onShow: function() {
  153. },
  154. methods: {
  155. setTakeCarData(result) {
  156. const [date, time] = result.takeCar.split(' ');
  157. const [hour, minute] = time.split(':');
  158. const [year, month] = result.dateText.split('-');
  159. this.startH = +hour;
  160. this.startM = +minute;
  161. this.curMonth = `${year}年${month}月`;
  162. this.startDay = result.takeCar;
  163. this.defaultDate = result.dateText;
  164. },
  165. extractMonth(str) {
  166. const match = str.match(/(\d+)月/);
  167. return match ? parseInt(match[1], 10) : null;
  168. },
  169. handleTouchStart(e) {
  170. this.startX = e.touches[0].clientX;
  171. this.startY = e.touches[0].clientY;
  172. this.touchStartTime = Date.now()
  173. this.isClick = true
  174. },
  175. handleTouchMove(e) {
  176. this.moveX = e.touches[0].clientX;
  177. this.moveY = e.touches[0].clientY;
  178. this.isClick = false // 如果有移动,则判定为非点击
  179. },
  180. handleTouchEnd() {
  181. if (this.isClick) return
  182. this.touchEndTime = Date.now();
  183. const diffX = this.moveX - this.startX;
  184. const diffY = this.moveY - this.startY;
  185. const touchDuration = this.touchEndTime - this.touchStartTime
  186. // 判断是否为滑动手势
  187. if (Math.abs(diffX) > 50 && Math.abs(diffY) < 20 && touchDuration < 500) {
  188. if (diffX > 0) {
  189. console.log('向左滑动', this.$refs.uniCalendar);
  190. this.$refs.uniCalendar && this.$refs.uniCalendar.pre()
  191. } else {
  192. console.log('向右滑动');
  193. this.$refs.uniCalendar && this.$refs.uniCalendar.next()
  194. }
  195. const { nowDate } = this.$refs.uniCalendar
  196. this.curMonth = `${nowDate.year}年${nowDate.month}月`
  197. }
  198. },
  199. nextMonth() {
  200. this.$refs.uniCalendar && this.$refs.uniCalendar.next()
  201. const { nowDate } = this.$refs.uniCalendar
  202. this.curMonth = `${nowDate.year}年${nowDate.month}月`
  203. },
  204. bindTime() {
  205. if (this.rentalUnit == '小时') {
  206. for (let i = 1; i < 25; i++) {
  207. this.number.push(i);
  208. }
  209. } else if (this.rentalUnit == '天') {
  210. for (let i = 1; i < 31; i++) {
  211. this.number.push(i);
  212. }
  213. } else if (this.rentalUnit == '周') {
  214. for (let i = 1; i < 5; i++) {
  215. this.number.push(i);
  216. }
  217. }
  218. },
  219. onChange(e) {
  220. this.time = e.fulldate
  221. //#ifdef MP-ALIPAY
  222. const _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  223. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  224. //#endif
  225. //#ifdef MP-WEIXIN
  226. const _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
  227. const _startM = this.startM< 10&&this.startM!== '00' ? '0' + this.startM : this.startM
  228. //#endif
  229. this.startDate = this.time+'T'+_startH+':'+_startM
  230. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  231. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  232. this.endDay = common.formatTimeDate(this.endDate)
  233. },
  234. pickerChange(e) {
  235. //#ifdef MP-ALIPAY
  236. const val = e.detail.value;
  237. if (val[0] != this.timeValue[0]) {
  238. this.startH = val[0]
  239. this.timeValue[0] = val[0];
  240. }
  241. if (val[1] != this.timeValue[1]) {
  242. this.startM = val[1]
  243. this.timeValue[1] = val[1];
  244. }
  245. //#endif
  246. const val = e.detail.value;
  247. this.startH = val[0]
  248. this.startM = val[1]
  249. this.loadTime()
  250. },
  251. loadTime() {
  252. //#ifdef MP-ALIPAY
  253. const _startH = this.startH< 10&&this.startH!== '00' ? ('0' + this.startH ): this.startH
  254. const _startM = this.startM< 10&&this.startM!== '00' ? ('0' + this.startM) : this.startM
  255. //#endif
  256. const _startH = this.startH< 10&&this.startH!== '00' ? ('0' + this.startH) : this.startH
  257. const _startM = this.startM< 10&&this.startM!== '00' ? ('0' + this.startM) : this.startM
  258. this.startDate =_startH==0?(this.time+'T0'+_startH+':'+_startM):( this.time+'T'+_startH+':'+_startM)
  259. this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
  260. this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
  261. this.endDay = common.formatTimeDate(this.endDate)
  262. },
  263. navToHireCar() {
  264. if(this.isPaickerLoading) return
  265. const value = {
  266. takeCar: this.startDay,
  267. returnCar: this.endDay,
  268. leaseTime: this.startN + 1,
  269. startDate: this.startDate,
  270. date: this.time
  271. }
  272. this.$emit('valuesUpdated', value);
  273. },
  274. close() {
  275. this.$emit('close', false)
  276. }
  277. }
  278. };
  279. </script>
  280. <style>
  281. @import './index.css';
  282. </style>