myBespeak.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <template>
  2. <view class="box">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'我的预约'" ></homenav>
  4. <view class="itemHistory" v-for="(item,index) in itemData" :key="index" @click="goDetail(item.ID)">
  5. <view class="carPlate">
  6. <view class="time">{{item.BillDate}}</view>
  7. <view class="mileage" v-if="item.SheetState == 0" style="color: #FF0000">待确认</view>
  8. <view class="mileage" v-if="item.SheetState == 1" style="color: #3F90F7">预约中</view>
  9. <view class="mileage" v-if="item.SheetState == 2" style="color: #00A040;">已到店</view>
  10. <view class="mileage" v-if="item.SheetState == 3">已取消</view>
  11. </view>
  12. <view class="plate">{{item.PlateNumber}}</view>
  13. <view class="shopName">{{item.ShopName}}</view>
  14. <view class="itemN">
  15. <view class="itemContent" v-if="item.OrderItem.length != 0">{{item.OrderItem}}</view>
  16. </view>
  17. </view>
  18. <!-- 上拉 加载更多 -->
  19. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  20. <!-- 无数据空白页 -->
  21. <nodata v-if="itemData.length==0"></nodata>
  22. </view>
  23. </template>
  24. <script>
  25. import nodata from '../../components/nodata/nodata.vue'
  26. import homenav from "../../components/homenav/nav.vue"
  27. export default {
  28. components: {
  29. nodata,homenav
  30. },
  31. data() {
  32. return {
  33. page: 1,
  34. itemData: [],
  35. noMoreShow: false,
  36. iStatusBarHeight:'',
  37. }
  38. },
  39. onLoad() {
  40. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  41. this.page = 1
  42. this.myOrderCoupon()
  43. },
  44. onShow() {
  45. this.page = 1
  46. this.myOrderCoupon()
  47. },
  48. methods: {
  49. goDetail(id) {
  50. uni.navigateTo({
  51. url: 'bespeakDetail?id=' + id
  52. })
  53. },
  54. myOrderCoupon() {
  55. uni.showLoading({
  56. title: '加载中'
  57. })
  58. this.$http('openreservation/listOrderSheet', {
  59. // page: this.page,
  60. // limit: 10,
  61. }, 'GET').then(res => {
  62. uni.hideLoading();
  63. // var list = res.data.Items
  64. var list = res.data
  65. // 处理 undefined和null转为空白字符串
  66. // list.forEach((item, index) => {
  67. // for (const key in item) {
  68. // item[key] = this.$praseStrEmpty(item[key])
  69. // }
  70. // })
  71. if (this.page == 1) {
  72. this.itemData = list
  73. } else {
  74. this.itemData = this.itemData.concat(list)
  75. }
  76. if (list.length < 10) {
  77. this.noMoreShow = true
  78. } else {
  79. this.noMoreShow = false
  80. }
  81. })
  82. },
  83. },
  84. // 下拉刷新
  85. onPullDownRefresh() {
  86. this.page = 1
  87. this.myOrderCoupon()
  88. setTimeout(function() {
  89. uni.stopPullDownRefresh();
  90. }, 1000);
  91. },
  92. // 上拉加载更多
  93. onReachBottom() {
  94. // this.page++;
  95. this.myOrderCoupon()
  96. },
  97. }
  98. </script>
  99. <style>
  100. .box {
  101. min-height: 100vh;
  102. background-color: #F4F5F7;
  103. padding-top: 20rpx;
  104. }
  105. .itemHistory {
  106. margin: 0rpx 24rpx 20rpx;
  107. padding: 20rpx;
  108. background-color: #FFFFFF;
  109. border-radius: 10rpx;
  110. }
  111. .time {
  112. font-size: 24rpx;
  113. color: #999999;
  114. }
  115. .carPlate {
  116. margin-bottom: 22rpx;
  117. display: flex;
  118. align-items: center;
  119. justify-content: space-between;
  120. }
  121. .plate {
  122. font-size: 30rpx;
  123. color: #3C3C3C;
  124. font-weight: bold;
  125. margin-right: 20rpx;
  126. }
  127. .mileage {
  128. font-size: 24rpx;
  129. color: #999999;
  130. }
  131. .itemN {
  132. display: flex;
  133. }
  134. .shopName{
  135. color: #666666;
  136. font-size: 24rpx;
  137. margin: 16rpx 0rpx;
  138. /* 隐藏文字显示 ...不换行 */
  139. overflow: hidden;
  140. text-overflow: ellipsis;
  141. white-space: nowrap;
  142. }
  143. .itemContent {
  144. color: #666666;
  145. font-size: 24rpx;
  146. /* 隐藏文字显示 ...不换行 */
  147. overflow: hidden;
  148. text-overflow: ellipsis;
  149. white-space: nowrap;
  150. }
  151. .noMore {
  152. text-align: center;
  153. line-height: 50rpx;
  154. color: #999999;
  155. font-size: 28rpx;
  156. }
  157. </style>