myBike.vue 3.5 KB

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