cailist.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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="maintain(item.id)">编辑</view>
  19. <view class="lineDel" @click.stop="delCar(item.id)">保养信息</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(){
  62. },
  63. getqueryMyBMemberCar() {
  64. uni.showLoading({
  65. title: '加载中'
  66. })
  67. this.loding = false;
  68. this.$http('opencarOwnerHome/queryCarInfoList', {
  69. }, 'GET').then(res => {
  70. uni.hideLoading();
  71. this.carList = res.data;
  72. this.loding = true;
  73. })
  74. },
  75. addBtn() {
  76. uni.navigateTo({
  77. url: 'addCar'
  78. })
  79. // var length = this.carList.length
  80. // if (length > 4) {
  81. // uni.showToast({
  82. // title: '库最多放五辆车,如果想添加,请先删除',
  83. // icon: 'none',
  84. // duration: 3000
  85. // });
  86. // } else {
  87. // uni.navigateTo({
  88. // url: 'addCar'
  89. // })
  90. // }
  91. },
  92. editCar(id) {
  93. uni.navigateTo({
  94. url: 'addCar?id=' + id + '&isEditCar=true'
  95. })
  96. },
  97. itemClick(item){
  98. this.$store.commit('mutationscarInfo', item)
  99. uni.navigateBack({
  100. delta: 1
  101. })
  102. },
  103. // itemClick(item) {
  104. // if (this.fromMe == 'true') {
  105. // return
  106. // }
  107. // uni.setStorage({
  108. // key: 'maintainCarData',
  109. // data: item,
  110. // success: function() {
  111. // uni.navigateBack({
  112. // delta: 1
  113. // })
  114. // }
  115. // });
  116. // }
  117. }
  118. }
  119. </script>
  120. <style scoped>
  121. .box {
  122. min-height: 100vh;
  123. background: #F4F5F7;
  124. }
  125. .nodataImg {
  126. width: 400rpx;
  127. padding-top: 100rpx;
  128. }
  129. .noTxt {
  130. font-size: 36rpx;
  131. color: #999999;
  132. padding-top: 50rpx;
  133. }
  134. .nodataBox {
  135. text-align: center;
  136. }
  137. .bottomView {
  138. background-color: #FFFFFF;
  139. width: 100%;
  140. height: 120rpx;
  141. position: fixed;
  142. bottom: 0rpx;
  143. padding-bottom: constant(safe-area-inset-bottom);
  144. padding-bottom: env(safe-area-inset-bottom);
  145. }
  146. .saveCar {
  147. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  148. margin: 23rpx 30rpx;
  149. height: 74rpx;
  150. border-radius: 37rpx;
  151. color: #FFFFFF;
  152. font-size: 30rpx;
  153. font-weight: bold;
  154. align-items: center;
  155. display: flex;
  156. justify-content: center;
  157. }
  158. .carlistBox {
  159. padding-bottom: 120rpx;
  160. }
  161. .carlistBox {
  162. padding: 24rpx;
  163. padding-bottom: 120rpx;
  164. }
  165. .brandLogo {
  166. width: 63rpx;
  167. height: 63rpx;
  168. }
  169. .line {
  170. background: #FFFFFF;
  171. padding: 27rpx 20rpx;
  172. border-radius: 10rpx;
  173. margin-bottom: 20rpx;
  174. position: relative;
  175. }
  176. .lineCont {
  177. display: flex;
  178. }
  179. .carName {
  180. color: #3C3C3C;
  181. font-size: 30rpx;
  182. display: flex;
  183. }
  184. .plateNumber {
  185. border-radius: 4px;
  186. border: 1px solid #F19D01;
  187. height: 32rpx;
  188. line-height: 32rpx;
  189. padding: 0 10rpx;
  190. color: #F19D01;
  191. font-size: 22rpx;
  192. margin-left: 20rpx;
  193. margin-top: 5rpx;
  194. }
  195. .carMS {
  196. color: #666666;
  197. font-size: 26rpx;
  198. padding-top: 5px;
  199. }
  200. .lineBottom {
  201. display: flex;
  202. justify-content: flex-end;
  203. padding-top: 20rpx;
  204. }
  205. .lineDel {
  206. /* width: 94rpx; */
  207. height: 50rpx;
  208. border-radius: 25rpx;
  209. border: 1px solid #DDDDDD;
  210. text-align: center;
  211. line-height: 50rpx;
  212. font-size: 26rpx;
  213. color: #3C3C3C;
  214. margin-right: 29rpx;
  215. padding: 0 20rpx;
  216. }
  217. .Default {
  218. width: 148rpx;
  219. height: 50rpx;
  220. border-radius: 25rpx;
  221. border: 1px solid #FF4F00;
  222. line-height: 50rpx;
  223. text-align: center;
  224. color: #FF4F00;
  225. font-size: 26rpx;
  226. }
  227. .DefaultYES {
  228. width: 148rpx;
  229. height: 50rpx;
  230. border-radius: 25rpx;
  231. border: 1px solid #DDDDDD;
  232. line-height: 50rpx;
  233. text-align: center;
  234. color: #999999;
  235. font-size: 26rpx;
  236. }
  237. .DefaultIcon {
  238. position: absolute;
  239. top: 0;
  240. right: 0;
  241. width: 109rpx;
  242. height: 40rpx;
  243. background: linear-gradient(131deg, #FFA72C 0%, #FF450F 100%);
  244. border-radius: 0px 10rpx 0px 10rpx;
  245. text-align: center;
  246. line-height: 40rpx;
  247. color: #FFFFFF;
  248. font-size: 22rpx;
  249. }
  250. </style>