cailist.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <template>
  2. <view class="box">
  3. <view class="carlistBox">
  4. <view class="line" v-for="(item,index) in carList" @click="itemClick(item)">
  5. <view class="lineCont">
  6. <view>
  7. <image :src="item.brandLogo" mode="widthFix" class="brandLogo"></image>
  8. </view>
  9. <view style="padding-left: 29rpx;">
  10. <view class="carName">
  11. <span>{{item.brand}} {{item.series}}</span>
  12. <view class="plateNumber">{{item.plateNumber}}</view>
  13. </view>
  14. <view class="carMS">{{item.carModel}}</view>
  15. </view>
  16. </view>
  17. <view class="lineBottom">
  18. <view class="lineDel" @click.stop="editCar(item.id)">编辑</view>
  19. <view class="lineDel" @click.stop="maintain(item)">保养信息</view>
  20. <!-- <view class="Default" v-show="item.isDefault!=1" @click.stop="defaultCar(item)">设为默认</view>
  21. <view class="DefaultYES" v-show="item.isDefault==1">已设为默认</view> -->
  22. </view>
  23. <view class="DefaultIcon" v-show="item.isDefault==1">默认</view>
  24. </view>
  25. </view>
  26. <view v-if="carList==''&&loding" class="nodataBox">
  27. <image src="http://dmsphoto.66km.com.cn/thFiles/3C95A4C5-73F8-4B34-902B-703B8A0825C9.png" mode="widthFix" class="nodataImg"></image>
  28. <view class="noTxt">暂无数据</view>
  29. </view>
  30. <view class="bottomView">
  31. <view class="saveCar" @click="addBtn">
  32. <!-- <image src="../../../static/img/icon_tianjiacheliang.png" mode=""
  33. style="width: 44rpx; height: 36rpx; margin-right: 10rpx;"></image> -->
  34. <view>添加爱车</view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. carList: '',
  44. loding: false,
  45. type: '',
  46. carId: '',
  47. fromMe: false,
  48. }
  49. },
  50. onLoad(opt) {
  51. this.$common.isUserId()
  52. this.type = opt.type;
  53. // console.log(this.type)
  54. this.fromMe = opt.fromMe
  55. },
  56. onShow() {
  57. this.getqueryMyBMemberCar();
  58. this.carId = uni.getStorageSync("maintainCarData").id
  59. },
  60. methods: {
  61. maintain(item){
  62. uni.navigateTo({
  63. url:'../../index/handbook?mileage='+item.milage+'&liyangId='+item.nLevelID
  64. })
  65. },
  66. getqueryMyBMemberCar() {
  67. uni.showLoading({
  68. title: '加载中'
  69. })
  70. this.loding = false;
  71. this.$http('opencarOwnerHome/queryCarInfoList', {
  72. }, 'GET').then(res => {
  73. uni.hideLoading();
  74. this.carList = res.data;
  75. this.loding = true;
  76. })
  77. },
  78. addBtn() {
  79. uni.navigateTo({
  80. url: 'addCar'
  81. })
  82. },
  83. editCar(id) {
  84. uni.navigateTo({
  85. url: 'addCar?id=' + id + '&isEditCar=true'
  86. })
  87. },
  88. itemClick(item){
  89. this.$store.commit('mutationscarInfo', item)
  90. uni.navigateBack({
  91. delta: 1
  92. })
  93. },
  94. },
  95. // 下拉刷新
  96. onPullDownRefresh() {
  97. // this.page = 1
  98. this.getqueryMyBMemberCar()
  99. setTimeout(function() {
  100. uni.stopPullDownRefresh();
  101. }, 1000);
  102. },
  103. }
  104. </script>
  105. <style scoped>
  106. .box {
  107. min-height: 100vh;
  108. background: #F4F5F7;
  109. padding-bottom: 120rpx;
  110. }
  111. .nodataImg {
  112. width: 400rpx;
  113. padding-top: 100rpx;
  114. }
  115. .noTxt {
  116. font-size: 36rpx;
  117. color: #999999;
  118. padding-top: 50rpx;
  119. }
  120. .nodataBox {
  121. text-align: center;
  122. }
  123. .bottomView {
  124. background-color: #FFFFFF;
  125. width: 100%;
  126. height: 120rpx;
  127. position: fixed;
  128. bottom: 0rpx;
  129. padding-bottom: constant(safe-area-inset-bottom);
  130. padding-bottom: env(safe-area-inset-bottom);
  131. }
  132. .saveCar {
  133. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  134. margin: 23rpx 30rpx;
  135. height: 74rpx;
  136. border-radius: 37rpx;
  137. color: #FFFFFF;
  138. font-size: 30rpx;
  139. font-weight: bold;
  140. align-items: center;
  141. display: flex;
  142. justify-content: center;
  143. }
  144. .carlistBox {
  145. padding-bottom: 120rpx;
  146. }
  147. .carlistBox {
  148. padding: 24rpx;
  149. padding-bottom: 120rpx;
  150. }
  151. .brandLogo {
  152. width: 63rpx;
  153. height: 63rpx;
  154. }
  155. .line {
  156. background: #FFFFFF;
  157. padding: 27rpx 20rpx;
  158. border-radius: 10rpx;
  159. margin-bottom: 20rpx;
  160. position: relative;
  161. }
  162. .lineCont {
  163. display: flex;
  164. }
  165. .carName {
  166. color: #3C3C3C;
  167. font-size: 30rpx;
  168. display: flex;
  169. }
  170. .plateNumber {
  171. border-radius: 4px;
  172. border: 1px solid #F19D01;
  173. height: 32rpx;
  174. line-height: 32rpx;
  175. padding: 0 10rpx;
  176. color: #F19D01;
  177. font-size: 22rpx;
  178. margin-left: 20rpx;
  179. margin-top: 5rpx;
  180. }
  181. .carMS {
  182. color: #666666;
  183. font-size: 26rpx;
  184. padding-top: 5px;
  185. }
  186. .lineBottom {
  187. display: flex;
  188. justify-content: flex-end;
  189. padding-top: 20rpx;
  190. }
  191. .lineDel {
  192. /* width: 94rpx; */
  193. height: 50rpx;
  194. border-radius: 25rpx;
  195. border: 1px solid #DDDDDD;
  196. text-align: center;
  197. line-height: 50rpx;
  198. font-size: 26rpx;
  199. color: #3C3C3C;
  200. margin-right: 29rpx;
  201. padding: 0 20rpx;
  202. }
  203. .Default {
  204. width: 148rpx;
  205. height: 50rpx;
  206. border-radius: 25rpx;
  207. border: 1px solid #FF4F00;
  208. line-height: 50rpx;
  209. text-align: center;
  210. color: #FF4F00;
  211. font-size: 26rpx;
  212. }
  213. .DefaultYES {
  214. width: 148rpx;
  215. height: 50rpx;
  216. border-radius: 25rpx;
  217. border: 1px solid #DDDDDD;
  218. line-height: 50rpx;
  219. text-align: center;
  220. color: #999999;
  221. font-size: 26rpx;
  222. }
  223. .DefaultIcon {
  224. position: absolute;
  225. top: 0;
  226. right: 0;
  227. width: 109rpx;
  228. height: 40rpx;
  229. background: linear-gradient(131deg, #FFA72C 0%, #FF450F 100%);
  230. border-radius: 0px 10rpx 0px 10rpx;
  231. text-align: center;
  232. line-height: 40rpx;
  233. color: #FFFFFF;
  234. font-size: 22rpx;
  235. }
  236. </style>