timeSelect.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <template>
  2. <view class="timeSelectBox" >
  3. <uni-popup ref="popup" type="bottom">
  4. <view class="timeBOx">
  5. <view class="time-select-popup">
  6. <view class="time-select-popup-header clearfix">
  7. <view class="h4">查看预约时间</view>
  8. <span class="cancle-text color-lightgray" @click="close()">取消</span>
  9. </view>
  10. <view class="time-select-popup-body">
  11. <view class="time-select-popup-body-left">
  12. <view class="time-select-popup-body-left-item" v-for="(timeItem,index) in timeList" :class="{'selected':selectedDate===timeItem.date}" @click="selectTimeList(timeItem)">{{timeItem.date.substring(5)}}</view>
  13. </view>
  14. <view class="time-select-popup-body-time">
  15. <view class="time-select-popup-body-time-list">
  16. <view v-for="(item) in timeItemList" :key="item.time"
  17. class="time-select-popup-body-time-ltem"
  18. @click="selectTime(`${selectedDate} ${item.time}`,item.type)">
  19. <view class="time-select-popup-body-time-ltem-body"
  20. :class="{'not':item.type!==1,'select':selectedTime===`${selectedDate} ${item.time}`}">
  21. <view class="time1">{{item.time}}</view>
  22. <view class="time2">{{item.type===1?'可预约':item.type===2?'已约满':'已过期'}}</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view style="height: 120rpx;"></view>
  27. </view>
  28. </view>
  29. <view class="time-select-popup-body-button fenxiang newcsbtn" style="width: 100%" @click="handleSelect">完成</view>
  30. </view>
  31. </view>
  32. </uni-popup>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. props:['timedata'],
  38. data() {
  39. return {
  40. show: false,
  41. loading: false,
  42. timeList: [],
  43. timeItemList: [],
  44. selectedTime: '',
  45. selectedDate: ''
  46. }
  47. },
  48. onLoad(opt) {
  49. },
  50. onShow() {
  51. },
  52. methods: {
  53. handleSelect(){
  54. this.$emit('changeTime', this.selectedTime);
  55. this.$refs.popup.close();
  56. },
  57. close(){
  58. this.$refs.popup.close();
  59. this.selectedTime=''
  60. },
  61. open(){
  62. // 通过组件定义的ref调用uni-popup方法 ,如果传入参数 ,type 属性将失效 ,仅支持 ['top','left','bottom','right','center']
  63. this.$refs.popup.open('bottom');
  64. this.getOrderTimes()
  65. },
  66. selectTimeList (time) {
  67. console.log(time)
  68. this.timeItemList = time.timeList || []
  69. this.selectedDate = time.date
  70. },
  71. selectTime (time, type) {
  72. if (type !== 1) {
  73. return
  74. }
  75. this.selectedTime = time
  76. },
  77. getOrderTimes(){
  78. uni.showLoading({
  79. title: '加载中'
  80. });
  81. var yyshopInfo = uni.getStorageSync("yyshopInfo");
  82. this.$http('opendetail/getOrderTimes', {
  83. shopId:yyshopInfo.id,
  84. }, 'GET').then(res => {
  85. uni.hideLoading();
  86. this.timeList = res.data || []
  87. if (!this.timeList[0]) return
  88. this.timeItemList = this.timeList[0].timeList || []
  89. this.selectedDate = this.timeList[0].date || ''
  90. })
  91. }
  92. }
  93. }
  94. </script>
  95. <style scoped lang="less">
  96. .timeSelectBox{
  97. }
  98. .timeBOx{
  99. width: 750rpx;
  100. height: 55vh;
  101. background: #fff;
  102. position: fixed;
  103. bottom: 0;
  104. left: 0;
  105. }
  106. .time-select-popup .time-select-popup-body .time-select-popup-body-time .time-select-popup-body-time-list .time-select-popup-body-time-ltem .time-select-popup-body-time-ltem-body.select{
  107. color: #FF7D30;
  108. border: 2px solid #FF7D30;
  109. }
  110. .time-select-popup-header {
  111. position: relative;
  112. text-align: center;
  113. padding-top: 10rpx;
  114. height: 60rpx;
  115. line-height: 60rpx;
  116. .h4 {
  117. font-size: 32rpx;
  118. }
  119. .cancle-text {
  120. position: absolute;
  121. right: 5%;
  122. top: 28rpx;
  123. font-size: 28rpx;
  124. line-height: 100%;
  125. color: #999999;
  126. }
  127. }
  128. .time-select-popup-body{
  129. display: flex;
  130. }
  131. .time-select-popup-body-left-item{
  132. width: 172rpx;
  133. height: 94rpx;
  134. display: block;
  135. font-size:26rpx;
  136. font-family:PingFangSC-Regular,PingFang SC;
  137. font-weight:400;
  138. color:rgba(102,102,102,1);
  139. padding-left: 25rpx;
  140. line-height:94rpx;
  141. background:rgba(250,250,250,1);
  142. border-bottom:1px solid rgba(238,238,238,1);
  143. position: relative;
  144. &.selected{
  145. font-size:26rpx;
  146. font-family:PingFangSC-Medium,PingFang SC;
  147. font-weight:500;
  148. color:rgba(51,51,51,1);
  149. background:rgba(255,255,255,1);
  150. &:before{
  151. display: block;
  152. content: '';
  153. width: 6rpx;
  154. height: 30rpx;
  155. background:rgba(63,144,247,1);
  156. position: absolute;
  157. left: 0;
  158. top: 32rpx;
  159. }
  160. }
  161. }
  162. .time-select-popup-body-time {
  163. width: 578rpx;
  164. .time-select-popup-body-time-list {
  165. display: flex;
  166. align-content: flex-start;
  167. flex-wrap: wrap;
  168. align-items:baseline;
  169. background-color: rgb(255, 255, 255);
  170. height:calc(50vh - 100rpx);
  171. overflow-y: auto;
  172. .time-select-popup-body-time-ltem{
  173. width: 33.3% ;
  174. padding: 20rpx;
  175. box-sizing: border-box;
  176. text-align: center;
  177. .time-select-popup-body-time-ltem-body{
  178. padding-top: 12px;
  179. color: rgb(153, 153, 153);
  180. border-radius: 5px;
  181. height: 80rpx;
  182. border: 2rpx solid #DDDDDD;
  183. }
  184. .time-select-popup-body-time-ltem-body.not{
  185. background-color: #F7F7F7;
  186. height: 80rpx;
  187. border: 2rpx solid #DDDDDD;
  188. cursor: no-drop;
  189. }
  190. .time-select-popup-body-time-ltem-body.select{
  191. background-color: rgb(255, 255, 255);
  192. height: 80rpx;
  193. border: 1px solid #FF0000;
  194. color:#FF0000;
  195. position: relative;
  196. &:before{
  197. position: absolute;
  198. content: '';
  199. display: block;
  200. background: url("http://dmsphoto.66km.com.cn/thFiles/5F4D0178-AB5D-491F-906C-414AFDC84FF1.png") 100% 0 no-repeat;
  201. background-size: contain;
  202. top: -2rpx;
  203. right: -2rpx;
  204. height: 50rpx;
  205. width: 50rpx;
  206. }
  207. }
  208. }
  209. }
  210. }
  211. .time1{
  212. font-size: 24rpx;
  213. }
  214. .time2{
  215. font-size: 24rpx;
  216. }
  217. .time-select-popup-body-button{
  218. position: fixed;
  219. bottom: 0;
  220. left: 0;
  221. width: 750rpx;
  222. color: #ffffff;
  223. height: 100rpx;
  224. line-height: 100rpx;
  225. background: #FF0000;
  226. font-size: 32rpx;
  227. text-align: center;
  228. }
  229. </style>