cailist.vue 6.9 KB

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