cailist.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. <template>
  2. <view class="box">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'我的车库'" :cj="3"></homenav>
  4. <view class="carlistBox" style="display: none;">
  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.plateNumber}}</span>
  14. <view class="plateNumber" v-if="item.milage">{{item.milage}}km</view>
  15. <view class="nextCare" v-if="item.nextReturnDate||item.nextCareMilage">
  16. <image class="carByIcon" src="../../../static/timg/car2.png" mode=""></image>
  17. <span class="nextCareTitle">下次保养</span>
  18. <span class="nextCaretxt" v-if="item.nextReturnDate">{{item.nextReturnDate}}天后</span>
  19. <span class="nextCaretxt" v-if="item.nextReturnDate&&item.nextCareMilage">或</span>
  20. <span class="nextCaretxt" v-if="item.nextCareMilage&&item.nextCareMilage>-1">{{item.nextCareMilage}}km</span>
  21. </view>
  22. </view>
  23. <!-- <view class="carMS">{{item.carModel?item.carModel:''}}</view> -->
  24. <view class="carMS">{{item.brand?item.brand:''}} {{item.series?item.series:''}}</view>
  25. </view>
  26. </view>
  27. <view class="lineBottom">
  28. <!-- <view class="lineDel" @click.stop="editCar(item.id)">编辑</view> -->
  29. <view class="lineDel" v-if="openMCar.showType==1" @click.stop="maintain(item)">保养信息</view>
  30. <!-- <view class="Default" v-show="item.isDefault!=1" @click.stop="defaultCar(item)">设为默认</view>
  31. <view class="DefaultYES" v-show="item.isDefault==1">已设为默认</view> -->
  32. </view>
  33. <view class="DefaultIcon" v-show="item.isDefault==1">默认</view>
  34. </view>
  35. </view>
  36. <view class="carlistBox">
  37. <view class="line" v-for="(item,index) in carList" @click="itemClick(item)">
  38. <view class="lineTop">
  39. <view class="lineplateNumber">{{item.plateNumber}}</view>
  40. <view class="lineSx1"></view>
  41. <view class="linekk">
  42. <view class="linekkrow" v-if="item.nextCareMilage" style="color: #333333;font-size: 24rpx;">{{item.nextCareMilage}}km</view>
  43. <view class="linekkrow" v-else>-</view>
  44. <view class="linekkrow">建议下次</view>
  45. <view class="linekkrow" >保养里程</view>
  46. </view>
  47. <view class="lineSx"></view>
  48. <view class="linekk">
  49. <view class="linekkrow" v-if="item.nextCareDate" style="color: #333333;font-size: 24rpx;">{{item.nextCareDate.slice(0,10)}}</view>
  50. <view class="linekkrow" v-else>-</view>
  51. <view class="linekkrow">建议下次</view>
  52. <view class="linekkrow" >保养日期</view>
  53. </view>
  54. </view>
  55. <view class="lineBottom">
  56. <view class="lineDel" v-show="item.isDefault!=1" @click.stop="defaultCar(item)">设为默认</view>
  57. <view class="lineDel" @click.stop="editCar(item.id)">编辑</view>
  58. <view class="lineDel" @click.stop="maintain(item)">保养信息</view>
  59. </view>
  60. <view class="DefaultIcon2" v-show="item.isDefault==1">默认</view>
  61. </view>
  62. </view>
  63. <view v-if="carList==''&&loding" class="nodataBox">
  64. <image src="http://dmsphoto.66km.com.cn/thFiles/3C95A4C5-73F8-4B34-902B-703B8A0825C9.png" mode="widthFix" class="nodataImg"></image>
  65. <view class="noTxt">暂无数据</view>
  66. </view>
  67. <view class="bottomView">
  68. <view class="saveCar" :style="{background:'#'+themeColor}" @click="addBtn">
  69. <view>添加爱车</view>
  70. </view>
  71. </view>
  72. <!-- 手机号授权 -->
  73. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  74. <view class="authorizCont" @click.stop="">
  75. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  76. <view class="authorizMs">未注册的手机号登录后将自动创建会员账号,如果您不同意授权获取手机号,会影响您使用我们的产品和服务。</view>
  77. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  78. </view>
  79. <view style="text-align: center;padding-top: 56rpx;">
  80. <image src="../../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  81. </view>
  82. </view>
  83. </view>
  84. </template>
  85. <script>
  86. import homenav from "@/components/homenav/nav.vue"
  87. export default {
  88. components: {
  89. homenav
  90. },
  91. data() {
  92. return {
  93. carList: '',
  94. loding: false,
  95. type: '',
  96. carId: '',
  97. fromMe: false,
  98. themeColor:'',
  99. iStatusBarHeight:'',
  100. openMCar:'',
  101. userInfo:'',
  102. ext:'',
  103. wxOpenData:'',
  104. authorizShow:false,
  105. code:'',
  106. }
  107. },
  108. onLoad(opt) {
  109. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  110. this.$common.isUserId()
  111. this.type = opt.type;
  112. // console.log(this.type)
  113. this.fromMe = opt.fromMe
  114. this.themeColor = uni.getStorageSync("themeColor");
  115. this.openMCar=uni.getStorageSync("openMCar");
  116. this.userInfo=this.$store.state.userInfo;
  117. this.ext=this.$common.getExtStoreId();
  118. if(this.userInfo){
  119. this.getqueryMyBMemberCar()
  120. }else{
  121. this.$common.automaticlogin().then(val => {
  122. this.userInfo=this.$store.state.userInfo;
  123. this.wxOpenData=this.$store.state.wxOpenData;
  124. this.themeColor = uni.getStorageSync("themeColor");
  125. this.getqueryMyBMemberCar();
  126. if(!this.userInfo){
  127. this.authorizShow=true
  128. }
  129. })
  130. }
  131. },
  132. onShow() {
  133. this.getqueryMyBMemberCar();
  134. this.carId = uni.getStorageSync("maintainCarData").id
  135. },
  136. methods: {
  137. decryptPhoneNumber: function(e) {
  138. console.log(e);
  139. this.code=e.detail.code
  140. this.wxPhoneLogin()
  141. this.authorizShow=false;
  142. },
  143. wxPhoneLogin(){
  144. var that=this;
  145. this.$http('miniApp2/sys/wxPhoneLogin', {
  146. appId:this.ext.appId,
  147. unionId:this.ext.unionId,
  148. code:this.code,
  149. openId:this.wxOpenData.openid
  150. },'POST').then(res => {
  151. var data = res.data;
  152. if(data.loginInfo){
  153. this.userInfo=data.loginInfo.openUser;
  154. this.wxOpenData=data.loginInfo;
  155. this.$store.commit('mutationswxOpenData', data)
  156. this.$store.commit('mutationsuserInfo', this.userInfo)
  157. this.getqueryMyBMemberCar()
  158. }
  159. })
  160. },
  161. maintain(item){
  162. uni.navigateTo({
  163. url:'../../index/handbook?mileage='+item.milage+'&liyangId='+item.nLevelID
  164. })
  165. },
  166. getqueryMyBMemberCar() {
  167. uni.showLoading({
  168. title: '加载中'
  169. })
  170. this.loding = false;
  171. this.$http('opencarOwnerHome/queryCarInfoList', {
  172. }, 'GET').then(res => {
  173. uni.hideLoading();
  174. this.carList = res.data;
  175. this.loding = true;
  176. })
  177. },
  178. defaultCar(item){
  179. uni.showLoading({
  180. title: '加载中'
  181. })
  182. this.loding = false;
  183. this.$http('opencarOwnerHome/setDefaultCar', {
  184. carId:item.id
  185. }, 'GET').then(res => {
  186. uni.hideLoading();
  187. this.$store.commit('mutationscarInfo', item)
  188. this.loding = true;
  189. this.getqueryMyBMemberCar();
  190. })
  191. },
  192. addBtn() {
  193. uni.navigateTo({
  194. url: '../../subPack/addCarCK'
  195. })
  196. },
  197. editCar(id) {
  198. uni.navigateTo({
  199. url: 'addCar?id=' + id + '&isEditCar=true'
  200. })
  201. },
  202. itemClick(item){
  203. if(this.type==5){
  204. uni.removeStorageSync('byCar');
  205. uni.setStorage({
  206. key: 'byCar',
  207. data: item,
  208. success: function () {
  209. uni.navigateBack({
  210. delta: 1
  211. })
  212. }
  213. });
  214. }else if(this.type!=3){
  215. this.$store.commit('mutationscarInfo', item)
  216. uni.navigateBack({
  217. delta: 1
  218. })
  219. }
  220. },
  221. },
  222. // 下拉刷新
  223. onPullDownRefresh() {
  224. // this.page = 1
  225. this.getqueryMyBMemberCar()
  226. setTimeout(function() {
  227. uni.stopPullDownRefresh();
  228. }, 1000);
  229. },
  230. }
  231. </script>
  232. <style scoped>
  233. .lineTop{
  234. display: flex;justify-content: space-between;
  235. color: #3C3C3C;
  236. font-size: 30rpx;
  237. }
  238. .linekk{
  239. text-align: center;
  240. color: #999999;
  241. font-size: 22rpx;
  242. line-height: 36rpx;
  243. width: 32%;
  244. }
  245. .lineSx1{
  246. width: 2rpx;height: 60rpx;
  247. background: #DDDDDD;margin-top: 24rpx;
  248. }
  249. .lineSx{
  250. width: 2rpx;height: 80rpx;
  251. background: #DDDDDD;margin-top: 14rpx;
  252. }
  253. .lineplateNumber{
  254. font-weight: 600;
  255. display: flex;
  256. align-items: center;
  257. width: 32%;
  258. justify-content: center;
  259. color: #222222;
  260. }
  261. .carByIcon{
  262. width: 34rpx;height: 34rpx;
  263. }
  264. .nextCaretxt{
  265. color: #EC0F0A;
  266. }
  267. .nextCare{
  268. font-size: 20rpx;
  269. line-height: 36rpx;
  270. display: flex;
  271. padding-left: 6rpx;
  272. }
  273. .box {
  274. min-height: 100vh;
  275. background: #F4F5F7;
  276. padding-bottom: 120rpx;
  277. }
  278. .nodataImg {
  279. width: 400rpx;
  280. padding-top: 100rpx;
  281. }
  282. .noTxt {
  283. font-size: 36rpx;
  284. color: #999999;
  285. padding-top: 50rpx;
  286. }
  287. .nodataBox {
  288. text-align: center;
  289. }
  290. .bottomView {
  291. background-color: #FFFFFF;
  292. width: 100%;
  293. height: 120rpx;
  294. position: fixed;
  295. bottom: 0rpx;
  296. padding-bottom: constant(safe-area-inset-bottom);
  297. padding-bottom: env(safe-area-inset-bottom);
  298. }
  299. .saveCar {
  300. background: #EC0F0A;
  301. margin: 23rpx 30rpx;
  302. height: 74rpx;
  303. border-radius: 37rpx;
  304. color: #FFFFFF;
  305. font-size: 30rpx;
  306. font-weight: bold;
  307. align-items: center;
  308. display: flex;
  309. justify-content: center;
  310. }
  311. .carlistBox {
  312. padding-bottom: 120rpx;
  313. }
  314. .carlistBox {
  315. padding: 24rpx;
  316. padding-bottom: 120rpx;
  317. }
  318. .brandLogo {
  319. width: 63rpx;
  320. height: 63rpx;
  321. }
  322. .line {
  323. background: #FFFFFF;
  324. padding: 24rpx 20rpx;
  325. border-radius: 16rpx;
  326. margin-bottom: 20rpx;
  327. position: relative;
  328. }
  329. .lineCont {
  330. display: flex;
  331. }
  332. .carName {
  333. color: #3C3C3C;
  334. font-size: 30rpx;
  335. display: flex;
  336. }
  337. .plateNumber {
  338. border-radius: 4px;
  339. border: 1px solid #F19D01;
  340. height: 32rpx;
  341. line-height: 32rpx;
  342. padding: 0 10rpx;
  343. color: #F19D01;
  344. font-size: 22rpx;
  345. margin-left: 20rpx;
  346. margin-top: 5rpx;
  347. }
  348. .carMS {
  349. color: #666666;
  350. font-size: 26rpx;
  351. padding-top: 5px;
  352. }
  353. .lineBottom {
  354. display: flex;
  355. justify-content: flex-end;
  356. padding-top: 30rpx;
  357. }
  358. .lineDel {
  359. /* width: 94rpx; */
  360. height: 56rpx;
  361. border-radius: 8rpx;
  362. border: 1px solid #DDDDDD;
  363. text-align: center;
  364. line-height: 56rpx;
  365. font-size: 26rpx;
  366. color: #3C3C3C;
  367. margin-left: 29rpx;
  368. padding: 0 20rpx;
  369. }
  370. .Default {
  371. width: 148rpx;
  372. height: 50rpx;
  373. border-radius: 25rpx;
  374. border: 1px solid #FF4F00;
  375. line-height: 50rpx;
  376. text-align: center;
  377. color: #FF4F00;
  378. font-size: 26rpx;
  379. }
  380. .DefaultYES {
  381. width: 148rpx;
  382. height: 50rpx;
  383. border-radius: 25rpx;
  384. border: 1px solid #DDDDDD;
  385. line-height: 50rpx;
  386. text-align: center;
  387. color: #999999;
  388. font-size: 26rpx;
  389. }
  390. .DefaultIcon {
  391. position: absolute;
  392. top: 0;
  393. right: 0;
  394. width: 109rpx;
  395. height: 40rpx;
  396. background: linear-gradient(131deg, #FFA72C 0%, #FF450F 100%);
  397. border-radius: 0px 10rpx 0px 10rpx;
  398. text-align: center;
  399. line-height: 40rpx;
  400. color: #FFFFFF;
  401. font-size: 22rpx;
  402. }
  403. .DefaultIcon2{
  404. position: absolute;
  405. top: 0;
  406. left: 0;
  407. width: 74rpx;
  408. height: 40rpx;
  409. /* background: linear-gradient(131deg, #FFA72C 0%, #FF450F 100%); */
  410. border-radius: 16rpx 0rpx 16rpx 0rpx;
  411. text-align: center;
  412. line-height: 40rpx;
  413. color: #222222;
  414. font-size: 22rpx;
  415. background: #FCD903;
  416. }
  417. .authorizBox{
  418. width: 100vw;
  419. height: 100vh;
  420. background: rgba(0, 0, 0, 0.5);
  421. position: fixed;
  422. top: 0;
  423. left: 0;
  424. }
  425. .authorizCont{
  426. margin-top: 30vh;
  427. width: 564rpx;
  428. height: 408rpx;
  429. background: #FFFFFF;
  430. border-radius: 24rpx;
  431. margin-left: 93rpx;
  432. position: relative;
  433. }
  434. .authorizCloseImg{
  435. width: 62rpx;
  436. height: 62rpx;
  437. }
  438. .sqLogoBox{
  439. width: 180rpx;
  440. height: 180rpx;
  441. background: #FFFFFF;
  442. border-radius: 90rpx;
  443. text-align: center;
  444. position: absolute;
  445. top: -50rpx;
  446. left: 192rpx;
  447. }
  448. .authorizName{
  449. color: #333333;
  450. line-height: 42rpx;
  451. font-size: 30rpx;
  452. text-align: center;
  453. padding-top: 58rpx;
  454. }
  455. .authorizMs{
  456. color: #999999;
  457. line-height: 36rpx;
  458. font-size: 26rpx;
  459. width: 452rpx;
  460. padding-top: 24rpx;
  461. text-align: center;
  462. margin-left: 56rpx;
  463. }
  464. .authorizContbutton{
  465. width: 422rpx;
  466. height: 88rpx;
  467. background: #EC0F0A;
  468. border-radius: 44rpx;
  469. line-height: 88rpx;
  470. text-align: center;
  471. font-size:30rpx;
  472. color: #FFFFFF;
  473. margin-top: 62rpx;
  474. margin-left:71rpx;
  475. }
  476. .shopBoxpt{
  477. margin-top: 20rpx;
  478. }
  479. button::after{
  480. border: none;
  481. }
  482. button{
  483. position: relative;
  484. display: block;
  485. margin-left: 0;
  486. margin-right: 0;
  487. padding-left: 0px;
  488. padding-right: 0px;
  489. box-sizing: border-box;
  490. // font-size: 18px;
  491. text-align: center;
  492. text-decoration: none;
  493. // line-height: 1;
  494. line-height: 1.35;
  495. // border-radius: 5px;
  496. -webkit-tap-highlight-color: transparent;
  497. overflow: hidden;
  498. color: #000000;
  499. background-color: #fff;
  500. height: 100%;
  501. }
  502. </style>