index.vue 24 KB

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