myCar.vue 3.7 KB

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