index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703
  1. <template>
  2. <view class="content">
  3. <view class="topBox"></view>
  4. <view class="yuanhu"></view>
  5. <view class="shoptopbox2" v-if="!carInfo">
  6. <view class="carinfoBox2">
  7. <view class="carinfoBoxNocar" @click="addCar">
  8. <img src="../../static/timg/addcar.png" alt="" class="carinfonocarIcon">
  9. <view class="carinfoBoxNocarRight">
  10. <view class="carinfoBoxNocarRightTitle">添加我的爱车</view>
  11. <view class="carinfoBoxNocarRightMS">按照车型推荐合适的商品</view>
  12. </view>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="shoptopbox" v-if="carInfo">
  17. <view class="carinfoBox" >
  18. <view class="carinfoBoxTop">
  19. <img :src="carInfo.brandLogo" alt="" class="carLogo" v-if="carInfo.brandLogo">
  20. <img src="../../static/timg/nocar.png" alt="" class="carLogo" v-else>
  21. <view class="carinfoBoxTopCont">
  22. <view class="carinfoBoxTopContTop">
  23. <view class="carInfoplateNumber">{{carInfo.plateNumber}}</view>
  24. <view class="carTnfomilage">{{carInfo.milage?carInfo.milage:0}}km</view>
  25. </view>
  26. <view class="carInfocarModel" v-if="carInfo.carModel">{{carInfo.carModel}}</view>
  27. <view class="carInfocarModel" v-else>暂无</view>
  28. </view>
  29. <view class="carinfoBoxTopRight" @click="changeCar">
  30. <img src="../../static/timg/icon_change@2x.png" alt="" class="carinfoBoxTopRightIcon">
  31. <view class="huancheBtn">换车</view>
  32. </view>
  33. </view>
  34. <view class="carInfoBottom">
  35. <view class="carInfoBottomLine">
  36. <view class="carInfoBottomLineTitle">下次保养里程</view>
  37. <view class="carInfoBottomLineTxt" v-if="carInfo.nextCareMilage">{{carInfo.nextCareMilage}}</view>
  38. <view class="carInfoBottomLineTxt" v-else>暂无</view>
  39. </view>
  40. <view class="carInfoBottomLine">
  41. <view class="carInfoBottomLineTitle">下次保养日期</view>
  42. <view class="carInfoBottomLineTxt" v-if="carInfo.nextCareDate">{{carInfo.nextCareDate.slice(0,10)}}</view>
  43. <view class="carInfoBottomLineTxt" v-else>暂无</view>
  44. </view>
  45. <view class="carInfoBottomLine">
  46. <view class="carInfoBottomLineTitle">保养手册</view>
  47. <view class="carInfoBottomLineTxt" @click="information">点击查看</view>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. <!-- 服务顾问 -->
  53. <view class="adviser">
  54. <view class="adviserLeft">
  55. <img src="../../static/timg/pic_def_ava@2x.png" alt="" class="advisertx">
  56. <view class="adviserNema">张三</view>
  57. <view class="adviserms">服务顾问</view>
  58. </view>
  59. <img src="../../static/timg/icon_arrow_right.png" alt="" class="adviserJt">
  60. </view>
  61. <!-- 中间轮播模块 -->
  62. <view class="modular">
  63. <swiper class="swiper" circular :autoplay="false" :interval="interval"
  64. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" indicator-active-color="#D53533">
  65. <swiper-item>
  66. <view class="swiper-item">
  67. <view class="itemLine">
  68. <view><img src="../../static/img/icon_allorder.png" alt="" class="itemImg"></view>
  69. <view class="Menusline" @click="goRoter('onlineBooking')">在线预约</view>
  70. </view>
  71. <view class="itemLine">
  72. <view><img src="../../static/img/icon_allorder.png" alt="" class="itemImg"></view>
  73. <view class="Menusline" @click="goRoter('onlineBooking')">在线预约</view>
  74. </view>
  75. <view class="itemLine">
  76. <view><img src="../../static/img/icon_allorder.png" alt="" class="itemImg"></view>
  77. <view class="Menusline" @click="goRoter('onlineBooking')">在线预约</view>
  78. </view>
  79. <view class="itemLine">
  80. <view><img src="../../static/img/icon_allorder.png" alt="" class="itemImg"></view>
  81. <view class="Menusline" @click="goRoter('onlineBooking')">在线预约</view>
  82. </view>
  83. <view class="itemLine">
  84. <view><img src="../../static/img/icon_allorder.png" alt="" class="itemImg"></view>
  85. <view class="Menusline" @click="goRoter('onlineBooking')">在线预约</view>
  86. </view>
  87. </view>
  88. </swiper-item>
  89. <swiper-item>
  90. <view class="swiper-item">
  91. </view>
  92. </swiper-item>
  93. </swiper>
  94. </view>
  95. <view class="advertisement">
  96. <swiper class="swiper2" circular :autoplay="false" :interval="interval"
  97. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" indicator-active-color="#D53533">
  98. <swiper-item>
  99. <view class="swiper-item2">
  100. <image class="swiper-item2Img" src="http://phone.66km.cn:8088/thFiles/C678448A-C874-4B42-9EAE-4F8F21D71D27.jpg" mode=""></image>
  101. </view>
  102. </swiper-item>
  103. <swiper-item>
  104. <view class="swiper-item2">
  105. <image class="swiper-item2Img" src="http://phone.66km.cn:8088/thFiles/C678448A-C874-4B42-9EAE-4F8F21D71D27.jpg" mode=""></image>
  106. </view>
  107. </swiper-item>
  108. </swiper>
  109. </view>
  110. <!-- 热门活动 -->
  111. <view class="Hot">
  112. <view class="hotTop">
  113. <view class="hotLeft">
  114. <view class="hotSx"></view>
  115. <view class="hottitle">热门活动</view>
  116. </view>
  117. <view class="hotRight">
  118. <view class="hotMore">更多</view>
  119. <img src="../../static/timg/icon_arrow_right.png" alt="" class="hotMoreJt">
  120. </view>
  121. </view>
  122. <view class="hotLine">
  123. <view class="hotLineTop">
  124. <image class="hotLineTopImg" src="http://phone.66km.cn:8088/thFiles/C678448A-C874-4B42-9EAE-4F8F21D71D27.jpg" mode=""></image>
  125. <view class="hotlineTimebox">
  126. <view class="hotlinestate1">进行中</view>
  127. <view class="hotTime">2022.01.21-2022.02.14</view>
  128. </view>
  129. </view>
  130. <view class="hotName">博世 7月促【CX-200715003】</view>
  131. </view>
  132. <view class="hotLine">
  133. <view class="hotLineTop">
  134. <image class="hotLineTopImg" src="http://phone.66km.cn:8088/thFiles/C678448A-C874-4B42-9EAE-4F8F21D71D27.jpg" mode=""></image>
  135. <view class="hotlineTimebox">
  136. <view class="hotlinestate2">未开始</view>
  137. <view class="hotTime">2022.01.21-2022.02.14</view>
  138. </view>
  139. </view>
  140. <view class="hotName">博世 7月促【CX-200715003】</view>
  141. </view>
  142. </view>
  143. <!-- 热门商品 -->
  144. <view class="Hot">
  145. <view class="hotTop">
  146. <view class="hotLeft">
  147. <view class="hotSx"></view>
  148. <view class="hottitle">热门商品</view>
  149. </view>
  150. <view class="hotRight">
  151. <view class="hotMore">更多</view>
  152. <img src="../../static/timg/icon_arrow_right.png" alt="" class="hotMoreJt">
  153. </view>
  154. </view>
  155. <view class="hotGoodsLine" v-for="(item,index) in 5">
  156. <view>
  157. <image src="../../static/timg/nocar.png" mode="" class="hotGoodsLineImg"></image>
  158. </view>
  159. <view class="hotGoodsLineRIght">
  160. <view class="goodsName">德国马牌 Continental 全新升级6代 TechContct德国马牌 Continental 全新升级6代 TechContct</view>
  161. <view class="Sold">已售 999</view>
  162. <view class="goodsPrice">
  163. <view class="goodsPrice1">店庆价</view>
  164. <view class="goodsPrice2">¥</view>
  165. <view class="goodsPrice3">999</view>
  166. <view class="goodsPrice3">¥893</view>
  167. </view>
  168. </view>
  169. </view>
  170. </view>
  171. <view style="height: 60rpx;"></view>
  172. <!-- <view @getphonenumber="decryptPhoneNumber" >shopId:{{shopId}}</view>
  173. <button type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">获取手机号</button> -->
  174. </view>
  175. </template>
  176. <script>
  177. export default {
  178. data() {
  179. return {
  180. shopId: '',
  181. url:'',
  182. wxOpenData:'',
  183. code:'',
  184. carInfo:{
  185. }
  186. }
  187. },
  188. onLoad() {
  189. var that=this;
  190. this.$common.getExtStoreId()
  191. var ext=this.$common.getExtStoreId();
  192. console.log(ext)
  193. this.shopId=ext.shopId;
  194. this.url=ext.url;
  195. // uni.setStorage({
  196. // key: 'extdata',
  197. // data: {
  198. // shopId:'E37BB296-5A08-4534-859D-B351BA611AF9',
  199. // },
  200. // success: function () {
  201. // that.uniLogin()
  202. // }
  203. // });
  204. this.userInfo = uni.getStorageSync("userInfo");
  205. if(this.userInfo){
  206. this.getCarList()
  207. }else{
  208. this.uniLogin()
  209. }
  210. },
  211. methods: {
  212. information(){
  213. },
  214. changeCar(){
  215. },
  216. goRoter(url){
  217. uni.navigateTo({
  218. url:url
  219. })
  220. },
  221. decryptPhoneNumber: function(e) {
  222. console.log(e);
  223. this.code=e.detail.code
  224. this.wxPhoneLogin()
  225. },
  226. wxgologin(){
  227. var that=this;
  228. uni.getUserProfile({
  229. lang:'zh_CN',
  230. desc:'登录',
  231. success:(res)=>{
  232. console.log(res);
  233. that.wxdata=res;
  234. uni.setStorage({
  235. key: 'wxdata',
  236. data: res,
  237. success: function () {
  238. that.uniLogin()
  239. }
  240. });
  241. },
  242. fail:(res)=>{
  243. console.log(res)
  244. }
  245. });
  246. },
  247. uniLogin(){
  248. var that=this;
  249. uni.login({
  250. provider: 'weixin',
  251. success: function (loginRes) {
  252. console.log(loginRes);
  253. that.getWxOpenID(loginRes)
  254. }
  255. });
  256. },
  257. getWxOpenID(e){
  258. var that=this;
  259. // this.code=e.code;
  260. this.$http('miniApp2/sys/getWxOpenID', {
  261. code:e.code,
  262. shopId:'E37BB296-5A08-4534-859D-B351BA611AF9'
  263. },'GET').then(res => {
  264. this.wxOpenData=res.data;
  265. //that.wxPhoneLogin()
  266. uni.setStorage({
  267. key: 'wxOpenData',
  268. data: that.wxOpenData,
  269. success: function () {
  270. // that.uniLogin()
  271. }
  272. });
  273. if(this.wxOpenData.loginInfo){
  274. uni.setStorage({
  275. key: 'userInfo',
  276. data: that.wxOpenData.loginInfo.openUser,
  277. success: function () {
  278. // that.uniLogin()
  279. }
  280. });
  281. }
  282. })
  283. },
  284. wxPhoneLogin(){
  285. var that=this;
  286. this.$http('miniApp2/sys/wxPhoneLogin', {
  287. appId:'wx33053a645546ec31',
  288. shopId:'E37BB296-5A08-4534-859D-B351BA611AF9',
  289. code:this.code,
  290. openId:this.wxOpenData.openid
  291. },'POST').then(res => {
  292. var data = res.data;
  293. if(data.loginInfo){
  294. uni.setStorage({
  295. key: 'userInfo',
  296. data: data.loginInfo.openUser,
  297. success: function () {
  298. that.getCarList()
  299. }
  300. });
  301. }
  302. })
  303. },
  304. getCarList(){
  305. this.$http('opencarOwnerHome/queryCarInfoList', {
  306. },'GET').then(res => {
  307. this.carInfo=res.data[0]
  308. })
  309. }
  310. }
  311. }
  312. </script>
  313. <style scoped>
  314. .content{
  315. min-height: 100vh;
  316. background: #F4F5F7;
  317. }
  318. .topBox{
  319. width: 750rpx;
  320. height: 200rpx;
  321. background: #D53533;
  322. }
  323. .yuanhu{
  324. width: 750rpx;
  325. height: 50rpx;
  326. background: #D53533;
  327. border-radius: 0 0 100% 100%;
  328. }
  329. .carinfoBox{
  330. width: 702rpx;
  331. height: 250rpx;
  332. background: #FFFFFF;
  333. border-radius: 10rpx;
  334. margin-left: 24rpx;
  335. overflow: hidden;
  336. }
  337. .carinfoBox2{
  338. width: 702rpx;
  339. height: 180rpx;
  340. background: #FFFFFF;
  341. border-radius: 10rpx;
  342. margin-left: 24rpx;
  343. overflow: hidden;
  344. }
  345. .carinfoBox .carLogo{
  346. width: 72rpx;height: 72rpx;
  347. }
  348. .carinfoBoxTop{
  349. display: flex;
  350. justify-content: space-between;
  351. padding-top: 29rpx;
  352. padding-left: 24rpx;
  353. padding-right: 20rpx;
  354. padding-bottom: 24rpx;
  355. border: 1px solid #EEEEEE;
  356. }
  357. .carinfoBoxTopCont{
  358. width: 454rpx;
  359. }
  360. .carinfoBoxTopContTop{
  361. display: flex;
  362. }
  363. .carInfoplateNumber{
  364. font-weight: 500;
  365. color: #3C3C3C;
  366. font-size: 30rpx;
  367. line-height: 42rpx;
  368. padding-right: 16rpx;
  369. }
  370. .carTnfomilage{
  371. color: #F19D01;
  372. font-size: 22rpx;
  373. padding: 0rpx 10rpx;
  374. border-radius: 4rpx;
  375. border: 1px solid #F19D01;
  376. height: 32rpx;
  377. line-height: 34rpx;
  378. margin-top: 2rpx;
  379. margin-left: 2rpx;
  380. }
  381. .carInfocarModel{
  382. width: 454rpx;
  383. color: #666666;
  384. font-size: 26rpx;
  385. white-space: nowrap;
  386. overflow: hidden;
  387. text-overflow: ellipsis;
  388. }
  389. .carinfoBoxTopRight{
  390. display: flex;padding-top: 25rpx;
  391. }
  392. .carinfoBoxTopRightIcon{
  393. width: 29rpx;
  394. height: 31rpx;
  395. }
  396. .huancheBtn{
  397. color: #666666; font-size: 26rpx;line-height: 31rpx;
  398. padding-left: 10rpx;
  399. }
  400. .carInfoBottom{
  401. display: flex;
  402. justify-content: space-around;
  403. }
  404. .carInfoBottomLineTitle{
  405. color: #999999;font-size: 24rpx;
  406. text-align: center;
  407. padding-top: 24rpx;
  408. }
  409. .carInfoBottomLineTxt{
  410. color: #3C3C3C;
  411. font-size: 26rpx;
  412. padding-top: 5rpx;
  413. text-align: center;
  414. }
  415. .carinfonocarIcon{
  416. width: 72rpx;
  417. height: 72rpx;
  418. }
  419. .carinfoBoxNocar{
  420. display: flex;
  421. padding-top: 50rpx;
  422. padding-left: 20rpx;
  423. }
  424. .carinfoBoxNocarRightTitle{
  425. font-weight: 500;
  426. color: #3C3C3C;
  427. font-size: 30rpx;
  428. }
  429. .carinfoBoxNocarRightMS{
  430. color: #666666;
  431. font-size: 26rpx;
  432. }
  433. .carinfoBoxNocarRight{
  434. padding-left: 24rpx;
  435. }
  436. .shoptopbox{
  437. margin-top: -200rpx;
  438. }
  439. .adviser{
  440. width: 662rpx;
  441. margin-left: 24rpx;
  442. background: #FFFFFF;
  443. border-radius: 10px;
  444. display: flex;
  445. justify-content: space-between;
  446. padding: 18rpx 20rpx;
  447. margin-top: 20rpx;
  448. }
  449. .adviserLeft{
  450. display: flex;
  451. }
  452. .advisertx{
  453. width: 62rpx;height: 62rpx;
  454. }
  455. .adviserNema{
  456. color: #333333;font-size: 30rpx;
  457. line-height: 62rpx;padding-left: 24rpx;
  458. }
  459. .adviserms{
  460. width: 118rpx;
  461. height: 36rpx;
  462. border-radius: 4rpx;
  463. border: 1px solid #D53533;
  464. line-height: 36rpx;
  465. text-align: center;
  466. margin-top: 12rpx;
  467. margin-left: 20rpx;
  468. color: #D53533;
  469. font-size: 24rpx;
  470. }
  471. .adviserJt{
  472. width: 12rpx;
  473. height: 20rpx;
  474. margin-top: 16rpx;
  475. }
  476. .modular{
  477. width: 702rpx;
  478. height: 313rpx;
  479. background: #FFFFFF;
  480. border-radius: 10px;
  481. margin-top: 20rpx;
  482. margin-left: 24rpx;
  483. }
  484. .swiper-item{
  485. display: flex;
  486. flex-wrap: wrap;
  487. }
  488. .itemImg{
  489. width: 46rpx;
  490. height: 46rpx;
  491. }
  492. .Menusline{
  493. font-size: 24rpx;
  494. color: #333333;
  495. }
  496. .itemLine{
  497. width: 25%;
  498. text-align: center;
  499. padding-top: 40rpx;
  500. }
  501. .advertisement{
  502. width: 702rpx;
  503. height: 280rpx;
  504. margin-top: 20rpx;
  505. margin-left: 24rpx;
  506. border-radius: 20rpx;
  507. }
  508. .swiper-item2{
  509. width: 702rpx;
  510. height: 280px;
  511. }
  512. .swiper-item2Img{
  513. width: 702rpx;
  514. height: 280rpx;
  515. }
  516. .hotMoreJt{
  517. width: 12rpx;
  518. height: 20rpx;
  519. margin-top: 6rpx;
  520. }
  521. .Hot{
  522. width: 702rpx;
  523. margin-top: 20rpx;
  524. margin-left: 24rpx;
  525. }
  526. .hotTop{
  527. display: flex;
  528. justify-content: space-between;
  529. }
  530. .hotSx{
  531. width: 8rpx;
  532. height: 30rpx;
  533. background: #F03B3B;
  534. border-radius: 5rpx;
  535. }
  536. .hotLeft{
  537. display: flex;
  538. }
  539. .hottitle{
  540. font-weight: 500;
  541. color: #333333;
  542. font-size: 30rpx;
  543. line-height: 30rpx;
  544. margin-left: 16rpx;
  545. }
  546. .hotRight{
  547. display: flex;
  548. }
  549. .hotMore{
  550. line-height: 30rpx;color: #666666;font-size: 24rpx;
  551. margin-right: 16rpx;
  552. }
  553. .hotLineTopImg{
  554. width: 702rpx;
  555. height: 280rpx;
  556. }
  557. .hotLineTop{
  558. position: relative;
  559. height: 280rpx;
  560. }
  561. .hotLine{
  562. margin-top: 20rpx;
  563. border-radius: 10rpx;
  564. background: #FFFFFF;
  565. overflow: hidden;
  566. }
  567. .hotlinestate1{
  568. width: 102rpx;
  569. height: 44rpx;
  570. background:#FBBF00 ;
  571. line-height: 44rpx;
  572. font-weight: 500;
  573. color: #333333;
  574. font-size: 24rpx;
  575. text-align: center;
  576. }
  577. .hotlinestate2{
  578. width: 102rpx;
  579. height: 44rpx;
  580. background:#F03B3B ;
  581. line-height: 44rpx;
  582. font-weight: 500;
  583. color: #FFFFFF;
  584. font-size: 24rpx;
  585. text-align: center;
  586. }
  587. .hotlineTimebox{
  588. position: absolute;
  589. left: 0;
  590. bottom: 0;
  591. background: rgba(0, 0, 0, 0.5);
  592. display: flex;
  593. }
  594. .hotTime{
  595. font-weight: 400;
  596. color: #FFFFFF;
  597. font-size: 24rpx;
  598. line-height: 44rpx;
  599. padding: 0 20rpx;
  600. }
  601. .hotName{
  602. padding: 24rpx 20rpx;
  603. color: #333333;
  604. line-height: 40rpx;
  605. font-size: 28rpx;
  606. }
  607. .hotGoodsLine{
  608. margin-top: 20rpx;
  609. padding: 20rpx;
  610. background: #FFFFFF;
  611. border-radius: 16rpx;
  612. display: flex;
  613. }
  614. .hotGoodsLineImg{
  615. width: 208rpx;
  616. height: 194rpx;
  617. border-radius: 16rpx;
  618. border: 1px solid #EEEEEE;
  619. }
  620. .goodsName{
  621. font-size: 28rpx;
  622. font-family: PingFangSC-Regular, PingFang SC;
  623. font-weight: 400;
  624. color: #333333;
  625. line-height: 40rpx;
  626. text-overflow: -o-ellipsis-lastline;
  627. overflow: hidden;
  628. text-overflow: ellipsis;
  629. display: -webkit-box;
  630. -webkit-line-clamp: 2;
  631. line-clamp: 2;
  632. -webkit-box-orient: vertical;
  633. }
  634. .hotGoodsLineRIght{
  635. padding-left: 24rpx;
  636. }
  637. .goodsPrice{
  638. display: flex;
  639. padding-top: 10rpx;
  640. }
  641. .goodsPrice1{
  642. font-size: 24rpx;
  643. font-weight: 400;
  644. color: #F03B3B;
  645. }
  646. .goodsPrice2{
  647. font-size: 22rpx;
  648. font-weight: 400;
  649. color: #F03B3B;
  650. }
  651. .goodsPrice3{
  652. font-size: 32rpx;
  653. font-weight: 400;
  654. color: #F03B3B;
  655. }
  656. .goodsPrice3{
  657. font-size: 24rpx;
  658. font-weight: 400;
  659. color: #999999;
  660. }
  661. .Sold{
  662. font-weight: 400;
  663. color: #999999;
  664. font-size: 24rpx;
  665. padding-top: 8rpx;
  666. }
  667. </style>