user.vue 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809
  1. <template>
  2. <view class="box">
  3. <view class="top" :style="{background:'#'+themeColor}">
  4. <view class="customerMes">
  5. <image @click="updateUserInfo" v-if="showSetting.showImageType==0" :src="showSetting.showImage" mode=""
  6. style="width: 110rpx;height: 110rpx;border-radius: 55rpx;"></image>
  7. <image @click="updateUserInfo" v-else :src="showSetting.showImageDefault" mode=""
  8. style="width: 110rpx;height: 110rpx;border-radius: 55rpx;"></image>
  9. <!-- <image @click="updateUserInfo" v-else src="http://dmsphoto.66km.com.cn/thFiles/64CD12A3-588E-4201-90F6-5428F6ACD9F9.png" mode=""
  10. style="width: 110rpx;height: 110rpx;border-radius: 55rpx;"></image> -->
  11. <view class="mes">
  12. <view class="nick">
  13. <view class="nickName" v-if="customerName">{{customerName}}</view>
  14. <view class="nickName2" v-else>微信用户</view>
  15. <!-- <view class="grade" @click="gonavigateTo('../index/vipCard')" v-if="numList.levelName&&showSetting.isShowLevel">{{numList.levelName}} ></view>-->
  16. <view class="cardNameBOx" v-if="numList.levelName&&showSetting.isShowLevel" @click="gonavigateTo('../subPack/vipCard')">
  17. <image class="cardNameIcon" src="http://dmsphoto.66km.com.cn/thFiles/E3F78C8A-CF4F-40DD-B050-689CFCEA2F4C.png" mode=""></image>
  18. <view class="cardNameTb">{{numList.levelName}}</view>
  19. <image src="../../static/timg/icon_arrow.png" mode="" class="cardNameIcon2"></image>
  20. </view>
  21. <view class="cardNameBOx" v-if="numList.f2ccard.cardName">
  22. <image class="cardNameIcon" src="http://dmsphoto.66km.com.cn/thFiles/E3F78C8A-CF4F-40DD-B050-689CFCEA2F4C.png" mode=""></image>
  23. <view class="cardNameTb">{{numList.f2ccard.cardName}}</view>
  24. </view>
  25. </view>
  26. <view class="phone" >{{phone}} <span @click="seeQr">{{numList.customerInfo.wxMiniV2OpenID?' / 已绑定微信':' / 未绑定微信'}}</span>
  27. <image src="../../static/img2/hjt.png" mode="" class="hjtIcon"></image>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. <!-- <view v-if="numList.remindType==0" class="marginTop2"></view>v-if="numList.remindType!=0" -->
  33. <view class="marginTop" ></view>
  34. <!-- 卡制度-->
  35. <view v-if="showSetting.isShowCardSystem&&f2csystemlist">
  36. <view >
  37. <swiper class="swiper2" :autoplay="false" :interval="interval"
  38. :current="f2cIndex" :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" :indicator-active-color="'#'+themeColor">
  39. <swiper-item v-for="(item,index) in f2csystemlist">
  40. <view class="cardBox">
  41. <view class="cardTOp" :style="{background:'url('+item.Banner+') 100% 100%'}" style="background-size: 100% 100% !important;">
  42. <img class="vipBsIcon" v-if="item.growthState==1" src="http://dmsphoto.66km.com.cn/thFiles/91FCABC6-775C-47CA-B7D4-3579A4DE8497.png" alt="">
  43. <view class="cardName">{{item.system.name}}</view>
  44. <!-- 当前卡制度-->
  45. <view class="cardtimeBox" v-if="item.growthState==1">
  46. <view class="cardtimeLeft">成长值 {{numList.f2ccard.growthValue}}/{{item.system.growthValueUp}}</view>
  47. <view class="cartimeRight">有效期 {{numList.f2ccard.expireTime.slice(0,10)}}</view>
  48. </view>
  49. <view class="cardtimeBox" v-if="item.growthState==2">
  50. <view class="cardtimeLeft">高于该等级</view>
  51. </view>
  52. <view class="cardtimeBox" v-if="item.growthState==3">
  53. <view class="cardtimeLeft">还需{{item.addGrowth}}成长值可升级</view>
  54. </view>
  55. </view>
  56. <view class="cardCont">
  57. <view class="cardLine" v-for="(c,cindex) in item.contents" v-if="cindex<8">
  58. <view class="cardLineImgBox">
  59. <image :src="c.icon" mode="" class="cardLineImg"></image>
  60. </view>
  61. <view class="cardlineTitle" v-if="c.state==1">{{c.title}}</view>
  62. <view class="cardlineTitle2" v-if="c.state==0">{{c.title}}</view>
  63. </view>
  64. </view>
  65. </view>
  66. </swiper-item>
  67. </swiper>
  68. </view>
  69. </view>
  70. <view class="padingBox">
  71. <view class="headerBox2">
  72. <view class="headerBox">
  73. <view class="quan" @click="gonavigateTo('../index/discountCard')" v-if="showSetting.isShowCoupon">
  74. <view class="numStr">{{numList.count?numList.count:0}}</view>
  75. <view class="nameStr">优惠券</view>
  76. </view>
  77. <view class="quan" v-if="showSetting.isShowIntergral" @click="gonavigateTo('../integral/integral?totalIntegral='+numList.totalIntegral)">
  78. <view class="numStr">{{numList.totalIntegral?numList.totalIntegral:0}}</view>
  79. <view class="nameStr">积分</view>
  80. </view>
  81. <view class="quan" v-if="showSetting.isShowCard" @click="gonavigateTo('../index/vipCard')">
  82. <view class="numStr">{{numList.cardNum?numList.cardNum:0}}</view>
  83. <view class="nameStr">会员卡</view>
  84. </view>
  85. </view>
  86. <view style="padding-bottom: 20rpx;" v-if="numList.remindIntegral">
  87. <view class="remindBox" >
  88. <view class="remindLeft" style="display: flex;">
  89. <image style="width: 30rpx;height: 30rpx;" src="http://dmsphoto.66km.com.cn/thFiles/4DC56154-C0D0-4CC8-A9B1-A2117C39CDFB.png" mode=""></image>
  90. <span style="padding-left: 10rpx;">您有</span>
  91. <span style="color: #0B0B0B;font-weight: 500;">{{numList.remindIntegral}}</span>
  92. <span v-if="numList.remindType==1">积分将于本月过期</span>
  93. <span v-if="numList.remindType==2">积分将于30天内过期</span>
  94. </view>
  95. <view class="useremind" @click="useremind">去使用></view>
  96. </view>
  97. </view>
  98. </view>
  99. <!-- v-if="numList.remindType!=0&&numList.remindIntegral!=0" -->
  100. </view>
  101. <!-- 店铺信息 -->
  102. <view class="shopBox" v-if="userInfo&&showSetting.isShowCardShop">
  103. <view class="shopCont">
  104. <view class="shopName">{{numList.shopInfo.shopName}}</view>
  105. <view class="shopRightBox">
  106. <image src="../../static/img/icon_ditu.png" mode="" class="shopRightImg"
  107. style="margin-right: 30rpx;" @click="map"></image>
  108. <image src="../../static/img/icon_phone.png" mode="" class="shopRightImg" @click="call"></image>
  109. </view>
  110. </view>
  111. <view v-if="numList.isShowScore == 1 && numList.isShowEvaluate == 1" class="appraiseBox">
  112. <view v-if="numList.isShowScore == 1 && numList.shopInfo.miniV2ShopScore" class="appraise">
  113. {{numList.shopInfo.miniV2ShopScore}}
  114. <span style='font-size: 26rpx; margin-left: 3rpx;'>分</span>
  115. </view>
  116. <view v-if="numList.isShowScore == 1 && !numList.shopInfo.miniV2ShopScore" class="appraise"
  117. style='font-size: 26rpx;'>暂无评分</span>
  118. </view>
  119. <view v-if="numList.isShowScore == 1" class="line"></view>
  120. <view @click="goShopAppraiseList()" v-if="numList.isShowEvaluate == 1 && numList.evaluateCount "
  121. class="appraiseCount">评价数
  122. {{numList.evaluateCount}}
  123. <image v-if="numList.isShowEvaluate == 1" class="rightArrow"
  124. src="../../static/timg/icon_arrow_right.png" mode=""></image>
  125. </view>
  126. <view v-if="numList.isShowEvaluate == 1 && !numList.evaluateCount " class="appraiseCount">暂无评价
  127. </view>
  128. </view>
  129. <view class="shopTime" v-if="numList.shopInfo.startTime && numList.shopInfo.endTime">
  130. {{numList.shopInfo.startTime}}-{{numList.shopInfo.endTime}}
  131. </view>
  132. <view class="address">
  133. <view class="Address">
  134. {{numList.shopInfo.provinceName?numList.shopInfo.provinceName:''}}
  135. {{numList.shopInfo.cityName?numList.shopInfo.cityName:''}}
  136. {{numList.shopInfo.areaName?numList.shopInfo.areaName:''}}
  137. {{numList.shopInfo.address?numList.shopInfo.address:''}}
  138. </view>
  139. <!-- <view class="distance" v-if="numList.shopInfo.distance&&numList.shopInfo.distance!= '0.00'">{{numList.shopInfo.distance}}km</view> -->
  140. </view>
  141. </view>
  142. <!-- 我的订单 -->
  143. <view class="orderBox">
  144. <view class="orderTitle">
  145. <span>我的订单</span>
  146. <span class="allOrder" @click="goorder(0)">全部订单
  147. <image src="../../static/img/big_rightArrow.png" mode="" class="allOrderIcon"></image>
  148. </span>
  149. </view>
  150. <view class="orderLIneBox">
  151. <view class="orderLine" @click="goorder(1)">
  152. <view class="orderImgBox">
  153. <view class="orderNum" v-show="numList.waitPurchaseSize>0">
  154. {{numList.waitPurchaseSize>99?'99+':numList.waitPurchaseSize}}
  155. </view>
  156. <image src="../../static/img2/dzf.png" mode="" class="orderLineImg"></image>
  157. </view>
  158. <view class="orderLineTxt">待支付</view>
  159. </view>
  160. <view class="orderLine" @click="goorder(5)">
  161. <view class="orderImgBox">
  162. <view class="orderNum" v-show="numList.waitGroupSize>0">
  163. {{numList.waitGroupSize>99?'99+':numList.waitGroupSize}}
  164. </view>
  165. <image src="../../static/img2/dct.png" mode="" class="orderLineImg"></image>
  166. </view>
  167. <view class="orderLineTxt">待成团</view>
  168. </view>
  169. <view class="orderLine" style="border-right: 1px dashed #DDDDDD;" @click="goorder(3)">
  170. <view class="orderImgBox">
  171. <view class="orderNum" v-show="numList.hasOverSize>0">
  172. {{numList.hasOverSize>99?'99+':numList.hasOverSize}}
  173. </view>
  174. <image src="../../static/img2/ywc.png" mode="" class="orderLineImg"></image>
  175. </view>
  176. <view class="orderLineTxt">已完成</view>
  177. </view>
  178. <view class="orderLine" @click="goorder(2)">
  179. <view class="orderImgBox">
  180. <view class="orderNum" v-show="numList.waitServiceSize>0">
  181. {{numList.waitServiceSize>99?'99+':numList.waitServiceSize}}
  182. </view>
  183. <image src="../../static/img2/dsy.png" mode="" class="orderLineImg"></image>
  184. </view>
  185. <view class="orderLineTxt">待使用</view>
  186. </view>
  187. <!-- <view class="orderLine" @click="goorder(0)">
  188. <view class="orderImgBox">
  189. <view class="orderNum" v-show="numList.allSize>0">{{numList.allSize>99?'99+':numList.allSize}}
  190. </view>
  191. <image src="../../static/img/icon_allorder.png" mode="" class="orderLineImg"></image>
  192. </view>
  193. <view class="orderLineTxt">全部</view>
  194. </view> -->
  195. </view>
  196. </view>
  197. <view class="kbox">
  198. <view class="klineCont" v-if="carInfo">
  199. <view class="klineTitle">我的爱车</view>
  200. <view class="kline">
  201. <view class="klineRow carInfoklineRow" @click="gonavigateTo('./addCar/cailist?type=3')">
  202. <image :src="carInfo.brandLogo" mode="" class="carbrandLogo"></image>
  203. <view class="carModel KlineTxt" style="display: flex;justify-content: space-between;padding: 0 10rpx;">
  204. <span class="carInfobrand">{{carInfo.brand?carInfo.brand:''}}{{carInfo.series?carInfo.series:''}}</span>
  205. <image class="carjt" src="../../static/img2/jt1.png" mode=""></image>
  206. </view>
  207. </view>
  208. <view class="klineRow" @click="gonavigateTo('historySpend')">
  209. <image class="klineIcon" src="../../static/img2/byjl.png" mode=""></image>
  210. <view class="KlineTxt">保养记录</view>
  211. </view>
  212. <view class="klineRow" @click="gonavigateTo('checkReport')">
  213. <image class="klineIcon" src="../../static/img2/ckbg.png" mode=""></image>
  214. <view class="KlineTxt">车况报告</view>
  215. </view>
  216. <view class="klineRow" @click="gonavigateTo('../index/rescue')">
  217. <image class="klineIcon" style="width: 58rpx;height: 49rpx;padding-bottom: 2rpx;"
  218. src="../../static/img2/24.png" mode=""></image>
  219. <view class="KlineTxt">24小时救援</view>
  220. </view>
  221. </view>
  222. </view>
  223. <view class="klineCont" v-if="!carInfo" style="padding: 12rpx 16rpx;" ><!-- -->
  224. <image @click="addCar" v-if="carbg.carAddImageType!=1" :src="carbg.carAddImage" mode="" style="width: 100%;height: 148rpx;"></image>
  225. <image @click="addCar" v-else :src="carbg.carAddImageDefault" mode="" style="width: 100%;height: 148rpx;"></image>
  226. <!-- <view class="klineTitle">我的爱车</view>
  227. <view class="addCarBox">
  228. <view class="addCar">
  229. <view class="addCarLeft">
  230. <view class="addCarTxt1">开车请注意 安途生来帮您</view>
  231. <view class="carBq">
  232. <view class="carBqLine">
  233. <image src="../../static/img2/carDui.png" mode="" class="carDui"></image>
  234. <view class="carTitle">车况报告</view>
  235. </view>
  236. <view class="carBqLine">
  237. <image src="../../static/img2/carDui.png" mode="" class="carDui"></image>
  238. <view class="carTitle">保养记录</view>
  239. </view>
  240. <view class="carBqLine">
  241. <image src="../../static/img2/carDui.png" mode="" class="carDui"></image>
  242. <view class="carTitle">快速救援</view>
  243. </view>
  244. </view>
  245. </view>
  246. <view class="addCarBtn" @click="addCar">添加爱车</view>
  247. </view>
  248. </view> -->
  249. </view>
  250. <view class="klineCont">
  251. <view class="klineTitle">更多推荐</view>
  252. <view class="kline">
  253. <view class="klineRow" v-if="showSetting.isShowService==1" @click="gonavigateTo('../user/expertServices')">
  254. <image class="klineIcon" src="../../static/img2/icon_fwzj.png" mode=""></image>
  255. <view class="KlineTxt2">服务顾问</view>
  256. </view>
  257. <view class="klineRow" @click="gonavigateTo('myBespeak')">
  258. <image class="klineIcon" src="../../static/img2/icon_yuyue.png" mode=""></image>
  259. <view class="KlineTxt2">我的预约</view>
  260. </view>
  261. <view class="klineRow" @click="gonavigateTo('../subPack/rescueOrder')">
  262. <image class="klineIcon" src="../../static/img2/jyjl.png" mode=""></image>
  263. <view class="KlineTxt2">救援记录</view>
  264. </view>
  265. <view class="klineRow" @click="gonavigateTo('../index/onlineBooking')">
  266. <image class="klineIcon" src="../../static/img2/clsp.png" mode=""></image>
  267. <view class="KlineTxt2">车辆适配</view>
  268. </view>
  269. <view class="klineRow" @click="gonavigateTo('../subPack/depositList')">
  270. <image class="klineIcon" src="../../static/img2/icon_jydd.png" mode=""></image>
  271. <view class="KlineTxt2">我的寄存</view>
  272. </view>
  273. </view>
  274. </view>
  275. <view class="klineCont">
  276. <view class="klineTitle">口碑传播</view>
  277. <view class="kline">
  278. <button open-type="share" class="klineRow">
  279. <view class="">
  280. <image class="klineIcon" src="../../static/img2/fenx.png" mode=""></image>
  281. <view class="KlineTxt2">分享好友</view>
  282. </view>
  283. </button>
  284. <view class="klineRow" @click="gonavigateTo('../subPack/luckList')" v-if="numList.shopSettings.luckdrawDisabled">
  285. <image class="klineIcon" src="../../static/img2/hdjp.png" mode=""></image>
  286. <view class="KlineTxt2">活动奖品</view>
  287. </view>
  288. <view class="klineRow" @click="gonavigateTo('../referral/referral')" v-if="numList.customerInfo.rebateState==1&&numList.shopSettings.introductionDisabled">
  289. <image class="klineIcon" src="../../static/img2/kehuzjs.png" mode=""></image>
  290. <view class="KlineTxt2">客户转介绍</view>
  291. </view>
  292. <view class="klineRow" @click="gonavigateTo('../partner/partner')" v-if="numList.customerInfo.pState==1&&numList.shopSettings.partnerDisabled">
  293. <image class="klineIcon" src="../../static/img2/chezhu.png" mode=""></image>
  294. <view class="KlineTxt2">车主合伙人</view>
  295. </view>
  296. <view class="klineRow" @click="gonavigateTo('myAppraise')">
  297. <image class="klineIcon" src="../../static/img2/icon_pingjia.png" mode=""></image>
  298. <view class="KlineTxt2">我的评价</view>
  299. </view>
  300. <view class="klineRow" @click="gonavigateTo('../subPack/feedBack')">
  301. <image class="klineIcon" src="../../static/img2/yjfk.png" mode=""></image>
  302. <view class="KlineTxt2">建议反馈</view>
  303. </view>
  304. <view class="klineRow" @click="gomember(showSetting.memberTitle)">
  305. <image class="klineIcon" src="../../static/img2/huiyuan.png" mode=""></image>
  306. <view class="KlineTxt2">关于会员</view>
  307. </view>
  308. <view class="klineRow" @click="gonavigateaboutUS">
  309. <image class="klineIcon" src="../../static/img2/gongs.png" mode=""></image>
  310. <view class="KlineTxt2">公司介绍</view>
  311. </view>
  312. <view class="klineRow" @click="makePhoneCall(showSetting.tel)">
  313. <image class="klineIcon" src="../../static/img2/kefu.png" mode=""></image>
  314. <view class="KlineTxt2">联系客服</view>
  315. </view>
  316. </view>
  317. </view>
  318. </view>
  319. <!-- 我的 相关 -->
  320. <!-- <view class="rowBoxBg">
  321. <view class="rowBox" @click="gonavigateTo('../user/expertServices')">
  322. <view class="leftView">
  323. <image src="../../static/img/icon_me1.png" mode="" class="liftIcon"></image>
  324. <view class="rowTitle">服务专家</view>
  325. </view>
  326. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  327. </view>
  328. <view class="rowBox" @click="gonavigateTo('./addCar/cailist?type=3')">
  329. <view class="leftView">
  330. <image src="../../static/img/icon_me2.png" mode="" class="liftIcon"></image>
  331. <view class="rowTitle">我的车库</view>
  332. </view>
  333. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  334. </view>
  335. <view class="rowBox" @click="gonavigateTo('myBespeak')">
  336. <view class="leftView">
  337. <image src="../../static/img/icon_me3.png" mode="" class="liftIcon"></image>
  338. <view class="rowTitle">我的预约</view>
  339. </view>
  340. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  341. </view>
  342. <view class="rowBox" @click="gonavigateTo('historySpend')">
  343. <view class="leftView">
  344. <image src="../../static/img/icon_me4.png" mode="" class="liftIcon"></image>
  345. <view class="rowTitle">历史消费</view>
  346. </view>
  347. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  348. </view>
  349. <view class="rowBox" @click="gonavigateTo('checkReport')">
  350. <view class="leftView">
  351. <image src="../../static/img/icon_me5.png" mode="" class="liftIcon"></image>
  352. <view class="rowTitle">车检报告</view>
  353. </view>
  354. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  355. </view>
  356. <view class="rowBox" @click="gonavigateTo('../subPack/depositList')">
  357. <view class="leftView">
  358. <image src="../../static/timg/icon_jydd.png" mode="" class="liftIcon"></image>
  359. <view class="rowTitle">我的寄存</view>
  360. </view>
  361. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  362. </view>
  363. <view class="rowBox" @click="gonavigateTo('../subPack/rescueOrder')">
  364. <view class="leftView">
  365. <image src="../../static/timg/sos.png" mode="" class="liftIcon"></image>
  366. <view class="rowTitle">救援订单</view>
  367. </view>
  368. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  369. </view>
  370. <view class="rowBox" @click="gonavigateTo('../subPack/luckList')">
  371. <view class="leftView">
  372. <image src="../../static/timg/icon_jydd.png" mode="" class="liftIcon"></image>
  373. <view class="rowTitle">中奖记录</view>
  374. </view>
  375. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  376. </view>
  377. </view> -->
  378. <!-- <view class="rowBoxBg">
  379. <view class="rowBox" @click="gonavigateTo('myAppraise')">
  380. <view class="leftView">
  381. <image src="../../static/img/icon_pingjia.png" mode="" class="liftIcon"></image>
  382. <view class="rowTitle">我的评价</view>
  383. </view>
  384. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  385. </view>
  386. </view>
  387. <view class="rowBoxBg" v-if="kkshow">
  388. <view class="rowBox" @click="gonavigateTo('../partner/partner')"
  389. v-if="numList.customerInfo.pState==1&&numList.shopSettings.partnerDisabled">
  390. <view class="leftView">
  391. <image src="../../static/img/icon_hehuoren.png" mode="" class="liftIcon"></image>
  392. <view class="rowTitle">车主合伙人</view>
  393. </view>
  394. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  395. </view>
  396. <view class="rowBox" @click="gonavigateTo('../referral/referral')"
  397. v-if="numList.customerInfo.rebateState==1&&numList.shopSettings.introductionDisabled">
  398. <view class="leftView">
  399. <image src="../../static/img/icon_kehuzhuanjieshao.png" mode="" class="liftIcon"></image>
  400. <view class="rowTitle">客户转介绍</view>
  401. </view>
  402. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  403. </view>
  404. </view> -->
  405. <!-- <view class="rowBoxBg">
  406. <view class="rowBox" v-if="showSetting.isShowTel">
  407. <view class="leftView">
  408. <image src="../../static/timg/icon_qingchu.png" mode="" class="liftIcon"></image>
  409. <view class="rowTitle">{{showSetting.telTitle}}</view>
  410. </view>
  411. <view class="rowRight" style="color:#666666;" @click="makePhoneCall(showSetting.tel)">{{showSetting.tel}}</view>
  412. </view>
  413. <view class="rowBox" v-if="showSetting.isShowMember" @click="gomember(showSetting.memberTitle)">
  414. <view class="leftView">
  415. <image src="../../static/timg/icon_yijian.png" mode="" class="liftIcon"></image>
  416. <view class="rowTitle">{{showSetting.memberTitle}}</view>
  417. </view>
  418. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  419. </view>
  420. <view class="rowBox" v-if="showSetting.isShowAbout" @click="gonavigateaboutUS">
  421. <view class="leftView">
  422. <image src="../../static/timg/icon_fenxiang.png" mode="" class="liftIcon"></image>
  423. <view class="rowTitle">{{showSetting.aboutTitle}}</view>
  424. </view>
  425. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  426. </view>
  427. </view> -->
  428. <!-- <view class="rowBoxBg">
  429. <button open-type="share" class="rowBox">
  430. <view class="leftView">
  431. <image src="../../static/img/icon_me6.png" mode="" class="liftIcon"></image>
  432. <view class="rowTitle">分享给好友</view>
  433. </view>
  434. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  435. </button>
  436. <view class="rowBox" @click="gonavigateTo('feedBack')">
  437. <view class="leftView">
  438. <image src="../../static/img/icon_me7.png" mode="" class="liftIcon"></image>
  439. <view class="rowTitle">意见反馈</view>
  440. </view>
  441. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  442. </view> -->
  443. <!-- <view class="rowBox" @click="gonavigateTo('../report/working?id=56D5F8C1-9F11-40BA-8937-B4AABD4666B5')">
  444. <view class="leftView">
  445. <image src="../../static/img/icon_kehuzhuanjieshao.png" mode="" class="liftIcon"></image>
  446. <view class="rowTitle">施工报告</view>
  447. </view> -->
  448. <!-- <view class="rowBox" @click="gonavigateTo('../report/complete?id=278569FB-6F21-47AD-8B66-D62D2EA6981D')">
  449. <view class="leftView">
  450. <image src="../../static/img/icon_kehuzhuanjieshao.png" mode="" class="liftIcon"></image>
  451. <view class="rowTitle">完工报告</view>
  452. </view>
  453. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  454. </view>
  455. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  456. </view> -->
  457. <!-- 先隐藏 -->
  458. <!-- <view class="rowBox" @click="gonavigateTo('')">
  459. <view class="leftView">
  460. <image src="../../static/img/icon_me8.png" mode="" class="liftIcon"></image>
  461. <view class="rowTitle">清除缓存</view>
  462. </view>
  463. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  464. </view> -->
  465. <!-- </view> -->
  466. <view class="rowBoxBg">
  467. <!-- <view class="exit2" @click="clearStorage">清除缓存</view> -->
  468. <view class="exit2" @click="exit">切换账号</view>
  469. <view class="exit" @click="exit2">退出登录</view>
  470. </view>
  471. <view class="releaseVersion">版本号:{{release_version}}</view>
  472. <!-- <view class="signOut" @click="signOut">退出登录</view> -->
  473. <!-- 手机号授权 -->
  474. <view class="authorizBox" v-if="authorizShow" @click="authorizShowHide">
  475. <view class="authorizCont" @click.stop="">
  476. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  477. <view class="authorizMs">未注册的手机号登录后将自动创会员账号,如果您不同意授权获取手机号,会影响您使用我们的产品和服务。</view>
  478. <view class="sqLine">
  479. <view class="sqRefuse" @click="authorizShowHide">拒绝</view>
  480. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  481. </view>
  482. </view>
  483. <!-- <view style="text-align: center;padding-top: 56rpx;">
  484. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  485. </view> -->
  486. </view>
  487. <!-- <image :src="qrimg" mode=""></image> -->
  488. <view class="qrBox" v-if="qrSHow">
  489. <view class="qrimgBox">
  490. <view class="qrTitle">微信绑定
  491. <image src="../../static/timg/chahao.png" mode="" class="qrimgchahao" @click="qrclose"></image>
  492. </view>
  493. <view class="qrms">扫描/长按下方二维码进行绑定</view>
  494. <view class="qrms2">绑定后可接收微信消息通知</view>
  495. <view style="text-align: center;padding-top: 30rpx;">
  496. <image :src="qrimg" mode="" class="qrimg" :show-menu-by-longpress='true'></image>
  497. </view>
  498. <view class="qrBtn" @click="qrclose">我知道了</view>
  499. </view>
  500. </view>
  501. </view>
  502. </template>
  503. <script>
  504. export default {
  505. data() {
  506. return {
  507. userInfo: '',
  508. shopData: '',
  509. numList: '',
  510. uid: '',
  511. headImg: '',
  512. location: {
  513. lng: '',
  514. lat: '',
  515. },
  516. authorizShow: false,
  517. code: '',
  518. wxOpenData: '',
  519. nickName: '',
  520. phone: '',
  521. ext: '',
  522. themeColor: '',
  523. release_version: '',
  524. qrimg:'',
  525. qrSHow:false,
  526. kkshow:false,
  527. duration:500,
  528. interval:3000,
  529. showSetting:'',
  530. f2csystemlist:'',
  531. exitNum:'',
  532. f2cIndex:'',
  533. customerName:'',
  534. carInfo:'',
  535. carbg:'',
  536. }
  537. },
  538. onLoad(opt) {
  539. this.ext = this.$common.getExtStoreId();
  540. this.themeColor = uni.getStorageSync("themeColor");
  541. console.log("themeColor=="+this.themeColor)
  542. if (this.themeColor) {
  543. if (this.themeColor == '6F2BE8') {
  544. var backgroundImage = '/static/tabimg/me6F2BE8.png'
  545. }
  546. if (this.themeColor == '1677FF') {
  547. var backgroundImage = '/static/tabimg/me1677FF.png'
  548. }
  549. if (this.themeColor == 'FF4F00') {
  550. var backgroundImage = '/static/tabimg/meFF4F00.png'
  551. }
  552. if (this.themeColor == 'EC0F0A') {
  553. var backgroundImage = '/static/tabimg/me1.png'
  554. }
  555. /* uni.setTabBarStyle({
  556. // color: '#EC0F0A',
  557. selectedColor: '#222222',
  558. }) */
  559. /* uni.setTabBarItem({
  560. index: 3,
  561. text: '我的',
  562. selectedIconPath: backgroundImage
  563. }) */
  564. }
  565. /* uni.setNavigationBarColor({
  566. frontColor: "#000000",
  567. backgroundColor: '#' + this.themeColor
  568. }) */
  569. this.getVersionInfo()
  570. // const accountInfo = wx.getAccountInfoSync();
  571. // var version_number = accountInfo.miniProgram.version;
  572. // console.log(version_number)
  573. this.carbg=uni.getStorageSync("carbg")
  574. },
  575. onShow() {
  576. const wxOpenData = this.$store.state.wxOpenData;
  577. this.wxOpenData = wxOpenData
  578. console.log("onshowuser")
  579. this.userInfo = this.$store.state.userInfo;
  580. console.log(this.userInfo)
  581. if (this.userInfo) {
  582. this.queryMyDetail();
  583. this.getCarList();
  584. } else {
  585. //console.log("授权")
  586. this.exitNum=this.$store.state.exitNum;
  587. if(this.exitNum!=1){
  588. this.authorizShow = true;
  589. }else{
  590. this.$common.automaticlogin().then(val => {
  591. this.userInfo=this.$store.state.userInfo;
  592. this.wxOpenData=this.$store.state.wxOpenData;
  593. this.exitNum=''
  594. this.$store.commit('mutationsexitNum', '')
  595. if (this.userInfo) {
  596. this.queryMyDetail();
  597. }
  598. if(!this.userInfo){
  599. //this.authorizShow=true
  600. }
  601. })
  602. }
  603. }
  604. if (wxOpenData) {
  605. this.uid = wxOpenData.loginInfo.uid;
  606. }
  607. //this.themeColor = uni.getStorageSync("themeColor");
  608. this.carInfo=this.$store.state.carInfo;
  609. console.log(this.carInfo)
  610. },
  611. methods: {
  612. clearStorage(){
  613. uni.clearStorageSync();
  614. uni.showToast({
  615. title: '清除缓存完成',
  616. icon: 'none',
  617. duration: 3000
  618. });
  619. uni.setStorage({
  620. key: 'themeColor',
  621. data: this.themeColor,
  622. success: function () {
  623. }
  624. });
  625. },
  626. getCarList(){
  627. this.$http('opencarOwnerHome/queryDefaultCarInfo', {
  628. },'GET').then(res => {
  629. if(res.code==401){
  630. this.carInfo=''
  631. this.$store.commit('mutationscarInfo', '')
  632. }else{
  633. if(res.data&&res.data!='null'){
  634. this.carInfo = res.data
  635. }else{
  636. this.carInfo=''
  637. }
  638. this.$store.commit('mutationscarInfo', this.carInfo)
  639. }
  640. })
  641. },
  642. addCar(){
  643. uni.navigateTo({
  644. url:'../subPack/addCarCK'
  645. })
  646. },
  647. exit(){
  648. var that=this;
  649. uni.showModal({
  650. title: '提示',
  651. content: '是否切换账号',
  652. success(res) {
  653. if (res.confirm) {
  654. uni.clearStorageSync()
  655. that.$store.commit('mutationsuserInfo', '')
  656. that.$store.commit('mutationscarInfo', '')
  657. that.$http('miniApp2/sys/logout', {
  658. }, 'GET').then(res => {
  659. uni.reLaunch({
  660. url: '../index/index'
  661. });
  662. })
  663. }
  664. }
  665. });
  666. },
  667. exit2(){
  668. var that=this;
  669. uni.showModal({
  670. title: '提示',
  671. content: '是否退出登录',
  672. success(res) {
  673. if (res.confirm) {
  674. uni.clearStorageSync()
  675. that.$store.commit('mutationsuserInfo', '')
  676. that.$store.commit('mutationscarInfo', '')
  677. that.$store.commit('mutationsexitNum', '1')
  678. /* uni.reLaunch({
  679. url: '../index/index'
  680. }); */
  681. uni.switchTab({
  682. url: '../index/index'
  683. })
  684. }
  685. }
  686. });
  687. },
  688. makePhoneCall(tel){
  689. uni.makePhoneCall({
  690. phoneNumber: tel,
  691. });
  692. },
  693. seeQr(){
  694. // this.authorizShow = true;
  695. // return false;
  696. if (this.userInfo) {
  697. } else {
  698. this.authorizShow = true;
  699. return false;
  700. }
  701. uni.showLoading({
  702. title: '加载中'
  703. })
  704. this.$request.httpBinary('wxV2/createQrCode', {
  705. type:'bindWx',
  706. customerId:this.numList.customerInfo.id,
  707. unionID:this.numList.customerInfo.unionID,
  708. }, 'GET').then(res => {
  709. uni.hideLoading();
  710. this.qrimg = 'data:image/png;base64,'+uni.arrayBufferToBase64(res);
  711. this.qrSHow=true;
  712. //this.img= uni.arrayBufferToBase64(res)
  713. //console.log('list+=', this.queryShopList);
  714. })
  715. },
  716. qrclose(){
  717. this.qrSHow=false;
  718. },
  719. goShopAppraiseList() {
  720. uni.navigateTo({
  721. url: 'ShopAppraiseList?shopID=' + this.numList.shopInfo.id
  722. })
  723. },
  724. useremind(){
  725. if (this.userInfo) {
  726. uni.navigateTo({
  727. url: '../integral/integral'
  728. })
  729. } else {
  730. this.authorizShow = true;
  731. return false;
  732. }
  733. },
  734. gonavigateaboutUS(){
  735. uni.navigateTo({
  736. url: '../subPack/aboutUS?unionID='+this.numList.customerInfo.unionID
  737. })
  738. },
  739. gomember(memberTitle){
  740. uni.navigateTo({
  741. url: '../subPack/aboutUS?unionID='+this.numList.customerInfo.unionID+'&memberTitle='+memberTitle
  742. })
  743. },
  744. getVersionInfo() {
  745. this.$http('miniApp2/sys/getVersionInfov2', {
  746. appId: this.ext.appId,
  747. }, 'POST').then(res => {
  748. if( res.data){
  749. this.release_version = res.data
  750. }
  751. })
  752. },
  753. updateUserInfo() {
  754. var that = this;
  755. uni.getUserProfile({
  756. lang: 'zh_CN',
  757. desc: '登录',
  758. success: (res) => {
  759. console.log(res);
  760. that.headImg = res.userInfo.avatarUrl;
  761. that.nickName = res.userInfo.nickName;
  762. that.$http('miniApp2/sys/updateUserInfo', {
  763. nickName: res.userInfo.nickName,
  764. unionId: that.ext.unionId,
  765. headImg: res.userInfo.avatarUrl,
  766. openId: that.wxOpenData.openid
  767. }, 'POST').then(res => {
  768. })
  769. },
  770. fail: (res) => {
  771. console.log(res)
  772. }
  773. });
  774. },
  775. decryptPhoneNumber: function(e) {
  776. console.log(e);
  777. this.code = e.detail.code
  778. this.wxPhoneLogin()
  779. this.authorizShow = false;
  780. },
  781. wxPhoneLogin() {
  782. var that = this;
  783. this.$http('miniApp2/sys/wxPhoneLogin', {
  784. appId: this.ext.appId,
  785. unionId: this.ext.unionId,
  786. code: this.code,
  787. openId: this.wxOpenData.openid
  788. }, 'POST').then(res => {
  789. var data = res.data;
  790. if (data.loginInfo) {
  791. this.userInfo = data.loginInfo.openUser;
  792. this.wxOpenData = data.loginInfo;
  793. this.numList=data.loginInfo
  794. this.headImg = data.loginInfo.openUser.headImg;
  795. this.nickName = data.loginInfo.openUser.nickName;
  796. this.phone = data.loginInfo.openUser.mobilePhone;
  797. this.$store.commit('mutationswxOpenData', data)
  798. this.$store.commit('mutationsuserInfo', this.userInfo)
  799. /*setTimeout(() => {
  800. that.queryMyDetail()
  801. }, 1000); */
  802. that.queryMyDetail()
  803. if(!data.loginInfo.customerInfo.wxMiniV2OpenID){
  804. this.seeQr()
  805. }
  806. if(this.numList.customerInfo.pState==1&&this.numList.shopSettings.partnerDisabled){
  807. this.kkshow=true
  808. }
  809. if(this.numList.customerInfo.rebateState==1&&this.numList.shopSettings.introductionDisabled){
  810. this.kkshow=true
  811. }
  812. }
  813. })
  814. },
  815. map() {
  816. console.log("打开地图")
  817. var that = this;
  818. if (!that.numList.shopInfo.lat || !that.numList.shopInfo.lng) {
  819. uni.showToast({
  820. title: '该店铺未设置定位',
  821. icon: 'none',
  822. duration: 3000
  823. });
  824. } else {
  825. uni.openLocation({
  826. latitude: Number(that.numList.shopInfo.lat),
  827. longitude: Number(that.numList.shopInfo.lng),
  828. name: that.numList.shopInfo.shopName,
  829. address: that.numList.shopInfo.provinceName + that.numList.shopInfo.cityName + that.numList
  830. .shopInfo.areaName + that.numList.shopInfo.address,
  831. success: function() {
  832. console.log('success');
  833. },
  834. fail(err) {
  835. console.log(err)
  836. }
  837. });
  838. }
  839. },
  840. call() {
  841. if (this.userInfo) {
  842. } else {
  843. this.authorizShow = true;
  844. return false;
  845. }
  846. uni.makePhoneCall({
  847. phoneNumber: this.numList.shopInfo.mobilePhone
  848. });
  849. },
  850. goorder(num) {
  851. if (this.userInfo) {
  852. uni.navigateTo({
  853. url: './myOrder/myOrder?num=' + num
  854. })
  855. } else {
  856. this.authorizShow = true;
  857. return false;
  858. }
  859. },
  860. queryMyDetail() {
  861. console.log("getinfo")
  862. console.log(this.$store.state.wxOpenData)
  863. uni.showLoading({
  864. title: '加载中'
  865. })
  866. this.$http('openreservation/getInfo', {
  867. lat: this.location.lat ? this.location.lat : '',
  868. lng: this.location.lng ? this.location.lng : '',
  869. }, 'GET').then(res => {
  870. uni.hideLoading();
  871. this.numList = res.data
  872. this.headImg = res.data.openUser.headImg;
  873. this.nickName = res.data.openUser.nickName;
  874. this.customerName= res.data.customerInfo.customerName
  875. this.phone = res.data.openUser.mobilePhone;
  876. this.showSetting=res.data.showSetting
  877. this.f2csystemlist=res.data.f2csystemlist
  878. if(this.numList.customerInfo.pState==1&&this.numList.shopSettings.partnerDisabled){
  879. this.kkshow=true
  880. }
  881. if(this.numList.customerInfo.rebateState==1&&this.numList.shopSettings.introductionDisabled){
  882. this.kkshow=true
  883. }
  884. if(this.f2csystemlist.length>0){
  885. this.f2csystemlist.forEach((item,index)=>{
  886. if(item.growthState==1){
  887. this.f2cIndex=index
  888. }
  889. })
  890. }
  891. })
  892. },
  893. gonavigateTo(url) {
  894. if (this.userInfo) {
  895. uni.navigateTo({
  896. url: url
  897. })
  898. } else {
  899. this.authorizShow = true;
  900. }
  901. /* uni.navigateTo({
  902. url: url
  903. }) */
  904. },
  905. signOut() {
  906. //uni.clearStorageSync();
  907. uni.removeStorageSync('logodata');
  908. // uni.navigateTo({
  909. // url: '../login/login'
  910. // })
  911. },
  912. authorizShowHide(){
  913. this.authorizShow=false
  914. }
  915. },
  916. onShareAppMessage(res) {
  917. return {
  918. title: this.wxOpenData.miniAppName,
  919. //imageUrl:img,
  920. path: 'pages/index/index',
  921. success(res) {
  922. uni.showToast({
  923. title: '分享成功'
  924. })
  925. },
  926. fail(res) {
  927. uni.showToast({
  928. title: '分享失败',
  929. icon: 'none',
  930. duration: 3000
  931. })
  932. }
  933. }
  934. },
  935. // 下拉刷新
  936. onPullDownRefresh() {
  937. this.queryMyDetail()
  938. this.getCarList()
  939. setTimeout(function() {
  940. uni.stopPullDownRefresh();
  941. }, 1000);
  942. },
  943. }
  944. </script>
  945. <style scoped>
  946. .addCarBox{
  947. padding: 12rpx;
  948. }
  949. .addCar{
  950. background: #F8F8F8;
  951. border-radius: 9rpx;
  952. display: flex;justify-content: space-between;
  953. padding: 30rpx 20rpx;
  954. }
  955. .carTitle{
  956. padding-left: 6rpx;
  957. }
  958. .addCarBtn{
  959. width: 145rpx;text-align: center;
  960. height: 53rpx;line-height: 53rpx;
  961. background: #FFDD00;
  962. border-radius: 27rpx;
  963. font-size: 24rpx;
  964. color: #0B0B0B;
  965. margin-top: 15rpx;
  966. }
  967. .addCarTxt1{
  968. font-size: 30rpx;
  969. color: #8B8B8B;
  970. line-height: 36rpx;
  971. }
  972. .carBq{
  973. display: flex;
  974. border-radius: 10rpx;
  975. margin-top: 15rpx;
  976. }
  977. .carDui{
  978. width: 24rpx;height: 24rpx;
  979. }
  980. .carBqLine{
  981. display: flex;
  982. padding-right: 23rpx;
  983. font-size: 22rpx;
  984. color: #A26D4F;line-height: 26rpx;
  985. }
  986. .kbox{
  987. padding:0 24rpx;
  988. }
  989. .klineCont{
  990. background: #FFFFFF;
  991. border-radius: 16rpx;
  992. margin-top: 20rpx;
  993. }
  994. .klineRow{
  995. width: 25%;font-weight: 400;
  996. font-size: 24rpx;
  997. color: #0B0B0B;text-align: center;
  998. margin-top: 30rpx;
  999. }
  1000. .KlineTxt{
  1001. padding-top: 10rpx;
  1002. }
  1003. .KlineTxt2{
  1004. padding-top: 10rpx;font-size: 22rpx;
  1005. }
  1006. .carInfoklineRow{
  1007. width: calc(25% - 1px);
  1008. border-right: 1px dashed #DDDDDD;
  1009. }
  1010. .carbrandLogo{
  1011. width: 50rpx;height: 50rpx; margin-bottom: 8rpx;
  1012. }
  1013. .kline{
  1014. display: flex;
  1015. padding-bottom: 30rpx;
  1016. flex-wrap: wrap;
  1017. }
  1018. .klineTitle{
  1019. font-weight: 500;
  1020. font-size: 30rpx;
  1021. color: #0B0B0B;
  1022. line-height: 42rpx;
  1023. padding-top: 20rpx;
  1024. padding-left: 24rpx;
  1025. }
  1026. .klineIcon{
  1027. width: 50rpx;height: 50rpx;
  1028. }
  1029. .exit{
  1030. background: #FFFFFF;
  1031. line-height: 90rpx;
  1032. font-size: 26rpx;
  1033. font-family: PingFang;
  1034. font-weight: 500;
  1035. color: #ED2323;
  1036. text-align: center;
  1037. }
  1038. .exit2{
  1039. background: #FFFFFF;
  1040. line-height: 90rpx;
  1041. font-size: 26rpx;
  1042. font-family: PingFang;
  1043. font-weight: 500;
  1044. color: #3C3C3C;
  1045. text-align: center;
  1046. border-bottom: 1px solid #eeeeee;
  1047. /* margin-top: 20rpx; */
  1048. }
  1049. .cardNameIcon{
  1050. width: 30rpx;height: 30rpx;
  1051. }
  1052. .cardNameIcon2{
  1053. width: 7rpx;height: 13rpx;
  1054. margin-left: 3rpx;margin-top: 9rpx;
  1055. }
  1056. .cardNameTb{
  1057. padding-left: 4rpx;
  1058. }
  1059. .cardNameBOx{
  1060. background: linear-gradient(327deg, #FEA917 0%, #FFC635 100%);
  1061. border-radius: 16rpx;display: flex;
  1062. line-height: 30rpx;font-weight: 500;
  1063. color: #764700;font-size: 22rpx;
  1064. margin-left: 15rpx;
  1065. padding-right: 10rpx;
  1066. height: 30rpx;
  1067. }
  1068. .remindBox{
  1069. width: 596rpx;
  1070. background: #FFF8EF;
  1071. border-radius: 8rpx;
  1072. display: flex;justify-content: space-between;
  1073. margin: 0 auto;font-size: 22rpx;
  1074. padding: 10rpx 20rpx;
  1075. color: #666666;
  1076. line-height: 30rpx;
  1077. }
  1078. .useremind{
  1079. font-weight: 500;
  1080. color: #A26D4F;
  1081. }
  1082. .swiper2{
  1083. min-height: 510rpx;
  1084. /* margin-top: -100rpx; */
  1085. }
  1086. .marginTop{
  1087. margin-top: -160rpx;
  1088. }
  1089. .marginTop2{
  1090. margin-top: -120rpx;
  1091. }
  1092. .cardBox{
  1093. width: 702rpx;
  1094. min-height: 510rpx;
  1095. background: #FFFFFF;
  1096. border-radius: 22rpx;
  1097. margin-left:24rpx ;
  1098. overflow: hidden;
  1099. }
  1100. .cardCont{
  1101. display: flex;
  1102. flex-wrap: wrap;
  1103. }
  1104. .cardLineImgBox{
  1105. width: 84rpx;
  1106. height: 84rpx;
  1107. /* background: linear-gradient(150deg, #222439 0%, #1A2027 100%); */
  1108. border-radius: 50%;
  1109. margin: 0 auto;
  1110. margin-top: 30rpx;
  1111. }
  1112. .cardLineImg{
  1113. width: 84rpx;
  1114. height: 84rpx;
  1115. border-radius: 50%;
  1116. }
  1117. .cardlineTitle{
  1118. color: #3C3C3C;font-size: 24rpx;
  1119. line-height: 33rpx;padding-top: 10rpx;
  1120. overflow:hidden;
  1121. white-space: nowrap;
  1122. text-overflow: ellipsis;
  1123. -o-text-overflow:ellipsis;
  1124. }
  1125. .cardlineTitle2{
  1126. color: #999999;font-size: 24rpx;
  1127. line-height: 33rpx;padding-top: 10rpx;
  1128. overflow:hidden;
  1129. white-space: nowrap;
  1130. text-overflow: ellipsis;
  1131. -o-text-overflow:ellipsis;
  1132. }
  1133. .cardLine{
  1134. width: 25%;
  1135. text-align: center;
  1136. }
  1137. .rowRight{
  1138. color: #666666;font-size: 28rpx;padding-right: 32rpx;
  1139. }
  1140. .cardTOp{
  1141. height: 155rpx;
  1142. background-size: 100% 100%;
  1143. position: relative;
  1144. }
  1145. .vipBsIcon{
  1146. position: absolute;width: 112rpx;height: 33rpx;top: 0;right: 0;
  1147. }
  1148. .cardName{
  1149. font-weight: 500;font-size: 30rpx;padding-top: 30rpx;padding-left: 30rpx;
  1150. color: #50402A;
  1151. }
  1152. .cardtimeBox{
  1153. display: flex;justify-content: space-between;
  1154. color: #786140;font-size: 24rpx;
  1155. padding-top: 20rpx;padding-left: 30rpx;padding-right: 20rpx;
  1156. }
  1157. .qrBox{
  1158. position: fixed;
  1159. width: 100vw;
  1160. height: 100vh;
  1161. background: rgba(0,0,0,0.5);
  1162. left: 0;
  1163. top: 0;
  1164. z-index: 11;
  1165. display: flex;
  1166. justify-content: center;
  1167. align-items: center;
  1168. flex-direction: column;
  1169. }
  1170. .qrimgBox{
  1171. width: 562rpx;
  1172. height: 704rpx;
  1173. background: #FFFFFF;
  1174. border-radius: 24rpx;
  1175. }
  1176. .qrTitle{
  1177. font-size: 30rpx;
  1178. font-family: PingFangSC-Medium, PingFang SC;
  1179. font-weight: 500;
  1180. color: #333333;
  1181. border-bottom: 1px solid #EEEEEE;
  1182. text-align: center;
  1183. line-height: 90rpx;
  1184. position: relative;
  1185. }
  1186. .qrimgchahao{
  1187. width: 38rpx;
  1188. height: 38rpx;
  1189. position: absolute;
  1190. top: 26rpx;
  1191. right: 20rpx;
  1192. }
  1193. .qrms{
  1194. font-weight: 400;
  1195. color: #999999;
  1196. line-height: 37rpx;
  1197. font-size: 26rpx;
  1198. padding-top: 23rpx;
  1199. text-align: center;
  1200. }
  1201. .qrms2{
  1202. font-weight: 400;
  1203. color: #999999;
  1204. line-height: 37rpx;
  1205. font-size: 26rpx;
  1206. text-align: center;
  1207. }
  1208. .qrimg{
  1209. width: 328rpx;
  1210. height: 328rpx;
  1211. }
  1212. .qrBtn{
  1213. width: 292rpx;
  1214. height: 64rpx;
  1215. background: #EC0F0A;
  1216. border-radius: 32rpx;
  1217. color: #FFFFFF;
  1218. line-height: 64rpx;
  1219. text-align: center;
  1220. margin: 0 auto;
  1221. margin-top:40rpx;
  1222. }
  1223. .releaseVersion {
  1224. font-size: 24rpx;
  1225. font-family: PingFangSC-Regular, PingFang SC;
  1226. font-weight: 400;
  1227. color: #666666;
  1228. padding-top: 10rpx;
  1229. padding-bottom: 30rpx;
  1230. text-align: center;
  1231. }
  1232. button::after {
  1233. border: none;
  1234. }
  1235. button {
  1236. position: relative;
  1237. display: block;
  1238. margin-left: 0;
  1239. margin-right: 0;
  1240. padding-left: 0px;
  1241. padding-right: 0px;
  1242. box-sizing: border-box;
  1243. // font-size: 18px;
  1244. text-align: center;
  1245. text-decoration: none;
  1246. // line-height: 1;
  1247. line-height: 1.35;
  1248. // border-radius: 5px;
  1249. -webkit-tap-highlight-color: transparent;
  1250. overflow: hidden;
  1251. color: #000000;
  1252. background-color: #fff;
  1253. height: 100%;
  1254. }
  1255. .box {
  1256. width: 100vw;
  1257. min-height: 100vh;
  1258. background: #F4F5F7;
  1259. /* padding-bottom: 60rpx; */
  1260. }
  1261. .top {
  1262. height: 300rpx;
  1263. padding: 20rpx 24rpx 0;
  1264. /* background-color: #EC0F0A; */
  1265. border-radius: 0 0 5% 5%;
  1266. }
  1267. .customerMes {
  1268. display: flex;
  1269. }
  1270. .mes {
  1271. margin-left: 20rpx;
  1272. padding-top: 14rpx;
  1273. }
  1274. .nick {
  1275. margin-bottom: 5rpx;
  1276. display: flex;
  1277. justify-content: flex-start;
  1278. align-items: center;
  1279. }
  1280. .nickName {
  1281. font-size: 36rpx;
  1282. color: #010000;
  1283. font-weight: bold;
  1284. line-height: 48rpx;
  1285. height: 48rpx;
  1286. overflow: hidden; /*内容会被修剪,并且其余内容是不可见的*/
  1287. text-overflow:ellipsis; /*显示省略符号来代表被修剪的文本。*/
  1288. white-space: nowrap; /*文本不换行*/
  1289. }
  1290. .nickName2 {
  1291. font-size: 30rpx;
  1292. color: #010000;
  1293. font-weight: bold;
  1294. line-height: 48rpx;
  1295. height: 48rpx;
  1296. overflow: hidden; /*内容会被修剪,并且其余内容是不可见的*/
  1297. text-overflow:ellipsis; /*显示省略符号来代表被修剪的文本。*/
  1298. white-space: nowrap; /*文本不换行*/
  1299. }
  1300. .grade {
  1301. margin-left: 15rpx;
  1302. font-size: 22rpx;
  1303. color: #FFFFFF;
  1304. padding: 0rpx 10rpx;
  1305. border: 1px solid #FFFFFF;
  1306. border-radius: 18rpx;
  1307. height: 26rpx;
  1308. line-height: 28rpx;
  1309. }
  1310. .phone {
  1311. font-size: 24rpx;
  1312. color: #010000;
  1313. }
  1314. .padingBox{
  1315. padding: 0 20rpx;
  1316. }
  1317. .headerBox {
  1318. padding: 26rpx 24rpx;
  1319. display: flex;
  1320. justify-content: center;
  1321. /* justify-content: space-around; */
  1322. }
  1323. .headerBox2{
  1324. background: #FFFFFF;
  1325. border-radius: 16rpx;
  1326. margin-bottom: 20rpx;
  1327. margin-top: 20rpx;
  1328. }
  1329. .quan {
  1330. display: flex;
  1331. flex-direction: column;
  1332. align-items: center;
  1333. width: 33%;
  1334. }
  1335. .numStr {
  1336. font-size: 34rpx;
  1337. font-weight: bold;
  1338. color: #9A9A9A;
  1339. line-height: 45rpx;
  1340. }
  1341. .numStr2{
  1342. font-size: 40rpx;
  1343. font-weight: 500;
  1344. color: #FFFFFF;
  1345. line-height: 60rpx;
  1346. }
  1347. .nameStr {
  1348. font-size: 24rpx;
  1349. color: #222222;
  1350. }
  1351. .orderBox {
  1352. margin: 0rpx 24rpx;
  1353. background: #FFFFFF;
  1354. padding: 30rpx 20rpx;
  1355. border-radius: 10rpx;
  1356. margin-top: 20rpx;
  1357. }
  1358. .orderTitle {
  1359. font-weight: 500;
  1360. font-size: 30rpx;
  1361. color: #0B0B0B;
  1362. display: flex;justify-content: space-between;
  1363. }
  1364. .allOrder{
  1365. font-weight: 400;
  1366. font-size: 22rpx;
  1367. color: #939393;
  1368. display: flex;
  1369. }
  1370. .allOrderIcon{
  1371. width: 20rpx;height: 20rpx;margin-top: 6rpx;
  1372. }
  1373. .orderAll {
  1374. display: flex;
  1375. justify-content: space-between;
  1376. align-items: center;
  1377. }
  1378. .orderLine {
  1379. width: 25%;
  1380. text-align: center;
  1381. }
  1382. .orderLineImg {
  1383. width: 60rpx;
  1384. height: 60rpx;
  1385. }
  1386. .orderLineTxt {
  1387. font-size: 24rpx;
  1388. color: #333333;
  1389. }
  1390. .orderImgBox {
  1391. text-align: center;
  1392. position: relative;
  1393. }
  1394. .orderLIneBox {
  1395. display: flex;
  1396. justify-content: space-between;
  1397. padding-top: 30rpx;
  1398. }
  1399. .orderNum {
  1400. height: 26rpx;
  1401. line-height: 26rpx;
  1402. background: #EC0F0A;
  1403. padding: 0 8rpx;
  1404. border-radius: 13rpx;
  1405. color: #FFFFFF;
  1406. font-size: 20rpx;
  1407. position: absolute;
  1408. top: -10rpx;
  1409. left: 90rpx;
  1410. z-index: 11;
  1411. }
  1412. .big_rightArrow {
  1413. margin-right: 20rpx;
  1414. width: 30rpx;
  1415. height: 30rpx;
  1416. }
  1417. .rowBoxBg {
  1418. margin: 20rpx 24rpx;
  1419. background: #FFFFFF;
  1420. border-radius: 16rpx;
  1421. overflow: hidden;
  1422. }
  1423. .rowBox {
  1424. display: flex;
  1425. justify-content: space-between;
  1426. background: #FFFFFF;
  1427. padding: 35rpx 0rpx;
  1428. border-radius: 10rpx;
  1429. align-items: center;
  1430. }
  1431. .leftView {
  1432. display: flex;
  1433. align-items: center;
  1434. }
  1435. .rightView {
  1436. display: flex;
  1437. align-items: center;
  1438. }
  1439. .liftIcon {
  1440. width: 34rpx;
  1441. height: 34rpx;
  1442. margin: 0rpx 20rpx;
  1443. }
  1444. .rowTitle {
  1445. color: #3C3C3C;
  1446. font-size: 28rpx;
  1447. }
  1448. .signOut {
  1449. width: 702rpx;
  1450. height: 98rpx;
  1451. background: #FFFFFF;
  1452. border-radius: 10rpx;
  1453. font-size: 30rpx;
  1454. color: #FF3B30;
  1455. line-height: 98rpx;
  1456. text-align: center;
  1457. margin: 40rpx 24rpx;
  1458. }
  1459. .shopBox {
  1460. padding: 20rpx;
  1461. margin: 20rpx 24rpx;
  1462. background-color: #FFFFFF;
  1463. border-radius: 10rpx;
  1464. }
  1465. .shopCont {
  1466. display: flex;
  1467. justify-content: space-between;
  1468. align-items: center;
  1469. }
  1470. .shopName {
  1471. font-size: 30rpx;
  1472. font-weight: bold;
  1473. color: #3C3C3C;
  1474. line-height: 42rpx;
  1475. }
  1476. .appraiseBox {
  1477. padding: 5rpx 0;
  1478. /* height: 62rpx;
  1479. */
  1480. display: flex;
  1481. align-items: center;
  1482. }
  1483. .appraise {
  1484. color: #EC0F0A;
  1485. font-size: 38rpx;
  1486. font-weight: bold;
  1487. }
  1488. .line {
  1489. margin: 0 12rpx;
  1490. width: 1rpx;
  1491. height: 30rpx;
  1492. }
  1493. .appraiseCount {
  1494. font-size: 24rpx;
  1495. font-weight: 400;
  1496. color: #666666;
  1497. flex-grow: 1;
  1498. margin-top: 10rpx;
  1499. }
  1500. .rightArrow {
  1501. width: 7rpx;
  1502. height: 15rpx;
  1503. margin-left: 16rpx;
  1504. }
  1505. .shopRightBox {
  1506. display: flex;
  1507. justify-content: space-between;
  1508. }
  1509. .address {
  1510. display: flex;
  1511. justify-content: space-between;
  1512. align-items: center;
  1513. }
  1514. .Address,
  1515. .shopTime,
  1516. .distance {
  1517. color: #999999;
  1518. font-size: 24rpx;
  1519. /* 隐藏文字显示 ...不换行 */
  1520. overflow: hidden;
  1521. text-overflow: ellipsis;
  1522. white-space: nowrap;
  1523. }
  1524. .shopRightBox {}
  1525. .shopRightImg {
  1526. width: 44rpx;
  1527. height: 45rpx;
  1528. }
  1529. .authorizBox {
  1530. width: 100vw;
  1531. height: 100vh;
  1532. background: rgba(0, 0, 0, 0.5);
  1533. position: fixed;
  1534. top: 0;
  1535. left: 0;
  1536. z-index: 11;
  1537. }
  1538. .authorizCont {
  1539. margin-top: 30vh;
  1540. width: 564rpx;
  1541. height: 408rpx;
  1542. background: #FFFFFF;
  1543. border-radius: 24rpx;
  1544. margin-left: 93rpx;
  1545. position: relative;
  1546. }
  1547. .authorizCloseImg {
  1548. width: 62rpx;
  1549. height: 62rpx;
  1550. }
  1551. .sqLogoBox {
  1552. width: 180rpx;
  1553. height: 180rpx;
  1554. background: #FFFFFF;
  1555. border-radius: 90rpx;
  1556. text-align: center;
  1557. position: absolute;
  1558. top: -50rpx;
  1559. left: 192rpx;
  1560. }
  1561. .authorizName {
  1562. color: #333333;
  1563. line-height: 42rpx;
  1564. font-size: 30rpx;
  1565. text-align: center;
  1566. padding-top: 58rpx;
  1567. }
  1568. .authorizMs {
  1569. color: #999999;
  1570. line-height: 36rpx;
  1571. font-size: 26rpx;
  1572. width: 452rpx;
  1573. padding-top: 24rpx;
  1574. text-align: center;
  1575. margin-left: 56rpx;
  1576. }
  1577. .authorizContbutton{
  1578. width: 210rpx;
  1579. height: 66rpx;
  1580. background: #EC0F0A;
  1581. border-radius: 44rpx;
  1582. line-height: 66rpx;
  1583. text-align: center;
  1584. font-size:30rpx;
  1585. color: #FFFFFF;
  1586. margin-right: 40rpx;
  1587. }
  1588. .sqRefuse{
  1589. width: 210rpx;
  1590. height: 66rpx;
  1591. border: 1px solid #eaeaea;
  1592. line-height: 66rpx;
  1593. border-radius: 36rpx;
  1594. text-align: center;
  1595. font-size:30rpx;
  1596. margin-left:40rpx;
  1597. color: #999999;
  1598. }
  1599. .sqLine{
  1600. margin-top: 62rpx;
  1601. display: flex;
  1602. justify-content: space-between;
  1603. }
  1604. .test{
  1605. }
  1606. .carjt{
  1607. width: 10rpx;height: 20rpx;
  1608. margin-top: 8rpx;
  1609. }
  1610. .carInfobrand{
  1611. text-align: center;
  1612. width: 150rpx;
  1613. white-space: nowrap; /* 确保文本在一行内显示 */
  1614. overflow: hidden; /* 超出容器部分隐藏 */
  1615. text-overflow: ellipsis;
  1616. }
  1617. .hjtIcon{
  1618. width: 10rpx;height: 20rpx;
  1619. margin-top: 8rpx;
  1620. margin-left: 6rpx;
  1621. }
  1622. .phone{
  1623. display: flex;
  1624. }
  1625. </style>