user.vue 27 KB

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