myBike.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <!-- 我的汽车 -->
  2. <template>
  3. <view class="">
  4. <!-- 循环体 -->
  5. <scroll ref="pullScroll" :pullDown="pullDown" :pullUp="loadData">
  6. <view class="item" v-for="(item,index) in data" :key="index">
  7. <view class="content">
  8. <view class="left">
  9. <view style="width: 60rpx;height: 40rpx;">
  10. <image src="../../static/car.png" style="width:100%;height:100%;" ></image>
  11. </view>
  12. <view class="num">{{item.carNo}}</view>
  13. </view>
  14. <!-- <view class="right" @tap="seeMore(index)">
  15. <view class="tong">通行记录</view>
  16. <image src="../../static/icon_combo_nor@2x.png" style="width: 20rpx;height: 12rpx;margin-top: 15rpx;" v-show="!item.show"></image>
  17. <image src="../../static/icon_combo_set@2x.png" style="width: 20rpx;height: 12rpx;margin-top: 15rpx;" v-show="item.show"></image>
  18. </view> -->
  19. </view>
  20. </view>
  21. </scroll>
  22. <!-- 绑定新的车辆 -->
  23. <view class="btn" @tap="addCar">
  24. 绑定新的车辆
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. isShow: false,
  33. data: []
  34. }
  35. },
  36. onLoad() {
  37. // this.refresh();
  38. },
  39. mounted() {
  40. // this.getCarData()
  41. },
  42. methods: {
  43. // 刷新页面
  44. refresh() {
  45. this.$nextTick(() => {
  46. this.$refs.pullScroll.refresh();
  47. });
  48. },
  49. // 向下拉刷新
  50. pullDown(pullScroll) {
  51. setTimeout(() => {
  52. this.loadData(pullScroll);
  53. }, 200);
  54. },
  55. //获取加载数据
  56. loadData(pullScroll) {
  57. this.pageNum = pullScroll.page
  58. setTimeout(() => {
  59. // this.http.httpRequest('/wxapplet/ownercar/list', 'get', {
  60. // // cardNo: uni.getStorageSync('idNumber'),
  61. // pageNum: pullScroll.page,
  62. // pageSize: 3,
  63. // cardId: uni.getStorageSync('idNumber'),
  64. // }).then((res) => {
  65. // console.log(res)
  66. // if (res.code == 0) {
  67. // //判断数据是否加载完
  68. // if (this.data.length == res.data.total) {
  69. // pullScroll.finish();
  70. // } else {
  71. // pullScroll.success();
  72. // let data = res.data.rows
  73. // this.data = this.data.concat(data);
  74. // }
  75. // } else {
  76. // pullScroll.finish();
  77. // uni.showToast({
  78. // title: res.msg,
  79. // "icon": 'none'
  80. // })
  81. // }
  82. // }).catch(() => {
  83. // pullScroll.finish();
  84. // })
  85. }, 500);
  86. },
  87. // 查看或隐藏记录
  88. seeMore(index) {
  89. this.data[index].show = !this.data[index].show
  90. },
  91. // 绑定新的车辆
  92. addCar() {
  93. uni.navigateTo({
  94. url: "addCar"
  95. })
  96. }
  97. }
  98. }
  99. </script>
  100. <style>
  101. .btn {
  102. width: 702rpx;
  103. height: 90rpx;
  104. background: rgba(41, 138, 253, 1);
  105. opacity: 1;
  106. border-radius: 18rpx;
  107. font-size: 32rpx;
  108. font-family: PingFang SC;
  109. font-weight: bold;
  110. color: rgba(255, 255, 255, 1);
  111. text-align: center;
  112. line-height: 90rpx;
  113. position: fixed;
  114. bottom: 56rpx;
  115. left: 26rpx;
  116. z-index: 999;
  117. }
  118. .list {
  119. width: 100%;
  120. height: 36rpx;
  121. display: flex;
  122. justify-content: space-between;
  123. }
  124. .listText {
  125. height: 100%;
  126. font-size: 26rpx;
  127. font-family: PingFang SC;
  128. font-weight: 400;
  129. color: rgba(51, 51, 51, 1);
  130. }
  131. .date {
  132. width: 240rpx;
  133. height: 34rpx;
  134. font-size: 24rpx;
  135. font-family: PingFang SC;
  136. font-weight: 400;
  137. color: rgba(153, 153, 153, 1);
  138. text-align: right;
  139. }
  140. .right {
  141. width: 160rpx;
  142. height: 40rpx;
  143. display: flex;
  144. }
  145. .tong {
  146. font-size: 28rpx;
  147. font-family: PingFang SC;
  148. font-weight: 400;
  149. color: rgba(153, 153, 153, 1);
  150. margin-right: 25rpx;
  151. }
  152. .left {
  153. width:100%;
  154. display: flex;
  155. justify-content: space-between;
  156. }
  157. .num {
  158. width: 160rpx;
  159. height: 40rpx;
  160. font-size: 28rpx;
  161. font-family: PingFang SC;
  162. font-weight: bold;
  163. line-height: 40rpx;
  164. color: rgba(41, 138, 253, 1);
  165. margin-left: 14rpx;
  166. }
  167. .item {
  168. width: 702rpx;
  169. margin: 0 auto;
  170. margin-top: 35rpx;
  171. background: rgba(249, 252, 255, 1);
  172. opacity: 1;
  173. }
  174. .content {
  175. width: 620rpx;
  176. margin: 0 auto;
  177. padding-top: 26rpx;
  178. padding-bottom: 26rpx;
  179. display: flex;
  180. justify-content: space-between;
  181. }
  182. .more {
  183. width: 620rpx;
  184. margin: 0 auto;
  185. }
  186. </style>