index.vue 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224
  1. <template>
  2. <view class="content">
  3. <view class="indexTop" :style="{background:'#'+themeColor}" v-if="getwxLoing">
  4. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  5. <view class="indexnav">{{wxOpenData.unionName}}</view>
  6. </view>
  7. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  8. <view style="height: 43px;"></view>
  9. <view class="topBox" :style="{background:'#'+themeColor}" v-if="getwxLoing"></view>
  10. <view class="yuanhu" :style="{background:'#'+themeColor}" v-if="getwxLoing"></view>
  11. <view class="shoptopbox2" v-if="!carInfo">
  12. <view class="carinfoBox2">
  13. <view class="carinfoBoxNocar" @click="addCar">
  14. <img src="../../static/timg/addcar.png" alt="" class="carinfonocarIcon">
  15. <view class="carinfoBoxNocarRight">
  16. <view class="carinfoBoxNocarRightTitle">添加我的爱车</view>
  17. <view class="carinfoBoxNocarRightMS">按照车型推荐合适的商品</view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="shoptopbox" v-if="carInfo">
  23. <view class="carinfoBox" >
  24. <view class="carinfoBoxTop">
  25. <img :src="carInfo.brandLogo" alt="" class="carLogo" v-if="carInfo.brandLogo">
  26. <img src="../../static/timg/nocar.png" alt="" class="carLogo" v-else>
  27. <view class="carinfoBoxTopCont">
  28. <view class="carinfoBoxTopContTop">
  29. <view class="carInfoplateNumber">{{carInfo.plateNumber}}</view>
  30. <view class="carTnfomilage" v-if="carInfo.milage">{{carInfo.milage}}km</view>
  31. </view>
  32. <view class="carInfocarModel" v-if="carInfo.carModel">{{carInfo.carModel}}</view>
  33. <view class="carInfocarModel" v-else>暂无</view>
  34. </view>
  35. <view class="carinfoBoxTopRight" @click="changeCar">
  36. <img src="../../static/timg/icon_change@2x.png" alt="" class="carinfoBoxTopRightIcon">
  37. <view class="huancheBtn">换车</view>
  38. </view>
  39. </view>
  40. <!-- <view class="carInfoBottom">
  41. <view class="carInfoBottomLine">
  42. <view class="carInfoBottomLineTitle">下次保养里程</view>
  43. <view class="carInfoBottomLineTxt" v-if="carInfo.nextCareMilage">{{carInfo.nextCareMilage}}</view>
  44. <view class="carInfoBottomLineTxt" v-else>暂无</view>
  45. </view>
  46. <view class="carInfoBottomLine">
  47. <view class="carInfoBottomLineTitle">下次保养日期</view>
  48. <view class="carInfoBottomLineTxt" v-if="carInfo.nextCareDate">{{carInfo.nextCareDate.slice(0,10)}}</view>
  49. <view class="carInfoBottomLineTxt" v-else>暂无</view>
  50. </view>
  51. <view class="carInfoBottomLine">
  52. <view class="carInfoBottomLineTitle">保养手册</view>
  53. <view class="carInfoBottomLineTxt" @click="information">点击查看</view>
  54. </view>
  55. </view> -->
  56. <view class="bxBox">
  57. <view class="bxline bxline1">
  58. <img src="../../static/timg/car1.png" alt="" class="bxlineIcon">
  59. <view class="bxlineTitle">保险</view>
  60. <view class="bxlineMs1" v-if="carInfo.insuranceExpireDate">{{InsuranceExpireDate}}天到期</view>
  61. <view class="bxlineMs2" v-else>--</view>
  62. </view>
  63. <view class="bxline bxline2">
  64. <img src="../../static/timg/car2.png" alt="" class="bxlineIcon" >
  65. <view class="bxlineTitle">下次保养</view>
  66. <view class="bxlineMs1" v-if="carInfo.nextCareDate||carInfo.nextCareMilage">
  67. <span v-if="NextCareDate||NextCareDate===0">{{NextCareDate}}天后</span>
  68. <span v-if="NextCareDate===0&&carInfo.nextCareMilage">或</span>
  69. <span v-if="carInfo.nextCareMilage&&NextCareDate">或</span>
  70. <span v-if="carInfo.nextCareMilage">{{carInfo.nextCareMilage}}km</span>
  71. </view>
  72. <view class="bxlineMs2" v-else>--</view>
  73. </view>
  74. <view class="bxline bxline1">
  75. <img src="../../static/timg/car3.png" alt="" class="bxlineIcon" >
  76. <view class="bxlineTitle">年审</view>
  77. <view class="bxlineMs1" v-if="carInfo.nextAuditDate">{{NextAuditDate}}天到期</view>
  78. <view class="bxlineMs2" v-else>--</view>
  79. </view>
  80. <view class="bxline bxline2">
  81. <img src="../../static/timg/car4.png" alt="" class="bxlineIcon" >
  82. <view class="bxlineTitle">保养手册</view>
  83. <view class="bxlineMs2" @click="information">点击查看</view>
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. <!-- 服务顾问 -->
  89. <view class="adviser" v-if="managerInfo" @click="goMUsers()">
  90. <view class="adviserLeft">
  91. <img v-if="managerInfo.avatar" :src="managerInfo.avatar" alt="" class="advisertx">
  92. <img v-else src="../../static/timg/pic_def_ava@2x.png" alt="" class="advisertx">
  93. <view class="adviserNema">{{managerInfo.name}}</view>
  94. <view class="adviserms" :style="{border:'1px solid #'+themeColor,color:'#'+themeColor}">服务顾问</view>
  95. </view>
  96. <img src="../../static/timg/icon_arrow_right.png" alt="" class="adviserJt">
  97. </view>
  98. <!-- 中间功能应用模块 -->
  99. <view class="modular" v-if="homeCardList.application.length>0">
  100. <view class="swiper-item">
  101. <view class="itemLine" @click="goRoter(item)" v-for="(item,index) in homeCardList.application">
  102. <view><img :src="item.icon" alt="" class="itemImg"></view>
  103. <view class="Menusline">{{item.name}}</view>
  104. </view>
  105. </view>
  106. </view>
  107. <view class="advertisement" v-if="homeCardList.ad1.length>0">
  108. <swiper class="swiper2" circular :autoplay="true" :interval="interval"
  109. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" :indicator-active-color="'#'+themeColor">
  110. <swiper-item v-for="(item,index) in homeCardList.ad1">
  111. <view class="swiper-item2" @click="goRoter(item)">
  112. <image class="swiper-item2Img" :src="item.icon" mode=""></image>
  113. </view>
  114. </swiper-item>
  115. </swiper>
  116. </view>
  117. <view class="advertisement" v-if="homeCardList.ad2.length>0">
  118. <swiper class="swiper2" circular :autoplay="true" :interval="interval"
  119. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" :indicator-active-color="'#'+themeColor">
  120. <swiper-item v-for="(item,index) in homeCardList.ad2">
  121. <view class="swiper-item2" @click="goRoter(item)">
  122. <image class="swiper-item2Img" :src="item.icon" mode=""></image>
  123. </view>
  124. </swiper-item>
  125. </swiper>
  126. </view>
  127. <view class="advertisement" v-if="homeCardList.ad3.length>0">
  128. <swiper class="swiper2" circular :autoplay="true" :interval="interval"
  129. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" :indicator-active-color="'#'+themeColor">
  130. <swiper-item v-for="(item,index) in homeCardList.ad3">
  131. <view class="swiper-item2" @click="goRoter(item)">
  132. <image class="swiper-item2Img" :src="item.icon" mode=""></image>
  133. </view>
  134. </swiper-item>
  135. </swiper>
  136. </view>
  137. <!-- 热门活动 -->
  138. <view class="Hot">
  139. <view class="hotTop">
  140. <view class="hotLeft">
  141. <view class="hotSx" :style="{background:'#'+themeColor}"></view>
  142. <view class="hottitle">热门活动</view>
  143. </view>
  144. <view class="hotRight" @click="moreJk">
  145. <view class="hotMore">更多</view>
  146. <img src="../../static/timg/icon_arrow_right.png" alt="" class="hotMoreJt">
  147. </view>
  148. </view>
  149. <view class="hotLine" @click="goJk(item)" v-for="(item,index) in homeCardList.openMActivity.openCollectingList" v-if="index<homeCardList.openMActivity.showCount">
  150. <view class="hotLineTop">
  151. <image class="hotLineTopImg" :src="item.img" mode=""></image>
  152. <view class="hotlineTimebox">
  153. <!-- <view class="hotlinestate1" v-if="item.state==2">进行中</view>
  154. <view class="hotlinestate2" v-if="item.state==1">未开始</view> -->
  155. <image class="jkStateImg" v-if="item.state==2" src="../../static/img/bg_huangse.png" mode="" ></image>
  156. <image class="jkStateImg" v-if="item.state==1" src="../../static/img/bg_hongse.png" mode="" ></image>
  157. <view class="hotTime">{{item.startTime.slice(0,10)}}-{{item.endTime.slice(0,10)}}</view>
  158. </view>
  159. </view>
  160. <view class="hotName">{{item.activityName}}</view>
  161. </view>
  162. </view>
  163. <!-- 热门车型 -->
  164. <view class="" v-if="homeCardList">
  165. <view class="Hot" v-if="homeCardList.openMGoods.showType==1">
  166. <view class="hotTop">
  167. <view class="hotLeft">
  168. <view class="hotSx" :style="{background:'#'+themeColor}"></view>
  169. <view class="hottitle">热门车型</view>
  170. </view>
  171. <view class="hotRight" @click="goShop">
  172. <view class="hotMore">更多</view>
  173. <img src="../../static/timg/icon_arrow_right.png" alt="" class="hotMoreJt">
  174. </view>
  175. </view>
  176. <view class="hotGoodsLine" v-for="(item,index) in homeCardList.openMGoods.goodsList" @click="goGoods(item)" v-if="index<homeCardList.openMGoods.showCount">
  177. <view>
  178. <image :src="item.url" mode="" class="hotGoodsLineImg"></image>
  179. </view>
  180. <view class="hotGoodsLineRIght">
  181. <view class="goodsName">{{item.name}}</view>
  182. <view class="Sold">
  183. <view v-if="item.showLabel&&item.showLabel.indexOf('3')!=-1">
  184. 已售 {{item.saleQty>0?item.saleQty:0}}
  185. </view>
  186. </view>
  187. <view class="goodsPrice">
  188. <view class="goodsPrice1" :style="{color:'#'+themeColor}">{{item.saleLabel}}</view>
  189. <view class="goodsPrice2" :style="{color:'#'+themeColor}">¥</view>
  190. <view class="goodsPrice3" :style="{color:'#'+themeColor}">{{item.salePrice}}
  191. <span v-if="item.categoryIds=='7B97D114-C419-42B2-9C1E-0B4CA284CDA0'">万</span>
  192. </view>
  193. <view class="goodsPrice4" v-if="item.showLabel&&item.scribingPrice&&item.showLabel.indexOf('1')!=-1">¥{{item.scribingPrice}}</view>
  194. </view>
  195. </view>
  196. </view>
  197. </view>
  198. </view>
  199. <view style="height: 60rpx;"></view>
  200. <!-- 手机号授权 -->
  201. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  202. <view class="authorizCont" @click.stop="">
  203. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  204. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  205. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  206. </view>
  207. <view style="text-align: center;padding-top: 56rpx;">
  208. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  209. </view>
  210. </view>
  211. <!-- <view @getphonenumber="decryptPhoneNumber" >shopId:{{shopId}}</view>
  212. -->
  213. </view>
  214. </template>
  215. <script>
  216. export default {
  217. data() {
  218. return {
  219. shopId: '',
  220. url:'',
  221. wxOpenData:'',
  222. code:'',
  223. carInfo:'',
  224. homeCardList:'',
  225. authorizShow:false,
  226. miniAppName:'',
  227. iStatusBarHeight:'',
  228. managerInfo:'',
  229. unionId:'',
  230. ext:'',
  231. duration:500,
  232. interval:3000,
  233. InsuranceExpireDate:'',
  234. NextCareDate:'',
  235. NextAuditDate:'',
  236. themeColor:'',
  237. getwxLoing:false,
  238. }
  239. },
  240. onLoad() {
  241. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  242. var that=this;
  243. //this.$common.getExtStoreId()
  244. var ext=this.$common.getExtStoreId();
  245. this.ext=ext
  246. console.log(ext)
  247. //console.log( String(Date.now()))
  248. this.shopId=ext.shopId;
  249. this.url=ext.url;
  250. this.unionId=ext.unionId
  251. // uni.setStorage({
  252. // key: 'extdata',
  253. // data: {
  254. // shopId:'E37BB296-5A08-4534-859D-B351BA611AF9',
  255. // },
  256. // success: function () {
  257. // that.uniLogin()
  258. // }
  259. // });
  260. //this.userInfo = uni.getStorageSync("userInfo");
  261. this.userInfo=this.$store.state.userInfo
  262. if(this.userInfo){
  263. //this.wxOpenData = uni.getStorageSync("wxOpenData");
  264. this.getCarList();
  265. this.queryHomeCardList()
  266. this.queryManagerInfo()
  267. }else{
  268. this.uniLogin()
  269. }
  270. },
  271. onShow() {
  272. var indexaddcar = uni.getStorageSync("indexaddcar")
  273. if(indexaddcar==1){
  274. uni.removeStorageSync('indexaddcar');
  275. this.getCarList();
  276. }else{
  277. this.carInfo=this.$store.state.carInfo;
  278. this.jsTime()
  279. }
  280. },
  281. methods: {
  282. addCar(){
  283. if(!this.userInfo){
  284. this.authorizShow=true;
  285. }else{
  286. uni.navigateTo({
  287. url:'../user/addCar/addCar?type=1'
  288. })
  289. }
  290. },
  291. goShop(){
  292. uni.switchTab({
  293. url:'../shop/shop'
  294. })
  295. },
  296. moreJk(){
  297. uni.switchTab({
  298. url:'../activity/activity'
  299. })
  300. },
  301. information(){
  302. console.log('车辆信息--',this.carInfo);
  303. uni.navigateTo({
  304. url:'handbook?mileage='+this.carInfo.milage+'&liyangId='+this.carInfo.nLevelID
  305. })
  306. },
  307. changeCar(){
  308. uni.navigateTo({
  309. url:'../user/addCar/cailist'
  310. })
  311. },
  312. goMUsers(){
  313. if(!this.userInfo){
  314. this.authorizShow=true;
  315. }else{
  316. uni.navigateTo({
  317. url:'../index/personalCard?adInfo='+JSON.stringify(this.managerInfo)
  318. })
  319. }
  320. },
  321. goGoods(item){
  322. if(!this.userInfo){
  323. this.authorizShow=true;
  324. }else{
  325. uni.navigateTo({
  326. url:'../shop/goodsDetail?id='+item.id
  327. })
  328. }
  329. },
  330. goJk(item){
  331. if(!this.userInfo){
  332. this.authorizShow=true;
  333. }else{
  334. uni.navigateTo({
  335. url:'../activity/jkDetail?id='+item.id
  336. })
  337. }
  338. },
  339. goRoter(item){
  340. console.log(item)
  341. if(!this.userInfo){
  342. this.authorizShow=true;
  343. }else{
  344. if(item.bizType==0){
  345. if(item.name=='新车'){ //
  346. uni.navigateTo({
  347. url:'newCar'
  348. })
  349. }else if(item.name=='二手车'){
  350. uni.navigateTo({
  351. url:'usedCar'
  352. })
  353. }else if(item.name=='爱车估价'){
  354. uni.navigateTo({
  355. url:'evaluation'
  356. })
  357. }
  358. else{
  359. uni.showToast({
  360. title: '敬请期待',
  361. icon:'none',
  362. duration: 3000
  363. });
  364. }
  365. }else if(item.bizType==1){ //紧急救援
  366. uni.navigateTo({
  367. url:'rescue'
  368. })
  369. }else if(item.bizType==2){ //钣金喷漆
  370. uni.navigateTo({
  371. url:'paint'
  372. })
  373. }else if(item.bizType==3){ //保养
  374. uni.navigateTo({
  375. url:'maintain'
  376. })
  377. }else if(item.bizType==4){ //在线预约
  378. uni.navigateTo({
  379. url:'onlineBooking?naShopId='+item.naShopId
  380. })
  381. }else if(item.bizType==5){ //导航
  382. this.getShopinfo(5,item.reShopId)
  383. }else if(item.bizType==6){ //联系本店
  384. this.getShopinfo(6,item.orShopId)
  385. }else if(item.bizType==7){ //7门店列表
  386. uni.navigateTo({
  387. url:'shopList'
  388. })
  389. }else if(item.bizType==8){ //我的会员卡
  390. uni.navigateTo({
  391. url:'vipCard'
  392. })
  393. }else if(item.bizType==9){ //我的优惠券
  394. uni.navigateTo({
  395. url:'discountCard'
  396. })
  397. }else if(item.bizType==10){ //我的订单
  398. uni.navigateTo({
  399. url:'../user/myOrder/myOrder'
  400. })
  401. }else if(item.bizType==11){ //我的预约
  402. uni.navigateTo({
  403. url:'../user/myBespeak'
  404. })
  405. }else if(item.bizType==12){ //历史消费
  406. uni.navigateTo({
  407. url:'../user/historySpend'
  408. })
  409. }else if(item.bizType==12){ //历史消费
  410. uni.navigateTo({
  411. url:'../user/historySpend'
  412. })
  413. }else if(item.bizType==13){ //车检报告
  414. uni.navigateTo({
  415. url:'../user/checkReport'
  416. })
  417. }else if(item.bizType==14){ //指定商品分类
  418. uni.setStorage({
  419. key: 'shopcategoryID',
  420. data: item.bizId,
  421. success: function () {
  422. getApp().globalData.shopcategoryID=item.bizId;
  423. uni.switchTab({
  424. url:'../shop/shop?shopcategoryID='+ item.bizId
  425. })
  426. }
  427. });
  428. }else if(item.bizType==15){ //商品详情
  429. uni.navigateTo({
  430. url:'../shop/goodsDetail?id=CD2D70DC-706C-4441-9864-33BD19457CAE'
  431. })
  432. }
  433. // uni.navigateTo({
  434. // url:url
  435. // })
  436. }
  437. },
  438. decryptPhoneNumber: function(e) {
  439. console.log(e);
  440. this.code=e.detail.code
  441. this.wxPhoneLogin()
  442. this.authorizShow=false;
  443. },
  444. wxgologin(){
  445. var that=this;
  446. uni.getUserProfile({
  447. lang:'zh_CN',
  448. desc:'登录',
  449. success:(res)=>{
  450. console.log(res);
  451. that.wxdata=res;
  452. uni.setStorage({
  453. key: 'wxdata',
  454. data: res,
  455. success: function () {
  456. that.uniLogin()
  457. }
  458. });
  459. },
  460. fail:(res)=>{
  461. console.log(res)
  462. }
  463. });
  464. },
  465. uniLogin(){
  466. var that=this;
  467. uni.login({
  468. provider: 'weixin',
  469. success: function (loginRes) {
  470. console.log(loginRes);
  471. that.getWxOpenID(loginRes)
  472. }
  473. });
  474. },
  475. getWxOpenID(e){
  476. var that=this;
  477. uni.showLoading({
  478. title: '加载中'
  479. })
  480. this.$http('miniApp2/sys/getWxOpenID', {
  481. code:e.code,
  482. unionId:this.unionId
  483. },'GET').then(res => {
  484. this.wxOpenData=res.data;
  485. this.themeColor=res.data.themeColor
  486. //this.themeColor='FFFFFF'
  487. this.getwxLoing=true;
  488. uni.setNavigationBarTitle({
  489. title:this.wxOpenData.miniAppName
  490. })
  491. that.queryHomeCardList()
  492. //that.wxPhoneLogin()
  493. this.$store.commit('mutationswxOpenData', that.wxOpenData)
  494. uni.setStorage({
  495. key: 'wxOpenData',
  496. data: that.wxOpenData,
  497. success: function () {
  498. // that.uniLogin()
  499. }
  500. });
  501. uni.setStorage({
  502. key: 'themeColor',
  503. data: that.themeColor,
  504. success: function () {
  505. // that.uniLogin()
  506. }
  507. });
  508. if(this.wxOpenData.loginInfo){
  509. this.$store.commit('mutationsuserInfo', that.wxOpenData.loginInfo.openUser)
  510. this.userInfo=that.wxOpenData.loginInfo.openUser
  511. that.queryManagerInfo()
  512. uni.setStorage({
  513. key: 'userInfo',
  514. data: that.wxOpenData.loginInfo.openUser,
  515. success: function () {
  516. that.getCarList()
  517. }
  518. });
  519. }else{
  520. this.authorizShow=true;
  521. }
  522. })
  523. },
  524. wxPhoneLogin(){
  525. var that=this;
  526. this.$http('miniApp2/sys/wxPhoneLogin', {
  527. appId:this.ext.appId,
  528. unionId:this.unionId,
  529. code:this.code,
  530. openId:this.wxOpenData.openid
  531. },'POST').then(res => {
  532. var data = res.data;
  533. if(data.loginInfo){
  534. this.userInfo=data.loginInfo.openUser;
  535. this.$store.commit('mutationsuserInfo', this.userInfo);
  536. this.$store.commit('mutationswxOpenData', data.loginInfo)
  537. uni.setStorage({
  538. key: 'userInfo',
  539. data: data.loginInfo.openUser,
  540. success: function () {
  541. that.getCarList()
  542. that.queryHomeCardList()
  543. that.queryManagerInfo()
  544. }
  545. });
  546. }
  547. })
  548. },
  549. getCarList(){
  550. this.$http('opencarOwnerHome/queryCarInfoList', {
  551. },'GET').then(res => {
  552. if(res.code==401){
  553. this.uniLogin()
  554. }else{
  555. this.carInfo=res.data[0]
  556. this.$store.commit('mutationscarInfo', this.carInfo)
  557. /* this.carInfo.insuranceExpireDate='2022-11-11';
  558. this.carInfo.nextAuditDate='2022-08-13'; */
  559. //this.carInfo.nextCareDate='2022-08-11';
  560. //this.carInfo.nextCareMilage=11
  561. this.jsTime()
  562. }
  563. })
  564. },
  565. jsTime(){
  566. if(this.carInfo.insuranceExpireDate){
  567. if (Number(new Date().getTime()) > (Number(new Date(this.carInfo.insuranceExpireDate.replace(/-/g, '/')).getTime()) || 0)) {
  568. console.log("现在时间大于开始时间")
  569. this.InsuranceExpireDate = 0
  570. } else {
  571. this.clock()
  572. }
  573. }else{
  574. this.InsuranceExpireDate=''
  575. }
  576. if(this.carInfo.nextCareDate){
  577. if (Number(new Date().getTime()) > (Number(new Date(this.carInfo.nextCareDate.replace(/-/g, '/')).getTime()) || 0)) {
  578. this.NextCareDate = 0
  579. } else {
  580. this.clock2()
  581. }
  582. }else{
  583. this.NextCareDate = ''
  584. }
  585. if(this.carInfo.nextAuditDate){
  586. if (Number(new Date().getTime()) > (Number(new Date(this.carInfo.nextAuditDate.replace(/-/g, '/')).getTime()) || 0)) {
  587. this.NextAuditDate = 0
  588. } else {
  589. this.clock3()
  590. }
  591. }else{
  592. this.NextAuditDate=''
  593. }
  594. },
  595. clock () {
  596. let _this = this
  597. let today = new Date() // 当前时间
  598. let h = today.getHours()
  599. let m = today.getMinutes()
  600. let s = today.getSeconds()
  601. let stopTime = new Date(_this.carInfo.insuranceExpireDate.replace(/-/g, '/')) // 结束时间
  602. let stopH = stopTime.getHours()
  603. let stopM = stopTime.getMinutes()
  604. let stopS = stopTime.getSeconds()
  605. let shenyu = stopTime.getTime() - today.getTime() // 倒计时毫秒数
  606. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  607. this.InsuranceExpireDate=shengyuD+1;
  608. // setTimeout(_this.clock, 500)
  609. },
  610. clock2 () {
  611. let _this = this
  612. let today = new Date() // 当前时间
  613. let stopTime = new Date(_this.carInfo.nextCareDate.replace(/-/g, '/')) // 结束时间
  614. let stopH = stopTime.getHours()
  615. let stopM = stopTime.getMinutes()
  616. let stopS = stopTime.getSeconds()
  617. let shenyu = stopTime.getTime() - today.getTime() // 倒计时毫秒数
  618. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  619. this.NextCareDate=shengyuD+1;
  620. // setTimeout(_this.clock, 500)
  621. },
  622. clock3 () {
  623. let _this = this
  624. let today = new Date() // 当前时间
  625. let stopTime = new Date(_this.carInfo.nextAuditDate.replace(/-/g, '/')) // 结束时间
  626. let shenyu = stopTime.getTime() - today.getTime() // 倒计时毫秒数
  627. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  628. this.NextAuditDate=shengyuD+1;
  629. // setTimeout(_this.clock, 500)
  630. },
  631. queryManagerInfo(){
  632. console.log("11")
  633. this.$http('openHome/queryManagerInfo', {
  634. },'GET').then(res => {
  635. this.managerInfo=res.data
  636. })
  637. },
  638. queryHomeCardList(){
  639. //console.log(this.wxOpenData)
  640. this.$http('openHome/queryHomeCardList', {
  641. unionId:this.unionId
  642. },'GET').then(res => {
  643. uni.hideLoading();
  644. this.homeCardList=res.data
  645. })
  646. },
  647. getShopinfo(num,shopId){
  648. var that=this;
  649. uni.showLoading({
  650. title: '加载中'
  651. })
  652. if(!shopId){
  653. shopId=''
  654. }
  655. this.$http('openmy/getShopinfo', {
  656. shopId:shopId
  657. },'GET').then(res => {
  658. uni.hideLoading();
  659. var res=res.data
  660. if(num==5){
  661. uni.openLocation({
  662. latitude:Number(res.lat),
  663. longitude:Number(res.lng),
  664. name: res.shopName,
  665. address: res.address,
  666. success: function() {
  667. console.log('success');
  668. },
  669. fail(err) {
  670. console.log(err)
  671. }
  672. });
  673. }else{
  674. uni.makePhoneCall({
  675. phoneNumber: res.contactorPhone
  676. });
  677. }
  678. })
  679. }
  680. }
  681. }
  682. </script>
  683. <style scoped>
  684. .bxBox{
  685. display: flex;
  686. flex-wrap: wrap;
  687. }
  688. .bxline{
  689. display: flex;
  690. padding-top: 22rpx;
  691. }
  692. .bxline1{
  693. width: 40%;
  694. }
  695. .bxline2{
  696. width: 60%;
  697. }
  698. .bxlineTitle{
  699. color: #333333;
  700. font-size: 26rpx;
  701. line-height: 37rpx;
  702. padding-left: 10rpx;
  703. }
  704. .bxlineMs1{
  705. line-height: 37rpx;
  706. color: #D53533;
  707. font-size: 26rpx;
  708. padding-left: 12rpx;
  709. }
  710. .bxlineMs2{
  711. line-height: 37rpx;
  712. color: #999999;
  713. font-size: 24rpx;
  714. padding-left: 12rpx;
  715. }
  716. .bxlineIcon{
  717. width: 34rpx;
  718. height: 34rpx;
  719. margin-left: 24rpx;
  720. }
  721. .indexTop{
  722. background: #D53533;
  723. width: 750rpx;
  724. position: fixed;
  725. top: 0;
  726. left: 0;
  727. z-index: 11;
  728. }
  729. .indexnav{
  730. height: 44px;
  731. line-height: 44px;
  732. text-align: center;
  733. font-size: 36rpx;
  734. color: #FFFFFF;
  735. }
  736. .authorizBox{
  737. width: 100vw;
  738. height: 100vh;
  739. background: rgba(0, 0, 0, 0.5);
  740. position: fixed;
  741. top: 0;
  742. left: 0;
  743. }
  744. .authorizCont{
  745. margin-top: 30vh;
  746. width: 564rpx;
  747. height: 408rpx;
  748. background: #FFFFFF;
  749. border-radius: 24rpx;
  750. margin-left: 93rpx;
  751. position: relative;
  752. }
  753. .authorizCloseImg{
  754. width: 62rpx;
  755. height: 62rpx;
  756. }
  757. .sqLogoBox{
  758. width: 180rpx;
  759. height: 180rpx;
  760. background: #FFFFFF;
  761. border-radius: 90rpx;
  762. text-align: center;
  763. position: absolute;
  764. top: -50rpx;
  765. left: 192rpx;
  766. }
  767. .authorizName{
  768. color: #333333;
  769. line-height: 42rpx;
  770. font-size: 30rpx;
  771. text-align: center;
  772. padding-top: 58rpx;
  773. }
  774. .authorizMs{
  775. color: #999999;
  776. line-height: 36rpx;
  777. font-size: 26rpx;
  778. width: 452rpx;
  779. padding-top: 24rpx;
  780. text-align: center;
  781. margin-left: 56rpx;
  782. }
  783. .authorizContbutton{
  784. width: 422rpx;
  785. height: 88rpx;
  786. background: #D53533;
  787. border-radius: 44rpx;
  788. line-height: 88rpx;
  789. text-align: center;
  790. font-size:30rpx;
  791. color: #FFFFFF;
  792. margin-top: 62rpx;
  793. margin-left:71rpx;
  794. }
  795. .content{
  796. min-height: 100vh;
  797. background: #F4F5F7;
  798. }
  799. .topBox{
  800. width: 750rpx;
  801. height: 150rpx;
  802. background: #D53533;
  803. }
  804. .yuanhu{
  805. width: 750rpx;
  806. height: 50rpx;
  807. background: #D53533;
  808. border-radius: 0 0 100% 100%;
  809. }
  810. .carinfoBox{
  811. width: 702rpx;
  812. /* height: 250rpx; */
  813. background: #FFFFFF;
  814. border-radius: 10rpx;
  815. margin-left: 24rpx;
  816. overflow: hidden;
  817. height: 270rpx;
  818. }
  819. .carinfoBox2{
  820. width: 702rpx;
  821. height: 180rpx;
  822. background: #FFFFFF;
  823. border-radius: 10rpx;
  824. margin-left: 24rpx;
  825. overflow: hidden;
  826. }
  827. .carinfoBox2{
  828. }
  829. .carinfoBox .carLogo{
  830. width: 60rpx;height: 60rpx;
  831. margin-top: 6rpx;
  832. }
  833. .carinfoBoxTop{
  834. display: flex;
  835. justify-content: space-between;
  836. padding-top: 29rpx;
  837. padding-left: 24rpx;
  838. padding-right: 20rpx;
  839. padding-bottom: 24rpx;
  840. border: 1px solid #EEEEEE;
  841. }
  842. .carinfoBoxTopCont{
  843. width: 454rpx;
  844. }
  845. .carinfoBoxTopContTop{
  846. display: flex;
  847. }
  848. .carInfoplateNumber{
  849. font-weight: 500;
  850. color: #3C3C3C;
  851. font-size: 30rpx;
  852. line-height: 42rpx;
  853. padding-right: 16rpx;
  854. }
  855. .carTnfomilage{
  856. color: #F19D01;
  857. font-size: 22rpx;
  858. padding: 0rpx 10rpx;
  859. border-radius: 4rpx;
  860. border: 1px solid #F19D01;
  861. height: 32rpx;
  862. line-height: 34rpx;
  863. margin-top: 2rpx;
  864. margin-left: 2rpx;
  865. }
  866. .carInfocarModel{
  867. width: 454rpx;
  868. color: #666666;
  869. font-size: 26rpx;
  870. white-space: nowrap;
  871. overflow: hidden;
  872. text-overflow: ellipsis;
  873. }
  874. .carinfoBoxTopRight{
  875. display: flex;padding-top: 25rpx;
  876. }
  877. .carinfoBoxTopRightIcon{
  878. width: 29rpx;
  879. height: 31rpx;
  880. }
  881. .huancheBtn{
  882. color: #666666; font-size: 26rpx;line-height: 31rpx;
  883. padding-left: 10rpx;
  884. }
  885. .carInfoBottom{
  886. display: flex;
  887. justify-content: space-around;
  888. }
  889. .carInfoBottomLineTitle{
  890. color: #999999;font-size: 24rpx;
  891. text-align: center;
  892. padding-top: 24rpx;
  893. }
  894. .carInfoBottomLineTxt{
  895. color: #3C3C3C;
  896. font-size: 26rpx;
  897. padding-top: 5rpx;
  898. text-align: center;
  899. }
  900. .carinfonocarIcon{
  901. width: 72rpx;
  902. height: 72rpx;
  903. }
  904. .carinfoBoxNocar{
  905. display: flex;
  906. padding-top: 50rpx;
  907. padding-left: 20rpx;
  908. }
  909. .carinfoBoxNocarRightTitle{
  910. font-weight: 500;
  911. color: #3C3C3C;
  912. font-size: 30rpx;
  913. }
  914. .carinfoBoxNocarRightMS{
  915. color: #666666;
  916. font-size: 26rpx;
  917. }
  918. .carinfoBoxNocarRight{
  919. padding-left: 24rpx;
  920. }
  921. .shoptopbox{
  922. margin-top: -170rpx;
  923. }
  924. .shoptopbox2{
  925. margin-top: -170rpx;
  926. }
  927. .adviser{
  928. width: 662rpx;
  929. margin-left: 24rpx;
  930. background: #FFFFFF;
  931. border-radius: 10px;
  932. display: flex;
  933. justify-content: space-between;
  934. padding: 18rpx 20rpx;
  935. margin-top: 20rpx;
  936. }
  937. .adviserLeft{
  938. display: flex;
  939. }
  940. .advisertx{
  941. width: 62rpx;height: 62rpx;
  942. }
  943. .adviserNema{
  944. color: #333333;font-size: 30rpx;
  945. line-height: 62rpx;padding-left: 24rpx;
  946. }
  947. .adviserms{
  948. width: 118rpx;
  949. height: 36rpx;
  950. border-radius: 4rpx;
  951. border: 1px solid #D53533;
  952. line-height: 36rpx;
  953. text-align: center;
  954. margin-top: 12rpx;
  955. margin-left: 20rpx;
  956. color: #D53533;
  957. font-size: 24rpx;
  958. }
  959. .adviserJt{
  960. width: 12rpx;
  961. height: 20rpx;
  962. margin-top: 16rpx;
  963. }
  964. .modular{
  965. width: 702rpx;
  966. /* height: 313rpx; */
  967. background: #FFFFFF;
  968. border-radius: 10px;
  969. margin-top: 20rpx;
  970. margin-left: 24rpx;
  971. padding-bottom: 40rpx;
  972. }
  973. .swiper-item{
  974. display: flex;
  975. flex-wrap: wrap;
  976. }
  977. .itemImg{
  978. width: 46rpx;
  979. height: 46rpx;
  980. }
  981. .Menusline{
  982. font-size: 24rpx;
  983. color: #333333;
  984. }
  985. .itemLine{
  986. width: 20%;
  987. text-align: center;
  988. padding-top: 40rpx;
  989. }
  990. .advertisement{
  991. width: 702rpx;
  992. height: 280rpx;
  993. margin-top: 20rpx;
  994. margin-left: 24rpx;
  995. border-radius: 20rpx;
  996. }
  997. .swiper-item2{
  998. width: 702rpx;
  999. height: 280px;
  1000. }
  1001. .swiper-item2Img{
  1002. width: 702rpx;
  1003. height: 280rpx;
  1004. }
  1005. .hotMoreJt{
  1006. width: 12rpx;
  1007. height: 20rpx;
  1008. margin-top: 6rpx;
  1009. }
  1010. .Hot{
  1011. width: 702rpx;
  1012. margin-top: 20rpx;
  1013. margin-left: 24rpx;
  1014. }
  1015. .hotTop{
  1016. display: flex;
  1017. justify-content: space-between;
  1018. padding: 6rpx 0;
  1019. }
  1020. .hotSx{
  1021. width: 8rpx;
  1022. height: 30rpx;
  1023. background: #FF0000;
  1024. border-radius: 5rpx;
  1025. }
  1026. .hotLeft{
  1027. display: flex;
  1028. }
  1029. .hottitle{
  1030. font-weight: 500;
  1031. color: #333333;
  1032. font-size: 30rpx;
  1033. line-height: 30rpx;
  1034. margin-left: 16rpx;
  1035. }
  1036. .hotRight{
  1037. display: flex;
  1038. }
  1039. .hotMore{
  1040. line-height: 30rpx;color: #666666;font-size: 24rpx;
  1041. margin-right: 16rpx;
  1042. }
  1043. .hotLineTopImg{
  1044. width: 702rpx;
  1045. height: 280rpx;
  1046. display: block;
  1047. }
  1048. .hotLineTop{
  1049. position: relative;
  1050. height: 280rpx;
  1051. }
  1052. .hotLine{
  1053. margin-top: 20rpx;
  1054. border-radius: 10rpx;
  1055. background: #FFFFFF;
  1056. overflow: hidden;
  1057. }
  1058. .hotlinestate1{
  1059. width: 102rpx;
  1060. height: 44rpx;
  1061. background:#FBBF00 ;
  1062. line-height: 44rpx;
  1063. font-weight: 500;
  1064. color: #333333;
  1065. font-size: 24rpx;
  1066. text-align: center;
  1067. }
  1068. .hotlinestate2{
  1069. width: 102rpx;
  1070. height: 44rpx;
  1071. background:#FF0000 ;
  1072. line-height: 44rpx;
  1073. font-weight: 500;
  1074. color: #FFFFFF;
  1075. font-size: 24rpx;
  1076. text-align: center;
  1077. }
  1078. .hotlineTimebox{
  1079. position: absolute;
  1080. left: 0;
  1081. bottom: 0;
  1082. display: flex;
  1083. align-items: flex-end;
  1084. }
  1085. .hotTime{
  1086. background: rgba(0, 0, 0, 0.5);
  1087. font-weight: 400;
  1088. color: #FFFFFF;
  1089. font-size: 24rpx;
  1090. /* line-height: 44rpx; */
  1091. padding: 5rpx 20rpx;
  1092. margin-top: 9rpx;
  1093. margin-left: -8rpx;
  1094. border-radius: 0px 10rpx 0px 0px;
  1095. }
  1096. .hotName{
  1097. padding: 24rpx 20rpx;
  1098. color: #333333;
  1099. line-height: 40rpx;
  1100. font-size: 28rpx;
  1101. }
  1102. .hotGoodsLine{
  1103. margin-top: 30rpx;
  1104. padding: 20rpx;
  1105. background: #FFFFFF;
  1106. border-radius: 16rpx;
  1107. display: flex;
  1108. }
  1109. .hotGoodsLineImg{
  1110. width: 208rpx;
  1111. height: 194rpx;
  1112. border-radius: 16rpx;
  1113. border: 1px solid #EEEEEE;
  1114. display: block;
  1115. }
  1116. .goodsName{
  1117. font-size: 28rpx;
  1118. font-family: PingFangSC-Regular, PingFang SC;
  1119. font-weight: 400;
  1120. color: #333333;
  1121. line-height: 40rpx;
  1122. text-overflow: -o-ellipsis-lastline;
  1123. overflow: hidden;
  1124. text-overflow: ellipsis;
  1125. display: -webkit-box;
  1126. -webkit-line-clamp: 2;
  1127. line-clamp: 2;
  1128. -webkit-box-orient: vertical;
  1129. }
  1130. .hotGoodsLineRIght{
  1131. padding-left: 24rpx;
  1132. }
  1133. .goodsPrice{
  1134. display: flex;
  1135. padding-top: 10rpx;
  1136. }
  1137. .goodsPrice1{
  1138. font-size: 24rpx;
  1139. font-weight: 400;
  1140. color: #FF0000;
  1141. padding-top: 8rpx;
  1142. }
  1143. .goodsPrice2{
  1144. font-size: 22rpx;
  1145. font-weight: 400;
  1146. color: #FF0000;
  1147. padding-top: 10rpx;
  1148. }
  1149. .goodsPrice3{
  1150. font-size: 32rpx;
  1151. font-weight: 500;
  1152. color: #FF0000;
  1153. }
  1154. .goodsPrice4{
  1155. font-size: 24rpx;
  1156. font-weight: 400;
  1157. color: #999999;
  1158. padding-top: 8rpx;
  1159. padding-left: 10rpx;
  1160. text-decoration:line-through;
  1161. }
  1162. .Sold{
  1163. font-weight: 400;
  1164. color: #999999;
  1165. font-size: 24rpx;
  1166. padding-top: 8rpx;
  1167. }
  1168. .jkStateImg{
  1169. width: 102rpx;
  1170. height: 53rpx;
  1171. position: relative;
  1172. }
  1173. </style>