cailist.vue 6.8 KB

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