cailist.vue 6.0 KB

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