user.vue 26 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054
  1. <template>
  2. <view class="box">
  3. <view class="top" :style="{background:'#'+themeColor}">
  4. <view class="customerMes">
  5. <image @click="updateUserInfo" v-if="headImg" :src="headImg" mode=""
  6. style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
  7. <image @click="updateUserInfo" v-else src="../../static/img/icon_me.png" mode=""
  8. style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
  9. <view class="mes">
  10. <view class="nick">
  11. <view class="nickName" v-if="nickName">{{nickName}}</view>
  12. <view class="grade" v-if="numList.levelName">{{numList.levelName}}</view>
  13. </view>
  14. <view class="phone">{{phone}} <span @click="seeQr">{{numList.customerInfo.wxMiniV2OpenID?' / 已绑定微信>':' / 未绑定微信>'}}</span> </view>
  15. </view>
  16. </view>
  17. <view class="headerBox">
  18. <view class="quan" @click="gonavigateTo('../index/discountCard')">
  19. <view class="numStr">{{numList.count?numList.count:0}}</view>
  20. <view class="nameStr">优惠券</view>
  21. </view>
  22. <view class="quan" @click="gonavigateTo('../integral/integral?totalIntegral='+numList.totalIntegral)">
  23. <view class="numStr">{{numList.totalIntegral?numList.totalIntegral:0}}</view>
  24. <view class="nameStr">积分</view>
  25. </view>
  26. <view class="quan" @click="gonavigateTo('../index/vipCard')">
  27. <view class="numStr">{{numList.cardNum?numList.cardNum:0}}</view>
  28. <view class="nameStr">会员卡</view>
  29. </view>
  30. </view>
  31. </view>
  32. <!-- 我的订单 -->
  33. <view class="orderBox">
  34. <view class="orderTitle">我的订单</view>
  35. <view class="orderLIneBox">
  36. <view class="orderLine" @click="goorder(1)">
  37. <view class="orderImgBox">
  38. <view class="orderNum" v-show="numList.waitPurchaseSize>0">
  39. {{numList.waitPurchaseSize>99?'99+':numList.waitPurchaseSize}}
  40. </view>
  41. <image src="../../static/img/icon_daifukuan.png" mode="" class="orderLineImg"></image>
  42. </view>
  43. <view class="orderLineTxt">待付款</view>
  44. </view>
  45. <view class="orderLine" @click="goorder(2)">
  46. <view class="orderImgBox">
  47. <view class="orderNum" v-show="numList.waitServiceSize>0">
  48. {{numList.waitServiceSize>99?'99+':numList.waitServiceSize}}
  49. </view>
  50. <image src="../../static/img/icon_daifuwu.png" mode="" class="orderLineImg"></image>
  51. </view>
  52. <view class="orderLineTxt">待服务</view>
  53. </view>
  54. <view class="orderLine" @click="goorder(3)">
  55. <view class="orderImgBox">
  56. <view class="orderNum" v-show="numList.hasOverSize>0">
  57. {{numList.hasOverSize>99?'99+':numList.hasOverSize}}
  58. </view>
  59. <image src="../../static/img/icon_yiwancheng.png" mode="" class="orderLineImg"></image>
  60. </view>
  61. <view class="orderLineTxt">已完成</view>
  62. </view>
  63. <view class="orderLine" @click="goorder(0)">
  64. <view class="orderImgBox">
  65. <view class="orderNum" v-show="numList.allSize>0">{{numList.allSize>99?'99+':numList.allSize}}
  66. </view>
  67. <image src="../../static/img/icon_allorder.png" mode="" class="orderLineImg"></image>
  68. </view>
  69. <view class="orderLineTxt">全部</view>
  70. </view>
  71. </view>
  72. </view>
  73. <!-- 店铺信息 -->
  74. <view class="shopBox" v-if="userInfo">
  75. <view class="shopCont">
  76. <view class="shopName">{{numList.shopInfo.shopName}}</view>
  77. <view class="shopRightBox">
  78. <image src="../../static/img/icon_ditu.png" mode="" class="shopRightImg"
  79. style="margin-right: 67rpx;" @click="map"></image>
  80. <image src="../../static/img/icon_phone.png" mode="" class="shopRightImg" @click="call"></image>
  81. </view>
  82. </view>
  83. <view v-if="numList.isShowScore == 1 && numList.isShowEvaluate == 1" class="appraiseBox">
  84. <view v-if="numList.isShowScore == 1 && numList.shopInfo.miniV2ShopScore" class="appraise">
  85. {{numList.shopInfo.miniV2ShopScore}}
  86. <span style='font-size: 26rpx; margin-left: 3rpx;'>分</span>
  87. </view>
  88. <view v-if="numList.isShowScore == 1 && !numList.shopInfo.miniV2ShopScore" class="appraise"
  89. style='font-size: 26rpx;'>暂无评分</span>
  90. </view>
  91. <view v-if="numList.isShowScore == 1" class="line"></view>
  92. <view @click="goShopAppraiseList()" v-if="numList.isShowEvaluate == 1 && numList.evaluateCount "
  93. class="appraiseCount">评价数
  94. {{numList.evaluateCount}}
  95. <image v-if="numList.isShowEvaluate == 1" class="rightArrow"
  96. src="../../static/timg/icon_arrow_right.png" mode=""></image>
  97. </view>
  98. <view v-if="numList.isShowEvaluate == 1 && !numList.evaluateCount " class="appraiseCount">暂无评价
  99. </view>
  100. </view>
  101. <view class="shopTime" v-if="numList.shopInfo.startTime && numList.shopInfo.endTime">
  102. {{numList.shopInfo.startTime}}-{{numList.shopInfo.endTime}}
  103. </view>
  104. <view class="address">
  105. <view class="Address">
  106. {{numList.shopInfo.provinceName?numList.shopInfo.provinceName:''}}
  107. {{numList.shopInfo.cityName?numList.shopInfo.cityName:''}}
  108. {{numList.shopInfo.areaName?numList.shopInfo.areaName:''}}
  109. {{numList.shopInfo.address?numList.shopInfo.address:''}}
  110. </view>
  111. <!-- <view class="distance" v-if="numList.shopInfo.distance&&numList.shopInfo.distance!= '0.00'">{{numList.shopInfo.distance}}km</view> -->
  112. </view>
  113. </view>
  114. <!-- 我的 相关 -->
  115. <view class="rowBoxBg">
  116. <view class="rowBox" @click="gonavigateTo('../user/expertServices')">
  117. <view class="leftView">
  118. <image src="../../static/img/icon_me1.png" mode="" class="liftIcon"></image>
  119. <view class="rowTitle">服务专家</view>
  120. </view>
  121. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  122. </view>
  123. <view class="rowBox" @click="gonavigateTo('./addCar/cailist?type=3')">
  124. <view class="leftView">
  125. <image src="../../static/img/icon_me2.png" mode="" class="liftIcon"></image>
  126. <view class="rowTitle">我的车库</view>
  127. </view>
  128. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  129. </view>
  130. <view class="rowBox" @click="gonavigateTo('myBespeak')">
  131. <view class="leftView">
  132. <image src="../../static/img/icon_me3.png" mode="" class="liftIcon"></image>
  133. <view class="rowTitle">我的预约</view>
  134. </view>
  135. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  136. </view>
  137. <view class="rowBox" @click="gonavigateTo('historySpend')">
  138. <view class="leftView">
  139. <image src="../../static/img/icon_me4.png" mode="" class="liftIcon"></image>
  140. <view class="rowTitle">历史消费</view>
  141. </view>
  142. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  143. </view>
  144. <view class="rowBox" @click="gonavigateTo('checkReport')">
  145. <view class="leftView">
  146. <image src="../../static/img/icon_me5.png" mode="" class="liftIcon"></image>
  147. <view class="rowTitle">车检报告</view>
  148. </view>
  149. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  150. </view>
  151. <view class="rowBox" @click="gonavigateTo('myAppraise')">
  152. <view class="leftView">
  153. <image src="../../static/img/icon_pingjia.png" mode="" class="liftIcon"></image>
  154. <view class="rowTitle">我的评价</view>
  155. </view>
  156. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  157. </view>
  158. <button open-type="share" class="rowBox">
  159. <view class="leftView">
  160. <image src="../../static/img/icon_me6.png" mode="" class="liftIcon"></image>
  161. <view class="rowTitle">分享给好友</view>
  162. </view>
  163. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  164. </button>
  165. <view class="rowBox" @click="gonavigateTo('feedBack')">
  166. <view class="leftView">
  167. <image src="../../static/img/icon_me7.png" mode="" class="liftIcon"></image>
  168. <view class="rowTitle">意见反馈</view>
  169. </view>
  170. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  171. </view>
  172. <view class="rowBox" @click="gonavigateTo('../partner/partner')"
  173. v-if="numList.customerInfo.pState==1&&numList.shopSettings.partnerDisabled">
  174. <view class="leftView">
  175. <image src="../../static/img/icon_hehuoren.png" mode="" class="liftIcon"></image>
  176. <view class="rowTitle">车主合伙人</view>
  177. </view>
  178. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  179. </view>
  180. <view class="rowBox" @click="gonavigateTo('../referral/referral')"
  181. v-if="numList.customerInfo.rebateState==1&&numList.shopSettings.introductionDisabled">
  182. <view class="leftView">
  183. <image src="../../static/img/icon_kehuzhuanjieshao.png" mode="" class="liftIcon"></image>
  184. <view class="rowTitle">客户转介绍</view>
  185. </view>
  186. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  187. </view>
  188. <!-- <view class="rowBox" @click="gonavigateTo('../report/complete?id=278569FB-6F21-47AD-8B66-D62D2EA6981D')">
  189. <view class="leftView">
  190. <image src="../../static/img/icon_kehuzhuanjieshao.png" mode="" class="liftIcon"></image>
  191. <view class="rowTitle">完工报告</view>
  192. </view>
  193. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  194. </view>
  195. <view class="rowBox" @click="gonavigateTo('../report/working?id=56D5F8C1-9F11-40BA-8937-B4AABD4666B5')">
  196. <view class="leftView">
  197. <image src="../../static/img/icon_kehuzhuanjieshao.png" mode="" class="liftIcon"></image>
  198. <view class="rowTitle">施工报告</view>
  199. </view>
  200. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  201. </view> -->
  202. <!-- 先隐藏 -->
  203. <!-- <view class="rowBox" @click="gonavigateTo('')">
  204. <view class="leftView">
  205. <image src="../../static/img/icon_me8.png" mode="" class="liftIcon"></image>
  206. <view class="rowTitle">清除缓存</view>
  207. </view>
  208. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  209. </view> -->
  210. </view>
  211. <view class="releaseVersion">版本号:{{release_version}}</view>
  212. <!-- <view class="signOut" @click="signOut">退出登录</view> -->
  213. <!-- 手机号授权 -->
  214. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  215. <view class="authorizCont" @click.stop="">
  216. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  217. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  218. <button class="authorizContbutton" type="default" open-type="getPhoneNumber"
  219. @getphonenumber="decryptPhoneNumber">授权</button>
  220. </view>
  221. <view style="text-align: center;padding-top: 56rpx;">
  222. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  223. </view>
  224. </view>
  225. <!-- <image :src="qrimg" mode=""></image> -->
  226. <view class="qrBox" v-if="qrSHow">
  227. <view class="qrimgBox">
  228. <view class="qrTitle">微信绑定
  229. <image src="../../static/timg/chahao.png" mode="" class="qrimgchahao" @click="qrclose"></image>
  230. </view>
  231. <view class="qrms">扫描/长按下方二维码进行绑定</view>
  232. <view class="qrms2">绑定后可接收微信消息通知</view>
  233. <view style="text-align: center;padding-top: 30rpx;">
  234. <image :src="qrimg" mode="" class="qrimg" :show-menu-by-longpress='true'></image>
  235. </view>
  236. <view class="qrBtn" @click="qrclose">我知道了</view>
  237. </view>
  238. </view>
  239. </view>
  240. </template>
  241. <script>
  242. export default {
  243. data() {
  244. return {
  245. userInfo: '',
  246. shopData: '',
  247. numList: '',
  248. uid: '',
  249. headImg: '',
  250. location: {
  251. lng: '',
  252. lat: '',
  253. },
  254. authorizShow: false,
  255. code: '',
  256. wxOpenData: '',
  257. nickName: '',
  258. phone: '',
  259. ext: '',
  260. themeColor: '',
  261. release_version: '',
  262. qrimg:'',
  263. qrSHow:false,
  264. }
  265. },
  266. onLoad(opt) {
  267. this.ext = this.$common.getExtStoreId();
  268. this.themeColor = uni.getStorageSync("themeColor");
  269. if (this.themeColor) {
  270. if (this.themeColor == '6F2BE8') {
  271. var backgroundImage = '/static/tabimg/me6F2BE8.png'
  272. }
  273. if (this.themeColor == '1677FF') {
  274. var backgroundImage = '/static/tabimg/me1677FF.png'
  275. }
  276. if (this.themeColor == 'FF4F00') {
  277. var backgroundImage = '/static/tabimg/meFF4F00.png'
  278. }
  279. if (this.themeColor == 'D53533') {
  280. var backgroundImage = '/static/tabimg/me1.png'
  281. }
  282. uni.setTabBarStyle({
  283. // color: '#FF0000',
  284. selectedColor: '#' + this.themeColor,
  285. })
  286. uni.setTabBarItem({
  287. index: 3,
  288. text: '我的',
  289. selectedIconPath: backgroundImage
  290. })
  291. }
  292. uni.setNavigationBarColor({
  293. frontColor: "#ffffff",
  294. backgroundColor: '#' + this.themeColor
  295. })
  296. this.getVersionInfo()
  297. // const accountInfo = wx.getAccountInfoSync();
  298. // var version_number = accountInfo.miniProgram.version;
  299. // console.log(version_number)
  300. },
  301. onShow() {
  302. const wxOpenData = this.$store.state.wxOpenData;
  303. this.wxOpenData = wxOpenData
  304. console.log("onshowuser")
  305. this.userInfo = this.$store.state.userInfo;
  306. console.log(this.userInfo)
  307. if (this.userInfo) {
  308. this.queryMyDetail();
  309. } else {
  310. console.log("授权")
  311. this.authorizShow = true;
  312. }
  313. if (wxOpenData) {
  314. this.uid = wxOpenData.loginInfo.uid;
  315. }
  316. },
  317. methods: {
  318. seeQr(){
  319. // this.authorizShow = true;
  320. // return false;
  321. if (this.userInfo) {
  322. } else {
  323. this.authorizShow = true;
  324. return false;
  325. }
  326. uni.showLoading({
  327. title: '加载中'
  328. })
  329. this.$request.httpBinary('wxV2/createQrCode', {
  330. type:'bindWx',
  331. customerId:this.numList.customerInfo.id,
  332. unionID:this.numList.customerInfo.unionID,
  333. }, 'GET').then(res => {
  334. uni.hideLoading();
  335. this.qrimg = 'data:image/png;base64,'+uni.arrayBufferToBase64(res);
  336. this.qrSHow=true;
  337. //this.img= uni.arrayBufferToBase64(res)
  338. //console.log('list+=', this.queryShopList);
  339. })
  340. },
  341. qrclose(){
  342. this.qrSHow=false;
  343. },
  344. goShopAppraiseList() {
  345. uni.navigateTo({
  346. url: 'ShopAppraiseList?shopID=' + this.numList.shopInfo.id
  347. })
  348. },
  349. getVersionInfo() {
  350. this.$http('miniApp2/sys/getVersionInfo', {
  351. appId: this.ext.appId,
  352. }, 'POST').then(res => {
  353. this.release_version = res.data.release_version
  354. })
  355. },
  356. updateUserInfo() {
  357. var that = this;
  358. uni.getUserProfile({
  359. lang: 'zh_CN',
  360. desc: '登录',
  361. success: (res) => {
  362. console.log(res);
  363. that.headImg = res.userInfo.avatarUrl;
  364. that.nickName = res.userInfo.nickName;
  365. that.$http('miniApp2/sys/updateUserInfo', {
  366. nickName: res.userInfo.nickName,
  367. unionId: that.ext.unionId,
  368. headImg: res.userInfo.avatarUrl,
  369. openId: that.wxOpenData.openid
  370. }, 'POST').then(res => {
  371. })
  372. },
  373. fail: (res) => {
  374. console.log(res)
  375. }
  376. });
  377. },
  378. decryptPhoneNumber: function(e) {
  379. console.log(e);
  380. this.code = e.detail.code
  381. this.wxPhoneLogin()
  382. this.authorizShow = false;
  383. },
  384. wxPhoneLogin() {
  385. var that = this;
  386. this.$http('miniApp2/sys/wxPhoneLogin', {
  387. appId: this.ext.appId,
  388. unionId: this.ext.unionId,
  389. code: this.code,
  390. openId: this.wxOpenData.openid
  391. }, 'POST').then(res => {
  392. var data = res.data;
  393. if (data.loginInfo) {
  394. this.userInfo = data.loginInfo.openUser;
  395. this.wxOpenData = data.loginInfo;
  396. this.numList=data.loginInfo
  397. this.headImg = data.loginInfo.openUser.headImg;
  398. this.nickName = data.loginInfo.openUser.nickName;
  399. this.phone = data.loginInfo.openUser.mobilePhone;
  400. this.$store.commit('mutationswxOpenData', data)
  401. this.$store.commit('mutationsuserInfo', this.userInfo)
  402. /*setTimeout(() => {
  403. that.queryMyDetail()
  404. }, 1000); */
  405. that.queryMyDetail()
  406. }
  407. })
  408. },
  409. map() {
  410. console.log("打开地图")
  411. var that = this;
  412. if (!that.numList.shopInfo.lat || !that.numList.shopInfo.lng) {
  413. uni.showToast({
  414. title: '该店铺未设置定位',
  415. icon: 'none',
  416. duration: 3000
  417. });
  418. } else {
  419. uni.openLocation({
  420. latitude: Number(that.numList.shopInfo.lat),
  421. longitude: Number(that.numList.shopInfo.lng),
  422. name: that.numList.shopInfo.shopName,
  423. address: that.numList.shopInfo.provinceName + that.numList.shopInfo.cityName + that.numList
  424. .shopInfo.areaName + that.numList.shopInfo.address,
  425. success: function() {
  426. console.log('success');
  427. },
  428. fail(err) {
  429. console.log(err)
  430. }
  431. });
  432. }
  433. },
  434. call() {
  435. uni.makePhoneCall({
  436. phoneNumber: this.numList.shopInfo.mobilePhone
  437. });
  438. },
  439. goorder(num) {
  440. uni.navigateTo({
  441. url: './myOrder/myOrder?num=' + num
  442. })
  443. },
  444. queryMyDetail() {
  445. console.log("getinfo")
  446. console.log(this.$store.state.wxOpenData)
  447. uni.showLoading({
  448. title: '加载中'
  449. })
  450. this.$http('openreservation/getInfo', {
  451. lat: this.location.lat ? this.location.lat : '',
  452. lng: this.location.lng ? this.location.lng : '',
  453. }, 'GET').then(res => {
  454. uni.hideLoading();
  455. this.numList = res.data
  456. this.headImg = res.data.openUser.headImg;
  457. this.nickName = res.data.openUser.nickName;
  458. this.phone = res.data.openUser.mobilePhone;
  459. })
  460. },
  461. gonavigateTo(url) {
  462. // if (this.userInfo) {
  463. // uni.navigateTo({
  464. // url: url
  465. // })
  466. // } else {
  467. // this.authorizShow = true;
  468. // }
  469. uni.navigateTo({
  470. url: url
  471. })
  472. },
  473. signOut() {
  474. //uni.clearStorageSync();
  475. uni.removeStorageSync('logodata');
  476. // uni.navigateTo({
  477. // url: '../login/login'
  478. // })
  479. },
  480. },
  481. onShareAppMessage(res) {
  482. return {
  483. title: this.wxOpenData.miniAppName,
  484. //imageUrl:img,
  485. path: 'pages/index/index',
  486. success(res) {
  487. uni.showToast({
  488. title: '分享成功'
  489. })
  490. },
  491. fail(res) {
  492. uni.showToast({
  493. title: '分享失败',
  494. icon: 'none',
  495. duration: 3000
  496. })
  497. }
  498. }
  499. },
  500. // 下拉刷新
  501. onPullDownRefresh() {
  502. this.queryMyDetail()
  503. setTimeout(function() {
  504. uni.stopPullDownRefresh();
  505. }, 1000);
  506. },
  507. }
  508. </script>
  509. <style scoped>
  510. .qrBox{
  511. position: fixed;
  512. width: 100vw;
  513. height: 100vh;
  514. background: rgba(0,0,0,0.5);
  515. left: 0;
  516. top: 0;
  517. z-index: 11;
  518. display: flex;
  519. justify-content: center;
  520. align-items: center;
  521. flex-direction: column;
  522. }
  523. .qrimgBox{
  524. width: 562rpx;
  525. height: 704rpx;
  526. background: #FFFFFF;
  527. border-radius: 24rpx;
  528. }
  529. .qrTitle{
  530. font-size: 30rpx;
  531. font-family: PingFangSC-Medium, PingFang SC;
  532. font-weight: 500;
  533. color: #333333;
  534. border-bottom: 1px solid #EEEEEE;
  535. text-align: center;
  536. line-height: 90rpx;
  537. position: relative;
  538. }
  539. .qrimgchahao{
  540. width: 38rpx;
  541. height: 38rpx;
  542. position: absolute;
  543. top: 26rpx;
  544. right: 20rpx;
  545. }
  546. .qrms{
  547. font-weight: 400;
  548. color: #999999;
  549. line-height: 37rpx;
  550. font-size: 26rpx;
  551. padding-top: 23rpx;
  552. text-align: center;
  553. }
  554. .qrms2{
  555. font-weight: 400;
  556. color: #999999;
  557. line-height: 37rpx;
  558. font-size: 26rpx;
  559. text-align: center;
  560. }
  561. .qrimg{
  562. width: 328rpx;
  563. height: 328rpx;
  564. }
  565. .qrBtn{
  566. width: 292rpx;
  567. height: 64rpx;
  568. background: #D53533;
  569. border-radius: 32rpx;
  570. color: #FFFFFF;
  571. line-height: 64rpx;
  572. text-align: center;
  573. margin: 0 auto;
  574. margin-top:40rpx;
  575. }
  576. .releaseVersion {
  577. font-size: 24rpx;
  578. font-family: PingFangSC-Regular, PingFang SC;
  579. font-weight: 400;
  580. color: #666666;
  581. padding: 40rpx;
  582. text-align: center;
  583. }
  584. button::after {
  585. border: none;
  586. }
  587. button {
  588. position: relative;
  589. display: block;
  590. margin-left: 0;
  591. margin-right: 0;
  592. padding-left: 0px;
  593. padding-right: 0px;
  594. box-sizing: border-box;
  595. // font-size: 18px;
  596. text-align: center;
  597. text-decoration: none;
  598. // line-height: 1;
  599. line-height: 1.35;
  600. // border-radius: 5px;
  601. -webkit-tap-highlight-color: transparent;
  602. overflow: hidden;
  603. color: #000000;
  604. background-color: #fff;
  605. height: 100%;
  606. }
  607. .box {
  608. width: 100vw;
  609. min-height: 100vh;
  610. background: #F4F5F7;
  611. padding-bottom: 60rpx;
  612. }
  613. .top {
  614. height: 350rpx;
  615. padding: 20rpx 24rpx 0;
  616. background-color: #D53533;
  617. border-radius: 0 0 5% 5%;
  618. }
  619. .customerMes {
  620. display: flex;
  621. }
  622. .mes {
  623. margin-left: 20rpx;
  624. }
  625. .nick {
  626. margin-bottom: 5rpx;
  627. display: flex;
  628. justify-content: flex-start;
  629. align-items: center;
  630. }
  631. .nickName {
  632. font-size: 34rpx;
  633. color: #FFFFFF;
  634. font-weight: bold;
  635. line-height: 48rpx;
  636. height: 48rpx;
  637. }
  638. .grade {
  639. margin-left: 15rpx;
  640. font-size: 24rpx;
  641. color: #FFFFFF;
  642. padding: 0rpx 10rpx;
  643. border: 1rpx solid #FFFFFF;
  644. border-radius: 4rpx;
  645. height: 36rpx;
  646. }
  647. .phone {
  648. font-size: 24rpx;
  649. color: #FFFFFF;
  650. }
  651. .headerBox {
  652. padding: 30rpx 24rpx;
  653. display: flex;
  654. justify-content: space-around;
  655. }
  656. .quan {
  657. display: flex;
  658. flex-direction: column;
  659. align-items: center;
  660. height: 120rpx;
  661. }
  662. .numStr {
  663. font-size: 40rpx;
  664. font-weight: bold;
  665. color: #FFFFFF;
  666. line-height: 56rpx;
  667. }
  668. .nameStr {
  669. font-size: 24rpx;
  670. color: #FFFFFF;
  671. }
  672. .orderBox {
  673. margin: 0rpx 24rpx;
  674. background: #FFFFFF;
  675. padding: 30rpx 20rpx;
  676. border-radius: 10rpx;
  677. margin-top: -100rpx;
  678. }
  679. .orderTitle {
  680. font-size: 30rpx;
  681. color: #333333;
  682. font-weight: bold;
  683. }
  684. .orderAll {
  685. display: flex;
  686. justify-content: space-between;
  687. align-items: center;
  688. }
  689. .orderLine {
  690. width: 25%;
  691. text-align: center;
  692. }
  693. .orderLineImg {
  694. width: 60rpx;
  695. height: 60rpx;
  696. }
  697. .orderLineTxt {
  698. font-size: 24rpx;
  699. color: #333333;
  700. }
  701. .orderImgBox {
  702. text-align: center;
  703. position: relative;
  704. }
  705. .orderLIneBox {
  706. display: flex;
  707. justify-content: space-between;
  708. padding-top: 30rpx;
  709. }
  710. .orderNum {
  711. height: 26rpx;
  712. line-height: 26rpx;
  713. background: #FF0000;
  714. padding: 0 8rpx;
  715. border-radius: 13rpx;
  716. color: #FFFFFF;
  717. font-size: 20rpx;
  718. position: absolute;
  719. left: 90rpx;
  720. z-index: 11;
  721. }
  722. .big_rightArrow {
  723. margin-right: 20rpx;
  724. width: 30rpx;
  725. height: 30rpx;
  726. }
  727. .rowBoxBg {
  728. margin: 20rpx 24rpx;
  729. background: #FFFFFF;
  730. border-radius: 10rpx;
  731. }
  732. .rowBox {
  733. display: flex;
  734. justify-content: space-between;
  735. background: #FFFFFF;
  736. padding: 35rpx 0rpx;
  737. border-radius: 10rpx;
  738. align-items: center;
  739. }
  740. .leftView {
  741. display: flex;
  742. align-items: center;
  743. }
  744. .rightView {
  745. display: flex;
  746. align-items: center;
  747. }
  748. .liftIcon {
  749. width: 34rpx;
  750. height: 34rpx;
  751. margin: 0rpx 20rpx;
  752. }
  753. .rowTitle {
  754. color: #3C3C3C;
  755. font-size: 28rpx;
  756. }
  757. .signOut {
  758. width: 702rpx;
  759. height: 98rpx;
  760. background: #FFFFFF;
  761. border-radius: 10rpx;
  762. font-size: 30rpx;
  763. color: #FF3B30;
  764. line-height: 98rpx;
  765. text-align: center;
  766. margin: 40rpx 24rpx;
  767. }
  768. .shopBox {
  769. padding: 20rpx;
  770. margin: 20rpx 24rpx;
  771. background-color: #FFFFFF;
  772. border-radius: 10rpx;
  773. }
  774. .shopCont {
  775. display: flex;
  776. justify-content: space-between;
  777. align-items: center;
  778. }
  779. .shopName {
  780. font-size: 30rpx;
  781. font-weight: bold;
  782. color: #3C3C3C;
  783. line-height: 42rpx;
  784. }
  785. .appraiseBox {
  786. padding: 5rpx 0;
  787. margin-top: 10rpx;
  788. height: 62rpx;
  789. display: flex;
  790. align-items: center;
  791. }
  792. .appraise {
  793. color: #FF0000;
  794. font-size: 38rpx;
  795. font-weight: bold;
  796. }
  797. .line {
  798. margin: 0 12rpx;
  799. width: 1rpx;
  800. height: 30rpx;
  801. }
  802. .appraiseCount {
  803. font-size: 24rpx;
  804. font-weight: 400;
  805. color: #666666;
  806. flex-grow: 1;
  807. margin-top: 10rpx;
  808. }
  809. .rightArrow {
  810. width: 7rpx;
  811. height: 15rpx;
  812. margin-left: 16rpx;
  813. }
  814. .shopRightBox {
  815. display: flex;
  816. justify-content: space-between;
  817. }
  818. .address {
  819. display: flex;
  820. justify-content: space-between;
  821. align-items: center;
  822. }
  823. .Address,
  824. .shopTime,
  825. .distance {
  826. color: #999999;
  827. font-size: 24rpx;
  828. padding-top: 15rpx;
  829. /* 隐藏文字显示 ...不换行 */
  830. overflow: hidden;
  831. text-overflow: ellipsis;
  832. white-space: nowrap;
  833. }
  834. .shopRightBox {}
  835. .shopRightImg {
  836. width: 44rpx;
  837. height: 45rpx;
  838. }
  839. .authorizBox {
  840. width: 100vw;
  841. height: 100vh;
  842. background: rgba(0, 0, 0, 0.5);
  843. position: fixed;
  844. top: 0;
  845. left: 0;
  846. }
  847. .authorizCont {
  848. margin-top: 30vh;
  849. width: 564rpx;
  850. height: 408rpx;
  851. background: #FFFFFF;
  852. border-radius: 24rpx;
  853. margin-left: 93rpx;
  854. position: relative;
  855. }
  856. .authorizCloseImg {
  857. width: 62rpx;
  858. height: 62rpx;
  859. }
  860. .sqLogoBox {
  861. width: 180rpx;
  862. height: 180rpx;
  863. background: #FFFFFF;
  864. border-radius: 90rpx;
  865. text-align: center;
  866. position: absolute;
  867. top: -50rpx;
  868. left: 192rpx;
  869. }
  870. .authorizName {
  871. color: #333333;
  872. line-height: 42rpx;
  873. font-size: 30rpx;
  874. text-align: center;
  875. padding-top: 58rpx;
  876. }
  877. .authorizMs {
  878. color: #999999;
  879. line-height: 36rpx;
  880. font-size: 26rpx;
  881. width: 452rpx;
  882. padding-top: 24rpx;
  883. text-align: center;
  884. margin-left: 56rpx;
  885. }
  886. .authorizContbutton {
  887. width: 422rpx;
  888. height: 88rpx;
  889. background: #D53533;
  890. border-radius: 44rpx;
  891. line-height: 88rpx;
  892. text-align: center;
  893. font-size: 30rpx;
  894. color: #FFFFFF;
  895. margin-top: 62rpx;
  896. margin-left: 71rpx;
  897. }
  898. </style>