index.vue 24 KB

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