cailist.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  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. }
  260. .carByIcon{
  261. width: 34rpx;height: 34rpx;
  262. }
  263. .nextCaretxt{
  264. color: #FF0000;
  265. }
  266. .nextCare{
  267. font-size: 20rpx;
  268. line-height: 36rpx;
  269. display: flex;
  270. padding-left: 6rpx;
  271. }
  272. .box {
  273. min-height: 100vh;
  274. background: #F4F5F7;
  275. padding-bottom: 120rpx;
  276. }
  277. .nodataImg {
  278. width: 400rpx;
  279. padding-top: 100rpx;
  280. }
  281. .noTxt {
  282. font-size: 36rpx;
  283. color: #999999;
  284. padding-top: 50rpx;
  285. }
  286. .nodataBox {
  287. text-align: center;
  288. }
  289. .bottomView {
  290. background-color: #FFFFFF;
  291. width: 100%;
  292. height: 120rpx;
  293. position: fixed;
  294. bottom: 0rpx;
  295. padding-bottom: constant(safe-area-inset-bottom);
  296. padding-bottom: env(safe-area-inset-bottom);
  297. }
  298. .saveCar {
  299. background: #D53533;
  300. margin: 23rpx 30rpx;
  301. height: 74rpx;
  302. border-radius: 37rpx;
  303. color: #FFFFFF;
  304. font-size: 30rpx;
  305. font-weight: bold;
  306. align-items: center;
  307. display: flex;
  308. justify-content: center;
  309. }
  310. .carlistBox {
  311. padding-bottom: 120rpx;
  312. }
  313. .carlistBox {
  314. padding: 24rpx;
  315. padding-bottom: 120rpx;
  316. }
  317. .brandLogo {
  318. width: 63rpx;
  319. height: 63rpx;
  320. }
  321. .line {
  322. background: #FFFFFF;
  323. padding: 20rpx 20rpx;
  324. border-radius: 10rpx;
  325. margin-bottom: 20rpx;
  326. position: relative;
  327. }
  328. .lineCont {
  329. display: flex;
  330. }
  331. .carName {
  332. color: #3C3C3C;
  333. font-size: 30rpx;
  334. display: flex;
  335. }
  336. .plateNumber {
  337. border-radius: 4px;
  338. border: 1px solid #F19D01;
  339. height: 32rpx;
  340. line-height: 32rpx;
  341. padding: 0 10rpx;
  342. color: #F19D01;
  343. font-size: 22rpx;
  344. margin-left: 20rpx;
  345. margin-top: 5rpx;
  346. }
  347. .carMS {
  348. color: #666666;
  349. font-size: 26rpx;
  350. padding-top: 5px;
  351. }
  352. .lineBottom {
  353. display: flex;
  354. justify-content: flex-end;
  355. padding-top: 30rpx;
  356. }
  357. .lineDel {
  358. /* width: 94rpx; */
  359. height: 50rpx;
  360. border-radius: 25rpx;
  361. border: 1px solid #DDDDDD;
  362. text-align: center;
  363. line-height: 50rpx;
  364. font-size: 26rpx;
  365. color: #3C3C3C;
  366. margin-left: 29rpx;
  367. padding: 0 20rpx;
  368. }
  369. .Default {
  370. width: 148rpx;
  371. height: 50rpx;
  372. border-radius: 25rpx;
  373. border: 1px solid #FF4F00;
  374. line-height: 50rpx;
  375. text-align: center;
  376. color: #FF4F00;
  377. font-size: 26rpx;
  378. }
  379. .DefaultYES {
  380. width: 148rpx;
  381. height: 50rpx;
  382. border-radius: 25rpx;
  383. border: 1px solid #DDDDDD;
  384. line-height: 50rpx;
  385. text-align: center;
  386. color: #999999;
  387. font-size: 26rpx;
  388. }
  389. .DefaultIcon {
  390. position: absolute;
  391. top: 0;
  392. right: 0;
  393. width: 109rpx;
  394. height: 40rpx;
  395. background: linear-gradient(131deg, #FFA72C 0%, #FF450F 100%);
  396. border-radius: 0px 10rpx 0px 10rpx;
  397. text-align: center;
  398. line-height: 40rpx;
  399. color: #FFFFFF;
  400. font-size: 22rpx;
  401. }
  402. .DefaultIcon2{
  403. position: absolute;
  404. top: 0;
  405. left: 0;
  406. width: 74rpx;
  407. height: 40rpx;
  408. /* background: linear-gradient(131deg, #FFA72C 0%, #FF450F 100%); */
  409. border-radius: 10px 0rpx 10px 0rpx;
  410. text-align: center;
  411. line-height: 40rpx;
  412. color: #222222;
  413. font-size: 22rpx;
  414. background: #FCD903;
  415. }
  416. .authorizBox{
  417. width: 100vw;
  418. height: 100vh;
  419. background: rgba(0, 0, 0, 0.5);
  420. position: fixed;
  421. top: 0;
  422. left: 0;
  423. }
  424. .authorizCont{
  425. margin-top: 30vh;
  426. width: 564rpx;
  427. height: 408rpx;
  428. background: #FFFFFF;
  429. border-radius: 24rpx;
  430. margin-left: 93rpx;
  431. position: relative;
  432. }
  433. .authorizCloseImg{
  434. width: 62rpx;
  435. height: 62rpx;
  436. }
  437. .sqLogoBox{
  438. width: 180rpx;
  439. height: 180rpx;
  440. background: #FFFFFF;
  441. border-radius: 90rpx;
  442. text-align: center;
  443. position: absolute;
  444. top: -50rpx;
  445. left: 192rpx;
  446. }
  447. .authorizName{
  448. color: #333333;
  449. line-height: 42rpx;
  450. font-size: 30rpx;
  451. text-align: center;
  452. padding-top: 58rpx;
  453. }
  454. .authorizMs{
  455. color: #999999;
  456. line-height: 36rpx;
  457. font-size: 26rpx;
  458. width: 452rpx;
  459. padding-top: 24rpx;
  460. text-align: center;
  461. margin-left: 56rpx;
  462. }
  463. .authorizContbutton{
  464. width: 422rpx;
  465. height: 88rpx;
  466. background: #D53533;
  467. border-radius: 44rpx;
  468. line-height: 88rpx;
  469. text-align: center;
  470. font-size:30rpx;
  471. color: #FFFFFF;
  472. margin-top: 62rpx;
  473. margin-left:71rpx;
  474. }
  475. .shopBoxpt{
  476. margin-top: 20rpx;
  477. }
  478. button::after{
  479. border: none;
  480. }
  481. button{
  482. position: relative;
  483. display: block;
  484. margin-left: 0;
  485. margin-right: 0;
  486. padding-left: 0px;
  487. padding-right: 0px;
  488. box-sizing: border-box;
  489. // font-size: 18px;
  490. text-align: center;
  491. text-decoration: none;
  492. // line-height: 1;
  493. line-height: 1.35;
  494. // border-radius: 5px;
  495. -webkit-tap-highlight-color: transparent;
  496. overflow: hidden;
  497. color: #000000;
  498. background-color: #fff;
  499. height: 100%;
  500. }
  501. </style>