index.vue 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755
  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" v-if="homeCardList.openMCar.showType==1">
  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 v-if="homeCardList.openMUsers">
  90. <view class="adviser" v-if="homeCardList.openMUsers.showType!=2&&managerInfo" @click="goMUsers()">
  91. <view class="adviserLeft">
  92. <img v-if="managerInfo.avatar" :src="managerInfo.avatar" alt="" class="advisertx">
  93. <img v-else src="../../static/timg/pic_def_ava@2x.png" alt="" class="advisertx">
  94. <view class="adviserNema">{{managerInfo.name}}</view>
  95. <view class="adviserms" :style="{border:'1px solid #'+themeColor,color:'#'+themeColor}">服务顾问</view>
  96. </view>
  97. <img src="../../static/timg/icon_arrow_right.png" alt="" class="adviserJt">
  98. </view>
  99. </view>
  100. <!-- 中间功能应用模块 -->
  101. <view class="modular" v-if="homeCardList.application.length>0">
  102. <view class="swiper-item">
  103. <view class="itemLine" @click="goRoter(item)" v-for="(item,index) in homeCardList.application">
  104. <view><img :src="item.icon" alt="" class="itemImg"></view>
  105. <view class="Menusline">{{item.name}}</view>
  106. </view>
  107. </view>
  108. </view>
  109. <view class="advertisement" v-if="homeCardList.ad1.length>0">
  110. <swiper class="swiper2" circular :autoplay="true" :interval="interval"
  111. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" :indicator-active-color="'#'+themeColor">
  112. <swiper-item v-for="(item,index) in homeCardList.ad1">
  113. <view class="swiper-item2" @click="goRoter(item)">
  114. <image class="swiper-item2Img" :src="item.icon" mode=""></image>
  115. </view>
  116. </swiper-item>
  117. </swiper>
  118. </view>
  119. <view class="advertisement" v-if="homeCardList.ad2.length>0">
  120. <swiper class="swiper2" circular :autoplay="true" :interval="interval"
  121. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" :indicator-active-color="'#'+themeColor">
  122. <swiper-item v-for="(item,index) in homeCardList.ad2">
  123. <view class="swiper-item2" @click="goRoter(item)">
  124. <image class="swiper-item2Img" :src="item.icon" mode=""></image>
  125. </view>
  126. </swiper-item>
  127. </swiper>
  128. </view>
  129. <view class="advertisement" v-if="homeCardList.ad3.length>0">
  130. <swiper class="swiper2" circular :autoplay="true" :interval="interval"
  131. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" :indicator-active-color="'#'+themeColor">
  132. <swiper-item v-for="(item,index) in homeCardList.ad3">
  133. <view class="swiper-item2" @click="goRoter(item)">
  134. <image class="swiper-item2Img" :src="item.icon" mode=""></image>
  135. </view>
  136. </swiper-item>
  137. </swiper>
  138. </view>
  139. <!-- 热门活动 -->
  140. <view v-if="homeCardList.openMActivity&&homeCardList.openMActivity.openCollectingList">
  141. <view class="Hot" v-if="homeCardList.openMActivity.openCollectingList.length>0">
  142. <view class="hotTop">
  143. <view class="hotLeft">
  144. <view class="hotSx" :style="{background:'#'+themeColor}"></view>
  145. <view class="hottitle">{{homeCardList.openMActivity.showTitle?homeCardList.openMActivity.showTitle:'热门活动'}}</view>
  146. </view>
  147. <view class="hotRight" @click="moreJk">
  148. <view class="hotMore">更多</view>
  149. <img src="../../static/timg/icon_arrow_right.png" alt="" class="hotMoreJt">
  150. </view>
  151. </view>
  152. <view class="hotLine" @click="goJk(item)" v-for="(item,index) in homeCardList.openMActivity.openCollectingList" v-if="index<homeCardList.openMActivity.showCount">
  153. <view class="hotLineTop">
  154. <image class="hotLineTopImg" :src="item.img" mode=""></image>
  155. <view class="hotlineTimebox">
  156. <!-- <view class="hotlinestate1" v-if="item.state==2">进行中</view>
  157. <view class="hotlinestate2" v-if="item.state==1">未开始</view> -->
  158. <image class="jkStateImg" v-if="item.state==2" src="http://dmsphoto.66km.com.cn/thFiles/85EAAA7F-01A6-41A6-B25B-72FAD3E451AC.png" mode="" ></image>
  159. <image class="jkStateImg" v-if="item.state==1" src="http://dmsphoto.66km.com.cn/thFiles/EB46639B-85C9-4246-A3E3-EA87944DFC36.png" mode="" ></image>
  160. <view class="hotTime">{{item.startTime.slice(0,10)}}-{{item.endTime.slice(0,10)}}</view>
  161. </view>
  162. </view>
  163. <view class="hotName">{{item.activityName}}</view>
  164. <view class="groupType" v-if="item.groupType">拼团</view>
  165. </view>
  166. </view>
  167. </view>
  168. <!-- 热门商品 -->
  169. <view v-if="homeCardList.openMGoods">
  170. <view class="" v-if="homeCardList.openMGoods.goodsList&&homeCardList.openMGoods.goodsList.length>0">
  171. <view class="Hot" v-if="homeCardList.openMGoods.showType==1">
  172. <view class="hotTop">
  173. <view class="hotLeft">
  174. <view class="hotSx" :style="{background:'#'+themeColor}"></view>
  175. <view class="hottitle">{{homeCardList.openMGoods.showTitle?homeCardList.openMGoods.showTitle:'热门商品'}}</view>
  176. </view>
  177. <view class="hotRight" @click="goShop">
  178. <view class="hotMore">更多</view>
  179. <img src="../../static/timg/icon_arrow_right.png" alt="" class="hotMoreJt">
  180. </view>
  181. </view>
  182. <view v-if="homeCardList.openMGoods.showLayout==1">
  183. <view class="hotGoodsLine" v-for="(item,index) in homeCardList.openMGoods.goodsList" @click="goGoods(item)" v-if="index<homeCardList.openMGoods.showCount">
  184. <view>
  185. <image :src="item.url" mode="" class="hotGoodsLineImg"></image>
  186. </view>
  187. <view class="hotGoodsLineRIght">
  188. <view class="goodsName">{{item.name}}</view>
  189. <view class="Sold">
  190. <view v-if="item.showLabel&&item.showLabel.indexOf('3')!=-1">
  191. 已售 {{item.saleQty>0?item.saleQty:0}}
  192. </view>
  193. </view>
  194. <view class="goodsPrice">
  195. <view class="goodsPrice1" >{{item.saleLabel}}</view><!-- :style="{color:'#'+themeColor}" -->
  196. <view class="goodsPrice2" >¥</view>
  197. <view class="goodsPrice3" >{{item.salePrice}}
  198. <span v-if="item.categoryIds=='7B97D114-C419-42B2-9C1E-0B4CA284CDA0'">万</span>
  199. </view>
  200. <view class="goodsPrice4" v-if="item.showLabel&&item.scribingPrice&&item.showLabel.indexOf('1')!=-1">¥{{item.scribingPrice}}</view>
  201. </view>
  202. </view>
  203. </view>
  204. </view>
  205. <!-- 俩列的 -->
  206. <div class="goodsTwo" v-if="homeCardList.openMGoods.showLayout==2">
  207. <div class="goodsTwoLine" v-for="(item,index) in homeCardList.openMGoods.goodsList" @click="goGoods(item)" v-if="index<homeCardList.openMGoods.showCount">
  208. <div class="goodsTwoImg">
  209. <image :src="item.url" mode="" class="hotGoodsLineImg"></image>
  210. </div>
  211. <div class="goodsTwoName">{{item.name}}</div>
  212. <view class="Sold">
  213. <view v-if="item.showLabel&&item.showLabel.indexOf('3')!=-1">
  214. 已售 {{item.saleQty>0?item.saleQty:0}}
  215. </view>
  216. </view>
  217. <view class="goodsPrice">
  218. <view class="goodsPrice1" >{{item.saleLabel}}</view><!-- :style="{color:'#'+themeColor}" -->
  219. <view class="goodsPrice2" >¥</view>
  220. <view class="goodsPrice3" >{{item.salePrice}}
  221. <span v-if="item.categoryIds=='7B97D114-C419-42B2-9C1E-0B4CA284CDA0'">万</span>
  222. </view>
  223. <view class="goodsPrice4" v-if="item.showLabel&&item.scribingPrice&&item.showLabel.indexOf('1')!=-1">¥{{item.scribingPrice}}</view>
  224. </view>
  225. </div>
  226. </div>
  227. </view>
  228. </view>
  229. </view>
  230. <view style="height: 60rpx;"></view>
  231. <!-- 手机号授权 -->
  232. <view class="authorizBox" v-if="authorizShow" @click="authorizShowHide">
  233. <view class="authorizCont" @click.stop="">
  234. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  235. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  236. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  237. </view>
  238. <view style="text-align: center;padding-top: 56rpx;">
  239. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  240. </view>
  241. </view>
  242. <!-- <view @getphonenumber="decryptPhoneNumber" >shopId:{{shopId}}</view>
  243. -->
  244. <view class="qrBox" v-if="qrSHow">
  245. <view class="qrimgBox">
  246. <view class="qrTitle">微信绑定
  247. <image src="../../static/timg/chahao.png" mode="" class="qrimgchahao" @click="qrclose"></image>
  248. </view>
  249. <view class="qrms">扫描/长按下方二维码进行绑定</view>
  250. <view class="qrms2">绑定后可接收微信消息通知</view>
  251. <view style="text-align: center;padding-top: 30rpx;">
  252. <image :src="qrimg" mode="" class="qrimg" :show-menu-by-longpress='true'></image>
  253. </view>
  254. <view class="qrBtn" @click="qrclose">我知道了</view>
  255. </view>
  256. </view>
  257. </view>
  258. </template>
  259. <script>
  260. export default {
  261. data() {
  262. return {
  263. shopId: '',
  264. url:'',
  265. wxOpenData:'',
  266. code:'',
  267. carInfo:'',
  268. homeCardList:'',
  269. authorizShow:false,
  270. miniAppName:'',
  271. iStatusBarHeight:'',
  272. managerInfo:'',
  273. unionId:'',
  274. ext:'',
  275. duration:500,
  276. interval:3000,
  277. InsuranceExpireDate:'',
  278. NextCareDate:'',
  279. NextAuditDate:'',
  280. themeColor:'',
  281. getwxLoing:false,
  282. shareID:'',
  283. discount:'',
  284. bizUserId:'',
  285. coCouponsMsg:'',
  286. coNoNewCustMsg:'',
  287. qrimg:'',
  288. qrSHow:false,
  289. customerInfo:'',
  290. }
  291. },
  292. onLoad(opt) {
  293. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  294. var that=this;
  295. //this.$common.getExtStoreId()
  296. var ext=this.$common.getExtStoreId();
  297. this.ext=ext
  298. console.log("ext--themeColor")
  299. console.log(ext)
  300. //console.log( String(Date.now()))
  301. this.shopId=ext.shopId;
  302. this.url=ext.url;
  303. this.unionId=ext.unionId;
  304. var shareID = opt.scene //'F16E7299-6850-4015-ABCE-A9F2794B45B5'
  305. if (shareID) {
  306. this.shareID = shareID
  307. //this.$store.commit('mutationsshareID', shareID)
  308. }
  309. //this.shareID='C01DF9DA51A341888754DE0C4ADB29D9'
  310. //this.shareID='1BF04FAEC8844ECE9C40E880C3B13721'
  311. //this.unionId="26A1039A-DB10-4D0E-BBA2-541C06274EED";
  312. //this.ext.appId="wxffd2502e67d37908"
  313. // uni.setStorage({
  314. // key: 'extdata',
  315. // data: {
  316. // shopId:'E37BB296-5A08-4534-859D-B351BA611AF9',
  317. // },
  318. // success: function () {
  319. // that.uniLogin()
  320. // }
  321. // });
  322. //this.userInfo = uni.getStorageSync("userInfo");
  323. this.userInfo=this.$store.state.userInfo
  324. if(this.userInfo){
  325. //this.wxOpenData = uni.getStorageSync("wxOpenData");
  326. this.getCarList();
  327. this.queryHomeCardList()
  328. this.queryManagerInfo()
  329. }else{
  330. console.log("uniLogin")
  331. this.uniLogin()
  332. }
  333. //版本更新
  334. this.UpdateManager();
  335. },
  336. onShow() {
  337. this.userInfo=this.$store.state.userInfo;
  338. this.wxOpenData=this.$store.state.wxOpenData;
  339. var indexaddcar = uni.getStorageSync("indexaddcar");
  340. this.getwxLoing=true;
  341. if(this.userInfo){
  342. if(indexaddcar==1){
  343. uni.removeStorageSync('indexaddcar');
  344. this.getCarList();
  345. }else{
  346. this.carInfo=this.$store.state.carInfo;
  347. console.log("车辆信息")
  348. console.log(this.carInfo)
  349. if(!this.carInfo){
  350. this.getCarList();
  351. }
  352. this.jsTime()
  353. }
  354. }
  355. },
  356. onPullDownRefresh(){
  357. this.getCarList();
  358. this.queryHomeCardList()
  359. this.queryManagerInfo()
  360. setTimeout(() => {
  361. uni.stopPullDownRefresh(); // 关闭下拉刷新
  362. }, 1000);
  363. },
  364. methods: {
  365. seeQr(){
  366. // this.authorizShow = true;
  367. // return false;
  368. if (this.userInfo) {
  369. } else {
  370. this.authorizShow = true;
  371. return false;
  372. }
  373. uni.showLoading({
  374. title: '加载中'
  375. })
  376. this.$request.httpBinary('wxV2/createQrCode', {
  377. type:'bindWx',
  378. customerId:this.customerInfo.id,
  379. unionID:this.customerInfo.unionID,
  380. }, 'GET').then(res => {
  381. uni.hideLoading();
  382. this.qrimg = 'data:image/png;base64,'+uni.arrayBufferToBase64(res);
  383. this.qrSHow=true;
  384. //this.img= uni.arrayBufferToBase64(res)
  385. //console.log('list+=', this.queryShopList);
  386. })
  387. },
  388. qrclose(){
  389. this.qrSHow=false;
  390. },
  391. authorizShowHide(){
  392. this.authorizShow=false
  393. },
  394. UpdateManager(){
  395. const updateManager = uni.getUpdateManager();
  396. updateManager.onCheckForUpdate(function (res) {
  397. // 请求完新版本信息的回调
  398. console.log(res.hasUpdate);
  399. });
  400. updateManager.onUpdateReady(function (res) {
  401. uni.showModal({
  402. title: '更新提示',
  403. content: '新版本已经准备好,是否重启应用?',
  404. success(res) {
  405. if (res.confirm) {
  406. // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  407. updateManager.applyUpdate();
  408. }
  409. }
  410. });
  411. });
  412. updateManager.onUpdateFailed(function (res) {
  413. // 新的版本下载失败
  414. uni.showToast({
  415. title: '新的版本下载失败',
  416. icon:'none',
  417. duration: 3000
  418. });
  419. });
  420. },
  421. addCar(){
  422. if(!this.userInfo){
  423. this.authorizShow=true;
  424. }else{
  425. uni.navigateTo({
  426. url:'../user/addCar/addCar?type=1'
  427. })
  428. }
  429. },
  430. goShop(){
  431. uni.switchTab({
  432. url:'../shop/shop'
  433. })
  434. },
  435. moreJk(){
  436. uni.switchTab({
  437. url:'../activity/activity'
  438. })
  439. },
  440. information(){
  441. console.log('车辆信息--',this.carInfo);
  442. uni.navigateTo({
  443. url:'handbook?mileage='+this.carInfo.milage+'&liyangId='+this.carInfo.nLevelID
  444. })
  445. },
  446. changeCar(){
  447. /* uni.scanCode({
  448. success: function (res) {
  449. console.log('条码类型:' + res.scanType);
  450. console.log( res);
  451. }
  452. });
  453. return false; */
  454. uni.navigateTo({
  455. url:'../user/addCar/cailist'
  456. })
  457. },
  458. goMUsers(){
  459. if(!this.userInfo){
  460. this.authorizShow=true;
  461. }else{
  462. var managerInfo={
  463. name:this.managerInfo.name,
  464. shopInfo:{
  465. shopName:this.managerInfo.shopInfo.shopName,
  466. provinceName:this.managerInfo.shopInfo.provinceName,
  467. cityName:this.managerInfo.shopInfo.cityName,
  468. areaName:this.managerInfo.shopInfo.areaName,
  469. Address:this.managerInfo.shopInfo.Address,
  470. },
  471. avatar:this.managerInfo.avatar,
  472. phone:this.managerInfo.phone,
  473. shopID:this.managerInfo.shopInfo.id
  474. }
  475. uni.navigateTo({
  476. url:'../index/personalCard?adInfo='+JSON.stringify(managerInfo)
  477. })
  478. }
  479. },
  480. goGoods(item){
  481. if(!this.userInfo){
  482. this.authorizShow=true;
  483. }else{
  484. uni.navigateTo({
  485. url:'../shop/goodsDetail?id='+item.id
  486. })
  487. }
  488. },
  489. goJk(item){
  490. if(!this.userInfo){
  491. this.authorizShow=true;
  492. }else{
  493. uni.navigateTo({
  494. url:'../activity/jkDetail?id='+item.id
  495. })
  496. }
  497. },
  498. goRoter(item){
  499. console.log(item)
  500. if(item.bizType==7){ //7门店列表
  501. uni.navigateTo({
  502. url:'shopList'
  503. })
  504. }else if(item.bizType==1){ //紧急救援
  505. uni.navigateTo({
  506. url:'rescue'
  507. })
  508. /* uni.showToast({
  509. title: '敬请期待',
  510. icon:'none',
  511. duration: 3000
  512. }); */
  513. }else
  514. if(!this.userInfo){
  515. this.authorizShow=true;
  516. }else{
  517. if(item.bizType==0){
  518. if(item.name=='新车'){ //
  519. uni.navigateTo({
  520. url:'newCar'
  521. })
  522. }else if(item.name=='二手车'){
  523. uni.navigateTo({
  524. url:'usedCar'
  525. })
  526. }else if(item.name=='爱车估价'){
  527. uni.navigateTo({
  528. url:'evaluation'
  529. })
  530. }else if(item.sortId==18){ //领券中心
  531. uni.navigateTo({
  532. url:'receiveCoupon'
  533. })
  534. }else if(item.sortId==19){ //救援测试
  535. uni.navigateTo({
  536. url:'rescue'
  537. })
  538. }
  539. else{
  540. uni.showToast({
  541. title: '敬请期待',
  542. icon:'none',
  543. duration: 3000
  544. });
  545. }
  546. }else if(item.bizType==2){ //钣金喷漆
  547. uni.navigateTo({
  548. url:'paint'
  549. })
  550. /* uni.navigateTo({
  551. url:'receiveCoupon'
  552. }) */
  553. }else if(item.bizType==3){ //保养
  554. uni.navigateTo({
  555. url:'maintain'
  556. })
  557. }else if(item.bizType==4){ //在线预约
  558. uni.navigateTo({
  559. url:'onlineBooking?naShopId='+item.naShopId
  560. })
  561. }else if(item.bizType==5){ //导航
  562. this.getShopinfo(5,item.reShopId)
  563. }else if(item.bizType==6){ //联系本店
  564. this.getShopinfo(6,item.orShopId)
  565. }else if(item.bizType==8){ //我的会员卡
  566. uni.navigateTo({
  567. url:'vipCard'
  568. })
  569. }else if(item.bizType==9){ //我的优惠券
  570. uni.navigateTo({
  571. url:'discountCard'
  572. })
  573. }else if(item.bizType==10){ //我的订单
  574. uni.navigateTo({
  575. url:'../user/myOrder/myOrder'
  576. })
  577. }else if(item.bizType==11){ //我的预约
  578. uni.navigateTo({
  579. url:'../user/myBespeak'
  580. })
  581. }else if(item.bizType==12){ //历史消费
  582. uni.navigateTo({
  583. url:'../user/historySpend'
  584. })
  585. }else if(item.bizType==12){ //历史消费
  586. uni.navigateTo({
  587. url:'../user/historySpend'
  588. })
  589. }else if(item.bizType==13){ //车检报告
  590. uni.navigateTo({
  591. url:'../user/checkReport'
  592. })
  593. }else if(item.bizType==14){ //指定商品分类
  594. uni.setStorage({
  595. key: 'shopcategoryID',
  596. data: item.bizId,
  597. success: function () {
  598. getApp().globalData.shopcategoryID=item.bizId;
  599. uni.switchTab({
  600. url:'../shop/shop?shopcategoryID='+ item.bizId
  601. })
  602. }
  603. });
  604. }else if(item.bizType==15){ //商品详情
  605. uni.navigateTo({
  606. url:'../shop/goodsDetail?id='+item.bizId
  607. })
  608. }else if(item.bizType==16){ //积分商城
  609. uni.navigateTo({
  610. url:'../integral/integral'
  611. })
  612. }else if(item.bizType==17){ //公司介绍
  613. uni.navigateTo({
  614. url:'aboutUS?unionID='+this.userInfo.unionId
  615. })
  616. }else if(item.bizType==18){ //领券中心
  617. uni.navigateTo({
  618. url:'receiveCoupon'
  619. })
  620. /* uni.navigateTo({
  621. url:'rescue'
  622. }) */
  623. }
  624. // uni.navigateTo({
  625. // url:url
  626. // })
  627. }
  628. },
  629. decryptPhoneNumber: function(e) {
  630. console.log(e);
  631. this.code=e.detail.code
  632. this.wxPhoneLogin()
  633. this.authorizShow=false;
  634. },
  635. wxgologin(){
  636. var that=this;
  637. uni.getUserProfile({
  638. lang:'zh_CN',
  639. desc:'登录',
  640. success:(res)=>{
  641. console.log(res);
  642. that.wxdata=res;
  643. uni.setStorage({
  644. key: 'wxdata',
  645. data: res,
  646. success: function () {
  647. that.uniLogin()
  648. }
  649. });
  650. },
  651. fail:(res)=>{
  652. console.log(res)
  653. }
  654. });
  655. },
  656. uniLogin(){
  657. var that=this;
  658. uni.login({
  659. provider: 'weixin',
  660. success: function (loginRes) {
  661. console.log(loginRes);
  662. that.getWxOpenID(loginRes)
  663. }
  664. });
  665. },
  666. getWxOpenID(e){
  667. var that=this;
  668. // uni.showLoading({
  669. // title: '加载中'
  670. // })
  671. this.$http('miniApp2/sys/getWxOpenID', {
  672. code:e.code,
  673. unionId:this.unionId,
  674. shareId:this.shareID
  675. },'GET').then(res => {
  676. console.log(res.code);
  677. console.log("授权信息")
  678. console.log(res)
  679. //uni.hideLoading();
  680. if(res.code!=0){
  681. //uni.hideLoading();
  682. var msg=res.msg
  683. if(!msg){
  684. msg='授权失败'
  685. }
  686. console.log(msg);
  687. // uni.showModal({
  688. // title: '提示',
  689. // content: msg,
  690. // success: function(resTK) {
  691. // if (resTK.confirm) {
  692. // }
  693. // }
  694. // });
  695. // uni.showToast({
  696. // title:msg,
  697. // icon: 'none',
  698. // duration: 3000
  699. // });
  700. //return false
  701. }
  702. this.wxOpenData=res.data;
  703. this.themeColor=res.data.themeColor
  704. //this.themeColor='FFFFFF'
  705. this.getwxLoing=true;
  706. uni.setNavigationBarTitle({
  707. title:this.wxOpenData.miniAppName
  708. })
  709. if(this.themeColor=='6F2BE8'){
  710. var backgroundImage='/static/tabimg/index6F2BE8.png'
  711. }
  712. if(this.themeColor=='1677FF'){
  713. var backgroundImage='/static/tabimg/index1677FF.png'
  714. }
  715. if(this.themeColor=='FF4F00'){
  716. var backgroundImage='/static/tabimg/indexFF4F00.png'
  717. }
  718. if(this.themeColor=='D53533'){
  719. var backgroundImage='/static/tabimg/index1.png'
  720. }
  721. uni.setTabBarStyle({
  722. // color: '#FF0000',
  723. selectedColor: '#'+this.themeColor,
  724. })
  725. uni.setTabBarItem({
  726. index: 0,
  727. text: '首页',
  728. selectedIconPath: backgroundImage
  729. })
  730. if(res.code==0){
  731. that.queryHomeCardList()
  732. }
  733. //that.wxPhoneLogin()
  734. this.$store.commit('mutationswxOpenData', that.wxOpenData)
  735. uni.setStorage({
  736. key: 'wxOpenData',
  737. data: that.wxOpenData,
  738. success: function () {
  739. // that.uniLogin()
  740. }
  741. });
  742. uni.setStorage({
  743. key: 'themeColor',
  744. data: that.themeColor,
  745. success: function () {
  746. // that.uniLogin()
  747. console.log("themeColor=="+that.themeColor)
  748. }
  749. });
  750. if(this.wxOpenData.loginInfo){
  751. this.$store.commit('mutationsuserInfo', that.wxOpenData.loginInfo.openUser)
  752. this.userInfo=that.wxOpenData.loginInfo.openUser
  753. that.queryManagerInfo()
  754. uni.setStorage({
  755. key: 'userInfo',
  756. data: that.wxOpenData.loginInfo.openUser,
  757. success: function () {
  758. that.getCarList()
  759. }
  760. });
  761. }else{
  762. //this.authorizShow=true;
  763. }
  764. if(res.data.loginInfo.discount){
  765. that.discount=res.data.loginInfo.discount;
  766. if(that.discount==2){
  767. that.bizUserId=res.data.loginInfo.bizUserId;
  768. }
  769. if(that.shareID){
  770. that.getCouponList()
  771. }
  772. }
  773. if(res.data.loginInfo.coNoNewCustMsg){ //车主合伙人二维码提示
  774. uni.showModal({
  775. title: '提示',
  776. content:res.data.loginInfo.coNoNewCustMsg,
  777. success: function(resTKk) {
  778. }
  779. });
  780. }
  781. //console.log("优惠券")
  782. })
  783. },
  784. wxPhoneLogin(){
  785. var that=this;
  786. this.$http('miniApp2/sys/wxPhoneLogin', {
  787. appId:this.ext.appId,
  788. unionId:this.unionId,
  789. code:this.code,
  790. openId:this.wxOpenData.openid,
  791. shareId:this.shareID
  792. },'POST').then(res => {
  793. var data = res.data;
  794. if(data.newCustomer){
  795. uni.showModal({
  796. title: '提示',
  797. content: data.newCustomerMsg,
  798. success: function(resTK) {
  799. }
  800. });
  801. var token=res.data.token
  802. data.loginInfo={}
  803. data.loginInfo.token=token
  804. this.$store.commit('mutationswxOpenData', data);
  805. return false;
  806. }
  807. if(data.loginInfo){
  808. this.userInfo=data.loginInfo.openUser;
  809. this.customerInfo=data.loginInfo.customerInfo
  810. this.$store.commit('mutationsuserInfo', this.userInfo);
  811. this.$store.commit('mutationswxOpenData', data);
  812. uni.setStorage({
  813. key: 'userInfo',
  814. data: data.loginInfo.openUser,
  815. success: function () {
  816. that.getCarList()
  817. that.queryHomeCardList()
  818. that.queryManagerInfo();
  819. if(data.loginInfo.coCouponsMsg){
  820. uni.hideLoading()
  821. that.coCouponsMsg =data.loginInfo.coCouponsMsg;
  822. that.ownerCoupon()
  823. }
  824. if(data.loginInfo.coNoNewCustMsg){
  825. //console.log(data.loginInfo.coNoNewCustMsg)
  826. uni.hideLoading()
  827. that.coNoNewCustMsg =data.loginInfo.coNoNewCustMsg;
  828. that.coNoNewCust()
  829. }
  830. if(data.loginInfo.discount){
  831. that.discount=data.loginInfo.discount;
  832. if(that.discount==2){
  833. that.bizUserId=data.loginInfo.bizUserId;
  834. }
  835. if(that.shareID&&that.discount==2){
  836. that.getCouponList()
  837. }
  838. }
  839. }
  840. });
  841. if(!this.customerInfo.wxMiniV2OpenID){
  842. this.seeQr()
  843. }
  844. }
  845. })
  846. },
  847. coNoNewCust(){
  848. console.log(111111)
  849. var that=this;
  850. uni.showModal({
  851. title: '提示',
  852. content: that.coNoNewCustMsg,
  853. success: function(resTK) {
  854. }
  855. });
  856. },
  857. ownerCoupon(){
  858. console.log(22222)
  859. var that=this;
  860. uni.showModal({
  861. title: '提示',
  862. content: that.coCouponsMsg,
  863. cancelText:'回到首页',
  864. confirmText:'查看',
  865. success: function(resTK) {
  866. if (resTK.confirm) {
  867. uni.navigateTo({
  868. url:'discountCard'
  869. })
  870. }
  871. }
  872. });
  873. },
  874. getCouponList(){
  875. if(this.discount!=2){
  876. var params={
  877. discount:this.discount
  878. }
  879. }else{
  880. var params={
  881. discount:this.discount,
  882. bizId:this.bizUserId
  883. }
  884. }
  885. var that=this;
  886. this.$http('opencoupon/getCouponList', params, 'GET').then(res => {
  887. var list = res.data;
  888. if(list.length>0){
  889. uni.showModal({
  890. title: '提示',
  891. content: '您有优惠券待领取',
  892. cancelText:'回到首页',
  893. confirmText:'查看',
  894. success: function(resTK) {
  895. if (resTK.confirm) {
  896. uni.navigateTo({
  897. url:'discountDlq?bizUserId='+that.bizUserId+'&discount='+that.discount
  898. })
  899. }
  900. }
  901. });
  902. }
  903. })
  904. },
  905. getCarList(){
  906. this.$http('opencarOwnerHome/queryCarInfoList', {
  907. },'GET').then(res => {
  908. if(res.code==401){
  909. // this.uniLogin()
  910. this.carInfo=''
  911. this.$store.commit('mutationscarInfo', '')
  912. }else{
  913. this.carInfo=res.data[0]
  914. //this.carInfo=[]
  915. this.$store.commit('mutationscarInfo', this.carInfo)
  916. /* this.carInfo.insuranceExpireDate='2022-11-11';
  917. this.carInfo.nextAuditDate='2022-08-13'; */
  918. //this.carInfo.nextCareDate='2022-08-11';
  919. //this.carInfo.nextCareMilage=11
  920. this.jsTime()
  921. }
  922. })
  923. },
  924. jsTime(){
  925. if(this.carInfo.insuranceExpireDate){
  926. if (Number(new Date().getTime()) > (Number(new Date(this.carInfo.insuranceExpireDate.replace(/-/g, '/')).getTime()) || 0)) {
  927. console.log("现在时间大于开始时间")
  928. this.InsuranceExpireDate = 0
  929. } else {
  930. this.clock()
  931. }
  932. }else{
  933. this.InsuranceExpireDate=''
  934. }
  935. if(this.carInfo.nextCareDate){
  936. if (Number(new Date().getTime()) > (Number(new Date(this.carInfo.nextCareDate.replace(/-/g, '/')).getTime()) || 0)) {
  937. this.NextCareDate = 0
  938. } else {
  939. this.clock2()
  940. }
  941. }else{
  942. this.NextCareDate = ''
  943. }
  944. if(this.carInfo.nextAuditDate){
  945. if (Number(new Date().getTime()) > (Number(new Date(this.carInfo.nextAuditDate.replace(/-/g, '/')).getTime()) || 0)) {
  946. this.NextAuditDate = 0
  947. } else {
  948. this.clock3()
  949. }
  950. }else{
  951. this.NextAuditDate=''
  952. }
  953. },
  954. clock () {
  955. let _this = this
  956. let today = new Date() // 当前时间
  957. let h = today.getHours()
  958. let m = today.getMinutes()
  959. let s = today.getSeconds()
  960. let stopTime = new Date(_this.carInfo.insuranceExpireDate.replace(/-/g, '/')) // 结束时间
  961. let stopH = stopTime.getHours()
  962. let stopM = stopTime.getMinutes()
  963. let stopS = stopTime.getSeconds()
  964. let shenyu = stopTime.getTime() - today.getTime() // 倒计时毫秒数
  965. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  966. this.InsuranceExpireDate=shengyuD+1;
  967. // setTimeout(_this.clock, 500)
  968. },
  969. clock2 () {
  970. let _this = this
  971. let today = new Date() // 当前时间
  972. let stopTime = new Date(_this.carInfo.nextCareDate.replace(/-/g, '/')) // 结束时间
  973. let stopH = stopTime.getHours()
  974. let stopM = stopTime.getMinutes()
  975. let stopS = stopTime.getSeconds()
  976. let shenyu = stopTime.getTime() - today.getTime() // 倒计时毫秒数
  977. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  978. this.NextCareDate=shengyuD+1;
  979. // setTimeout(_this.clock, 500)
  980. },
  981. clock3 () {
  982. let _this = this
  983. let today = new Date() // 当前时间
  984. let stopTime = new Date(_this.carInfo.nextAuditDate.replace(/-/g, '/')) // 结束时间
  985. let shenyu = stopTime.getTime() - today.getTime() // 倒计时毫秒数
  986. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  987. this.NextAuditDate=shengyuD+1;
  988. // setTimeout(_this.clock, 500)
  989. },
  990. queryManagerInfo(){
  991. console.log("11")
  992. this.$http('openHome/queryManagerInfo', {
  993. },'GET').then(res => {
  994. this.managerInfo=res.data
  995. })
  996. },
  997. queryHomeCardList(){
  998. //console.log(this.wxOpenData)
  999. var that=this;
  1000. uni.showLoading({
  1001. title: '加载中'
  1002. })
  1003. this.$http('openHome/queryHomeCardList', {
  1004. unionId:this.unionId
  1005. },'GET').then(res => {
  1006. uni.hideLoading();
  1007. this.homeCardList=res.data;
  1008. uni.setStorage({
  1009. key: 'openMCar',
  1010. data: res.data.openMCar,
  1011. success: function () {
  1012. that.getCarList()
  1013. }
  1014. });
  1015. })
  1016. },
  1017. getShopinfo(num,shopId){
  1018. var that=this;
  1019. uni.showLoading({
  1020. title: '加载中'
  1021. })
  1022. if(!shopId){
  1023. shopId=''
  1024. }
  1025. this.$http('openmy/getShopinfo', {
  1026. shopId:shopId
  1027. },'GET').then(res => {
  1028. uni.hideLoading();
  1029. var res=res.data
  1030. if(num==5){
  1031. uni.openLocation({
  1032. latitude:Number(res.lat),
  1033. longitude:Number(res.lng),
  1034. name: res.shopName,
  1035. address: res.address,
  1036. success: function() {
  1037. console.log('success');
  1038. },
  1039. fail(err) {
  1040. console.log(err)
  1041. }
  1042. });
  1043. }else{
  1044. uni.makePhoneCall({
  1045. phoneNumber: res.mobilePhone
  1046. });
  1047. }
  1048. })
  1049. }
  1050. },
  1051. onShareAppMessage(){
  1052. }
  1053. }
  1054. </script>
  1055. <style scoped>
  1056. .qrBox{
  1057. position: fixed;
  1058. width: 100vw;
  1059. height: 100vh;
  1060. background: rgba(0,0,0,0.5);
  1061. left: 0;
  1062. top: 0;
  1063. z-index: 11;
  1064. display: flex;
  1065. justify-content: center;
  1066. align-items: center;
  1067. flex-direction: column;
  1068. }
  1069. .qrimgBox{
  1070. width: 562rpx;
  1071. height: 704rpx;
  1072. background: #FFFFFF;
  1073. border-radius: 24rpx;
  1074. }
  1075. .qrTitle{
  1076. font-size: 30rpx;
  1077. font-family: PingFangSC-Medium, PingFang SC;
  1078. font-weight: 500;
  1079. color: #333333;
  1080. border-bottom: 1px solid #EEEEEE;
  1081. text-align: center;
  1082. line-height: 90rpx;
  1083. position: relative;
  1084. }
  1085. .qrimgchahao{
  1086. width: 38rpx;
  1087. height: 38rpx;
  1088. position: absolute;
  1089. top: 26rpx;
  1090. right: 20rpx;
  1091. }
  1092. .qrms{
  1093. font-weight: 400;
  1094. color: #999999;
  1095. line-height: 37rpx;
  1096. font-size: 26rpx;
  1097. padding-top: 23rpx;
  1098. text-align: center;
  1099. }
  1100. .qrms2{
  1101. font-weight: 400;
  1102. color: #999999;
  1103. line-height: 37rpx;
  1104. font-size: 26rpx;
  1105. text-align: center;
  1106. }
  1107. .qrimg{
  1108. width: 328rpx;
  1109. height: 328rpx;
  1110. }
  1111. .qrBtn{
  1112. width: 292rpx;
  1113. height: 64rpx;
  1114. background: #D53533;
  1115. border-radius: 32rpx;
  1116. color: #FFFFFF;
  1117. line-height: 64rpx;
  1118. text-align: center;
  1119. margin: 0 auto;
  1120. margin-top:40rpx;
  1121. }
  1122. .goodsTwo{
  1123. display: flex;
  1124. justify-content: space-between;
  1125. flex-wrap: wrap;
  1126. }
  1127. .goodsTwoLine{
  1128. background: #FFFFFF;width: 341rpx;
  1129. margin-top: 20rpx;
  1130. padding-bottom: 20rpx;
  1131. border-radius: 16rpx;
  1132. overflow: hidden;
  1133. }
  1134. .goodsTwoImg .hotGoodsLineImg{
  1135. margin: 0 auto;
  1136. width: 100%;
  1137. height: 340rpx;
  1138. border-radius: 0;
  1139. border: none;
  1140. }
  1141. .goodsTwoLine .Sold{
  1142. padding-left: 20rpx;
  1143. }
  1144. .goodsTwoLine .goodsPrice{
  1145. padding-left: 20rpx;
  1146. }
  1147. .goodsTwoImg{
  1148. padding-bottom: 30rpx;
  1149. }
  1150. .goodsTwoName{
  1151. font-weight: 400;
  1152. color: #333333;
  1153. font-size: 26rpx;
  1154. line-height: 38rpx;
  1155. padding: 0 20rpx;
  1156. text-overflow: -o-ellipsis-lastline;
  1157. overflow: hidden;
  1158. text-overflow: ellipsis;
  1159. display: -webkit-box;
  1160. -webkit-line-clamp: 2;
  1161. line-clamp: 2;
  1162. -webkit-box-orient: vertical;
  1163. }
  1164. .bxBox{
  1165. display: flex;
  1166. flex-wrap: wrap;
  1167. }
  1168. .bxline{
  1169. display: flex;
  1170. padding-top: 22rpx;
  1171. }
  1172. .bxline1{
  1173. width: 40%;
  1174. }
  1175. .bxline2{
  1176. width: 60%;
  1177. }
  1178. .bxlineTitle{
  1179. color: #333333;
  1180. font-size: 26rpx;
  1181. line-height: 37rpx;
  1182. padding-left: 10rpx;
  1183. }
  1184. .bxlineMs1{
  1185. line-height: 37rpx;
  1186. color: #D53533;
  1187. font-size: 26rpx;
  1188. padding-left: 12rpx;
  1189. }
  1190. .bxlineMs2{
  1191. line-height: 37rpx;
  1192. color: #999999;
  1193. font-size: 24rpx;
  1194. padding-left: 12rpx;
  1195. }
  1196. .bxlineIcon{
  1197. width: 34rpx;
  1198. height: 34rpx;
  1199. margin-left: 24rpx;
  1200. }
  1201. .indexTop{
  1202. /* background: #D53533; */
  1203. width: 750rpx;
  1204. position: fixed;
  1205. top: 0;
  1206. left: 0;
  1207. z-index: 11;
  1208. }
  1209. .indexnav{
  1210. height: 44px;
  1211. line-height: 44px;
  1212. text-align: center;
  1213. font-size: 36rpx;
  1214. color: #FFFFFF;
  1215. }
  1216. .authorizBox{
  1217. width: 100vw;
  1218. height: 100vh;
  1219. background: rgba(0, 0, 0, 0.5);
  1220. position: fixed;
  1221. top: 0;
  1222. left: 0;
  1223. }
  1224. .authorizCont{
  1225. margin-top: 30vh;
  1226. width: 564rpx;
  1227. height: 408rpx;
  1228. background: #FFFFFF;
  1229. border-radius: 24rpx;
  1230. margin-left: 93rpx;
  1231. position: relative;
  1232. }
  1233. .authorizCloseImg{
  1234. width: 62rpx;
  1235. height: 62rpx;
  1236. }
  1237. .sqLogoBox{
  1238. width: 180rpx;
  1239. height: 180rpx;
  1240. background: #FFFFFF;
  1241. border-radius: 90rpx;
  1242. text-align: center;
  1243. position: absolute;
  1244. top: -50rpx;
  1245. left: 192rpx;
  1246. }
  1247. .authorizName{
  1248. color: #333333;
  1249. line-height: 42rpx;
  1250. font-size: 30rpx;
  1251. text-align: center;
  1252. padding-top: 58rpx;
  1253. }
  1254. .authorizMs{
  1255. color: #999999;
  1256. line-height: 36rpx;
  1257. font-size: 26rpx;
  1258. width: 452rpx;
  1259. padding-top: 24rpx;
  1260. text-align: center;
  1261. margin-left: 56rpx;
  1262. }
  1263. .authorizContbutton{
  1264. width: 422rpx;
  1265. height: 88rpx;
  1266. background: #D53533;
  1267. border-radius: 44rpx;
  1268. line-height: 88rpx;
  1269. text-align: center;
  1270. font-size:30rpx;
  1271. color: #FFFFFF;
  1272. margin-top: 62rpx;
  1273. margin-left:71rpx;
  1274. }
  1275. .content{
  1276. min-height: 100vh;
  1277. background: #F4F5F7;
  1278. }
  1279. .topBox{
  1280. width: 750rpx;
  1281. height: 150rpx;
  1282. /* background: #D53533; */
  1283. }
  1284. .yuanhu{
  1285. width: 750rpx;
  1286. height: 50rpx;
  1287. /* background: #D53533; */
  1288. border-radius: 0 0 100% 100%;
  1289. }
  1290. .carinfoBox{
  1291. width: 702rpx;
  1292. /* height: 250rpx; */
  1293. background: #FFFFFF;
  1294. border-radius: 10rpx;
  1295. margin-left: 24rpx;
  1296. overflow: hidden;
  1297. height: 270rpx;
  1298. }
  1299. .carinfoBox2{
  1300. width: 702rpx;
  1301. height: 180rpx;
  1302. background: #FFFFFF;
  1303. border-radius: 10rpx;
  1304. margin-left: 24rpx;
  1305. overflow: hidden;
  1306. }
  1307. .carinfoBox2{
  1308. }
  1309. .carinfoBox .carLogo{
  1310. width: 60rpx;height: 60rpx;
  1311. margin-top: 6rpx;
  1312. }
  1313. .carinfoBoxTop{
  1314. display: flex;
  1315. justify-content: space-between;
  1316. padding-top: 29rpx;
  1317. padding-left: 24rpx;
  1318. padding-right: 20rpx;
  1319. padding-bottom: 24rpx;
  1320. border: 1px solid #EEEEEE;
  1321. }
  1322. .carinfoBoxTopCont{
  1323. width: 454rpx;
  1324. }
  1325. .carinfoBoxTopContTop{
  1326. display: flex;
  1327. }
  1328. .carInfoplateNumber{
  1329. font-weight: 500;
  1330. color: #3C3C3C;
  1331. font-size: 30rpx;
  1332. line-height: 42rpx;
  1333. padding-right: 16rpx;
  1334. }
  1335. .carTnfomilage{
  1336. color: #F19D01;
  1337. font-size: 22rpx;
  1338. padding: 0rpx 10rpx;
  1339. border-radius: 4rpx;
  1340. border: 1px solid #F19D01;
  1341. height: 32rpx;
  1342. line-height: 34rpx;
  1343. margin-top: 2rpx;
  1344. margin-left: 2rpx;
  1345. }
  1346. .carInfocarModel{
  1347. width: 454rpx;
  1348. color: #666666;
  1349. font-size: 26rpx;
  1350. white-space: nowrap;
  1351. overflow: hidden;
  1352. text-overflow: ellipsis;
  1353. }
  1354. .carinfoBoxTopRight{
  1355. display: flex;padding-top: 25rpx;
  1356. }
  1357. .carinfoBoxTopRightIcon{
  1358. width: 29rpx;
  1359. height: 31rpx;
  1360. }
  1361. .huancheBtn{
  1362. color: #666666; font-size: 26rpx;line-height: 31rpx;
  1363. padding-left: 10rpx;
  1364. }
  1365. .carInfoBottom{
  1366. display: flex;
  1367. justify-content: space-around;
  1368. }
  1369. .carInfoBottomLineTitle{
  1370. color: #999999;font-size: 24rpx;
  1371. text-align: center;
  1372. padding-top: 24rpx;
  1373. }
  1374. .carInfoBottomLineTxt{
  1375. color: #3C3C3C;
  1376. font-size: 26rpx;
  1377. padding-top: 5rpx;
  1378. text-align: center;
  1379. }
  1380. .carinfonocarIcon{
  1381. width: 72rpx;
  1382. height: 72rpx;
  1383. }
  1384. .carinfoBoxNocar{
  1385. display: flex;
  1386. padding-top: 50rpx;
  1387. padding-left: 20rpx;
  1388. }
  1389. .carinfoBoxNocarRightTitle{
  1390. font-weight: 500;
  1391. color: #3C3C3C;
  1392. font-size: 30rpx;
  1393. }
  1394. .carinfoBoxNocarRightMS{
  1395. color: #666666;
  1396. font-size: 26rpx;
  1397. }
  1398. .carinfoBoxNocarRight{
  1399. padding-left: 24rpx;
  1400. }
  1401. .shoptopbox{
  1402. margin-top: -170rpx;
  1403. }
  1404. .shoptopbox2{
  1405. margin-top: -170rpx;
  1406. }
  1407. .adviser{
  1408. width: 662rpx;
  1409. margin-left: 24rpx;
  1410. background: #FFFFFF;
  1411. border-radius: 10px;
  1412. display: flex;
  1413. justify-content: space-between;
  1414. padding: 18rpx 20rpx;
  1415. margin-top: 20rpx;
  1416. }
  1417. .adviserLeft{
  1418. display: flex;
  1419. }
  1420. .advisertx{
  1421. width: 62rpx;height: 62rpx;
  1422. }
  1423. .adviserNema{
  1424. color: #333333;font-size: 30rpx;
  1425. line-height: 62rpx;padding-left: 24rpx;
  1426. }
  1427. .adviserms{
  1428. width: 118rpx;
  1429. height: 36rpx;
  1430. border-radius: 4rpx;
  1431. border: 1px solid #D53533;
  1432. line-height: 36rpx;
  1433. text-align: center;
  1434. margin-top: 12rpx;
  1435. margin-left: 20rpx;
  1436. color: #D53533;
  1437. font-size: 24rpx;
  1438. }
  1439. .adviserJt{
  1440. width: 12rpx;
  1441. height: 20rpx;
  1442. margin-top: 20rpx;
  1443. }
  1444. .modular{
  1445. width: 702rpx;
  1446. /* height: 313rpx; */
  1447. background: #FFFFFF;
  1448. border-radius: 10px;
  1449. margin-top: 20rpx;
  1450. margin-left: 24rpx;
  1451. padding-bottom: 40rpx;
  1452. }
  1453. .swiper-item{
  1454. display: flex;
  1455. flex-wrap: wrap;
  1456. }
  1457. .itemImg{
  1458. width: 46rpx;
  1459. height: 46rpx;
  1460. }
  1461. .Menusline{
  1462. font-size: 24rpx;
  1463. color: #333333;
  1464. }
  1465. .itemLine{
  1466. width: 20%;
  1467. text-align: center;
  1468. padding-top: 40rpx;
  1469. }
  1470. .advertisement{
  1471. width: 702rpx;
  1472. height: 280rpx;
  1473. margin-top: 20rpx;
  1474. margin-left: 24rpx;
  1475. border-radius: 20rpx;
  1476. }
  1477. .swiper-item2{
  1478. width: 702rpx;
  1479. height: 280px;
  1480. }
  1481. .swiper-item2Img{
  1482. width: 702rpx;
  1483. height: 280rpx;
  1484. }
  1485. .hotMoreJt{
  1486. width: 12rpx;
  1487. height: 20rpx;
  1488. margin-top: 6rpx;
  1489. }
  1490. .Hot{
  1491. width: 702rpx;
  1492. margin-top: 20rpx;
  1493. margin-left: 24rpx;
  1494. }
  1495. .hotTop{
  1496. display: flex;
  1497. justify-content: space-between;
  1498. padding: 6rpx 0;
  1499. }
  1500. .hotSx{
  1501. width: 8rpx;
  1502. height: 30rpx;
  1503. background: #FF0000;
  1504. border-radius: 5rpx;
  1505. }
  1506. .hotLeft{
  1507. display: flex;
  1508. }
  1509. .hottitle{
  1510. font-weight: 500;
  1511. color: #333333;
  1512. font-size: 30rpx;
  1513. line-height: 30rpx;
  1514. margin-left: 16rpx;
  1515. }
  1516. .hotRight{
  1517. display: flex;
  1518. }
  1519. .hotMore{
  1520. line-height: 30rpx;color: #666666;font-size: 24rpx;
  1521. margin-right: 16rpx;
  1522. }
  1523. .hotLineTopImg{
  1524. width: 702rpx;
  1525. height: 280rpx;
  1526. display: block;
  1527. }
  1528. .hotLineTop{
  1529. position: relative;
  1530. height: 280rpx;
  1531. }
  1532. .hotLine{
  1533. margin-top: 20rpx;
  1534. border-radius: 10rpx;
  1535. background: #FFFFFF;
  1536. overflow: hidden;
  1537. position: relative;
  1538. }
  1539. .groupType{
  1540. width: 76rpx;color: #FFFFFF;
  1541. height: 36rpx;line-height: 36rpx;text-align: center;
  1542. background: linear-gradient(109deg, #FD5A04 0%, #FD0900 100%);
  1543. border-radius: 0rpx 10rpx 0rpx 10rpx;
  1544. position: absolute;font-weight: 500;
  1545. top: 0;right: 0;font-size: 24rpx;
  1546. }
  1547. .hotlinestate1{
  1548. width: 102rpx;
  1549. height: 44rpx;
  1550. background:#FBBF00 ;
  1551. line-height: 44rpx;
  1552. font-weight: 500;
  1553. color: #333333;
  1554. font-size: 24rpx;
  1555. text-align: center;
  1556. }
  1557. .hotlinestate2{
  1558. width: 102rpx;
  1559. height: 44rpx;
  1560. background:#FF0000 ;
  1561. line-height: 44rpx;
  1562. font-weight: 500;
  1563. color: #FFFFFF;
  1564. font-size: 24rpx;
  1565. text-align: center;
  1566. }
  1567. .hotlineTimebox{
  1568. position: absolute;
  1569. left: 0;
  1570. bottom: 0;
  1571. display: flex;
  1572. align-items: flex-end;
  1573. }
  1574. .hotTime{
  1575. background: rgba(0, 0, 0, 0.5);
  1576. font-weight: 400;
  1577. color: #FFFFFF;
  1578. font-size: 24rpx;
  1579. /* line-height: 44rpx; */
  1580. padding: 5rpx 20rpx;
  1581. margin-top: 9rpx;
  1582. margin-left: -8rpx;
  1583. border-radius: 0px 10rpx 0px 0px;
  1584. }
  1585. .hotName{
  1586. padding: 24rpx 20rpx;
  1587. color: #333333;
  1588. line-height: 40rpx;
  1589. font-size: 28rpx;
  1590. }
  1591. .hotGoodsLine{
  1592. margin-top: 30rpx;
  1593. padding: 20rpx;
  1594. background: #FFFFFF;
  1595. border-radius: 16rpx;
  1596. display: flex;
  1597. }
  1598. .hotGoodsLineImg{
  1599. width: 208rpx;
  1600. height: 194rpx;
  1601. border-radius: 16rpx;
  1602. border: 1px solid #EEEEEE;
  1603. display: block;
  1604. }
  1605. .goodsName{
  1606. font-size: 28rpx;
  1607. font-family: PingFangSC-Regular, PingFang SC;
  1608. font-weight: 400;
  1609. color: #333333;
  1610. line-height: 40rpx;
  1611. text-overflow: -o-ellipsis-lastline;
  1612. overflow: hidden;
  1613. text-overflow: ellipsis;
  1614. display: -webkit-box;
  1615. -webkit-line-clamp: 2;
  1616. line-clamp: 2;
  1617. -webkit-box-orient: vertical;
  1618. }
  1619. .hotGoodsLineRIght{
  1620. padding-left: 24rpx;
  1621. }
  1622. .goodsPrice{
  1623. display: flex;
  1624. padding-top: 10rpx;
  1625. }
  1626. .goodsPrice1{
  1627. font-size: 24rpx;
  1628. font-weight: 400;
  1629. color: #FF0000;
  1630. padding-top: 8rpx;
  1631. }
  1632. .goodsPrice2{
  1633. font-size: 22rpx;
  1634. font-weight: 400;
  1635. color: #FF0000;
  1636. padding-top: 10rpx;
  1637. }
  1638. .goodsPrice3{
  1639. font-size: 32rpx;
  1640. font-weight: 500;
  1641. color: #FF0000;
  1642. }
  1643. .goodsPrice4{
  1644. font-size: 24rpx;
  1645. font-weight: 400;
  1646. color: #999999;
  1647. padding-top: 8rpx;
  1648. padding-left: 10rpx;
  1649. text-decoration:line-through;
  1650. }
  1651. .Sold{
  1652. font-weight: 400;
  1653. color: #999999;
  1654. font-size: 24rpx;
  1655. padding-top: 8rpx;
  1656. }
  1657. .jkStateImg{
  1658. width: 102rpx;
  1659. height: 53rpx;
  1660. position: relative;
  1661. }
  1662. </style>