user.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  1. <template>
  2. <view class="box">
  3. <view class="top">
  4. <view class="customerMes">
  5. <image v-if="headImg" :src="headImg" mode="" style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
  6. <image v-else src="../../static/img/icon_me.png" mode="" style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
  7. <view class="mes">
  8. <view class="nick">
  9. <view class="nickName" v-if="nickName">{{nickName}}</view>
  10. <view class="grade" v-if="numList.levelName">{{numList.levelName}}</view>
  11. </view>
  12. <view class="phone">{{phone}}</view>
  13. </view>
  14. </view>
  15. <view class="headerBox">
  16. <view class="quan" @click="gonavigateTo('../index/discountCard')">
  17. <view class="numStr">{{numList.count?numList.count:0}}</view>
  18. <view class="nameStr">优惠券</view>
  19. </view>
  20. <view class="quan">
  21. <view class="numStr">{{numList.totalIntegral?numList.totalIntegral:0}}</view>
  22. <view class="nameStr">积分</view>
  23. </view>
  24. <view class="quan" @click="gonavigateTo('../index/vipCard')">
  25. <view class="numStr">{{numList.cardNum?numList.cardNum:0}}</view>
  26. <view class="nameStr">会员卡</view>
  27. </view>
  28. </view>
  29. </view>
  30. <!-- 我的订单 -->
  31. <view class="orderBox">
  32. <view class="orderTitle">我的订单</view>
  33. <view class="orderLIneBox">
  34. <view class="orderLine" @click="goorder(1)">
  35. <view class="orderImgBox">
  36. <view class="orderNum" v-show="numList.waitPurchaseSize>0">{{numList.waitPurchaseSize>99?'99+':numList.waitPurchaseSize}}</view>
  37. <image src="../../static/img/icon_daifukuan.png" mode="" class="orderLineImg"></image>
  38. </view>
  39. <view class="orderLineTxt">待付款</view>
  40. </view>
  41. <view class="orderLine" @click="goorder(2)">
  42. <view class="orderImgBox">
  43. <view class="orderNum" v-show="numList.waitServiceSize>0">{{numList.waitServiceSize>99?'99+':numList.waitServiceSize}}</view>
  44. <image src="../../static/img/icon_daifuwu.png" mode="" class="orderLineImg"></image>
  45. </view>
  46. <view class="orderLineTxt">待服务</view>
  47. </view>
  48. <view class="orderLine" @click="goorder(3)">
  49. <view class="orderImgBox">
  50. <view class="orderNum" v-show="numList.hasOverSize>0">{{numList.hasOverSize>99?'99+':numList.hasOverSize}}</view>
  51. <image src="../../static/img/icon_yiwancheng.png" mode="" class="orderLineImg"></image>
  52. </view>
  53. <view class="orderLineTxt">已完成</view>
  54. </view>
  55. <view class="orderLine" @click="goorder(0)">
  56. <view class="orderImgBox">
  57. <view class="orderNum" v-show="numList.allSize>0">{{numList.allSize>99?'99+':numList.allSize}}</view>
  58. <image src="../../static/img/icon_allorder.png" mode="" class="orderLineImg"></image>
  59. </view>
  60. <view class="orderLineTxt">全部</view>
  61. </view>
  62. </view>
  63. </view>
  64. <!-- 店铺信息 -->
  65. <view class="shopBox">
  66. <view class="shopCont">
  67. <view class="shopName">{{numList.shopInfo.shopName}}</view>
  68. <view class="shopRightBox">
  69. <image src="../../static/img/icon_ditu.png" mode="" class="shopRightImg"
  70. style="margin-right: 67rpx;" @click="map"></image>
  71. <image src="../../static/img/icon_phone.png" mode="" class="shopRightImg" @click="call"></image>
  72. </view>
  73. </view>
  74. <view class="shopTime" v-if="numList.shopInfo.startTime && numList.shopInfo.endTime">
  75. {{numList.shopInfo.startTime}}-{{numList.shopInfo.endTime}}</view>
  76. <view class="address">
  77. <view class="Address">
  78. {{numList.shopInfo.provinceName}}{{numList.shopInfo.cityName}}{{numList.shopInfo.areaName}}{{numList.shopInfo.address}}
  79. </view>
  80. <!-- <view class="distance" v-if="numList.shopInfo.distance&&numList.shopInfo.distance!= '0.00'">{{numList.shopInfo.distance}}km</view> -->
  81. </view>
  82. </view>
  83. <!-- 我的 相关 -->
  84. <view class="rowBoxBg">
  85. <view class="rowBox" @click="gonavigateTo('../index/shopList')">
  86. <view class="leftView">
  87. <image src="../../static/img/icon_me1.png" mode="" class="liftIcon"></image>
  88. <view class="rowTitle">服务专家</view>
  89. </view>
  90. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  91. </view>
  92. <view class="rowBox" @click="gonavigateTo('./addCar/cailist')">
  93. <view class="leftView">
  94. <image src="../../static/img/icon_me2.png" mode="" class="liftIcon"></image>
  95. <view class="rowTitle">我的车库</view>
  96. </view>
  97. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  98. </view>
  99. <view class="rowBox" @click="gonavigateTo('myBespeak')">
  100. <view class="leftView">
  101. <image src="../../static/img/icon_me3.png" mode="" class="liftIcon"></image>
  102. <view class="rowTitle">我的预约</view>
  103. </view>
  104. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  105. </view>
  106. <view class="rowBox" @click="gonavigateTo('historySpend')">
  107. <view class="leftView">
  108. <image src="../../static/img/icon_me4.png" mode="" class="liftIcon"></image>
  109. <view class="rowTitle">历史消费</view>
  110. </view>
  111. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  112. </view>
  113. <view class="rowBox" @click="gonavigateTo('checkReport')">
  114. <view class="leftView">
  115. <image src="../../static/img/icon_me5.png" mode="" class="liftIcon"></image>
  116. <view class="rowTitle">车检报告</view>
  117. </view>
  118. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  119. </view>
  120. <view class="rowBox" @click="gonavigateTo('invite')">
  121. <view class="leftView">
  122. <image src="../../static/img/icon_me6.png" mode="" class="liftIcon"></image>
  123. <view class="rowTitle">分享给好友</view>
  124. </view>
  125. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  126. </view>
  127. <view class="rowBox" @click="gonavigateTo('invite')">
  128. <view class="leftView">
  129. <image src="../../static/img/icon_me7.png" mode="" class="liftIcon"></image>
  130. <view class="rowTitle">意见反馈</view>
  131. </view>
  132. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  133. </view>
  134. <view class="rowBox" @click="gonavigateTo('')">
  135. <view class="leftView">
  136. <image src="../../static/img/icon_me8.png" mode="" class="liftIcon"></image>
  137. <view class="rowTitle">清除缓存</view>
  138. </view>
  139. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  140. </view>
  141. </view>
  142. <!-- <view class="signOut" @click="signOut">退出登录</view> -->
  143. <!-- 手机号授权 -->
  144. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  145. <view class="authorizCont" @click.stop="">
  146. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  147. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  148. <button class="authorizContbutton" type="default" open-type="getPhoneNumber"
  149. @getphonenumber="decryptPhoneNumber">授权</button>
  150. </view>
  151. <view style="text-align: center;padding-top: 56rpx;">
  152. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  153. </view>
  154. </view>
  155. </view>
  156. </template>
  157. <script>
  158. export default {
  159. data() {
  160. return {
  161. iStatusBarHeight: '',
  162. userInfo: '',
  163. shopData: '',
  164. numList: '',
  165. uid: '',
  166. headImg: '',
  167. location: {
  168. lng: '',
  169. lat: '',
  170. },
  171. authorizShow: false,
  172. code: '',
  173. wxOpenData: '',
  174. nickName:'',
  175. phone:'',
  176. ext:'',
  177. }
  178. },
  179. onLoad(opt) {
  180. var that = this;
  181. // uni.getLocation({
  182. // type: 'gcj02',
  183. // success: function(res) {
  184. // console.log(res)
  185. // that.location.lat = res.latitude
  186. // that.location.lng = res.longitude
  187. // that.queryMyDetail()
  188. // },
  189. // fail(err) {
  190. // }
  191. // });
  192. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  193. //const wxOpenData = uni.getStorageSync("wxOpenData");
  194. const wxOpenData = this.$store.state.wxOpenData;
  195. if (wxOpenData) {
  196. this.headImg = wxOpenData.loginInfo.customerInfo.headImgurl;
  197. this.nickName = wxOpenData.loginInfo.customerInfo.wxNickName;
  198. this.phone = wxOpenData.loginInfo.customerInfo.mobilePhone;
  199. this.uid = wxOpenData.loginInfo.uid;
  200. }
  201. //this.userInfo = uni.getStorageSync("userInfo")
  202. this.ext=this.$common.getExtStoreId();
  203. },
  204. onShow() {
  205. this.userInfo = this.$store.state.userInfo;
  206. if (this.userInfo) {
  207. this.queryMyDetail();
  208. } else {
  209. this.authorizShow = true;
  210. }
  211. },
  212. methods: {
  213. decryptPhoneNumber: function(e) {
  214. console.log(e);
  215. this.code = e.detail.code
  216. this.wxPhoneLogin()
  217. this.authorizShow = false;
  218. },
  219. wxPhoneLogin() {
  220. var that = this;
  221. this.$http('miniApp2/sys/wxPhoneLogin', {
  222. appId:this.ext.appId,
  223. unionId:this.ext.unionId,
  224. code: this.code,
  225. openId: this.wxOpenData.openid
  226. }, 'POST').then(res => {
  227. var data = res.data;
  228. if (data.loginInfo) {
  229. this.userInfo = data.loginInfo.openUser;
  230. this.wxOpenData = data.loginInfo;
  231. this.$store.commit('mutationswxOpenData', data.loginInfo)
  232. this.$store.commit('mutationsuserInfo', this.userInfo)
  233. this.queryMyDetail()
  234. }
  235. })
  236. },
  237. map() {
  238. console.log("打开地图")
  239. var that = this;
  240. if (!that.numList.shopInfo.lat || !that.numList.shopInfo.lng) {
  241. uni.showToast({
  242. title: '该店铺未设置定位',
  243. icon: 'none',
  244. duration: 3000
  245. });
  246. } else {
  247. uni.openLocation({
  248. latitude: Number(that.numList.shopInfo.lat),
  249. longitude: Number(that.numList.shopInfo.lng),
  250. name: that.numList.shopInfo.shopName,
  251. address: that.numList.shopInfo.provinceName + that.numList.shopInfo.cityName + that.numList
  252. .shopInfo.areaName + that.numList.shopInfo.address,
  253. success: function() {
  254. console.log('success');
  255. },
  256. fail(err) {
  257. console.log(err)
  258. }
  259. });
  260. }
  261. },
  262. call() {
  263. uni.makePhoneCall({
  264. phoneNumber: this.numList.shopInfo.contactorPhone
  265. });
  266. },
  267. goorder(num) {
  268. uni.navigateTo({
  269. url: './myOrder/myOrder?num=' + num
  270. })
  271. },
  272. queryMyDetail() {
  273. uni.showLoading({
  274. title: '加载中'
  275. })
  276. this.$http('openreservation/getInfo', {
  277. lat: this.location.lat ? this.location.lat : '',
  278. lng: this.location.lng ? this.location.lng : '',
  279. }, 'GET').then(res => {
  280. uni.hideLoading();
  281. this.numList = res.data
  282. })
  283. },
  284. gonavigateTo(url) {
  285. uni.navigateTo({
  286. url: url
  287. })
  288. },
  289. signOut() {
  290. //uni.clearStorageSync();
  291. uni.removeStorageSync('logodata');
  292. // uni.navigateTo({
  293. // url: '../login/login'
  294. // })
  295. },
  296. },
  297. // 下拉刷新
  298. onPullDownRefresh() {
  299. this.queryMyDetail()
  300. setTimeout(function() {
  301. uni.stopPullDownRefresh();
  302. }, 1000);
  303. },
  304. }
  305. </script>
  306. <style scoped>
  307. .box {
  308. width: 100vw;
  309. min-height: 100vh;
  310. background: #F4F5F7;
  311. padding-bottom: 60rpx;
  312. }
  313. .top {
  314. height: 350rpx;
  315. padding: 20rpx 24rpx 0;
  316. background-color: #D53533;
  317. border-radius: 0 0 5% 5%;
  318. }
  319. .customerMes {
  320. display: flex;
  321. }
  322. .mes {
  323. margin-left: 20rpx;
  324. }
  325. .nick {
  326. margin-bottom: 5rpx;
  327. display: flex;
  328. justify-content: flex-start;
  329. align-items: center;
  330. }
  331. .nickName {
  332. font-size: 34rpx;
  333. color: #FFFFFF;
  334. font-weight: bold;
  335. line-height: 48rpx;
  336. height: 48rpx;
  337. }
  338. .grade {
  339. margin-left: 15rpx;
  340. font-size: 24rpx;
  341. color: #FFFFFF;
  342. padding: 0rpx 10rpx;
  343. border: 1rpx solid #FFFFFF;
  344. border-radius: 4rpx;
  345. height: 36rpx;
  346. }
  347. .phone {
  348. font-size: 24rpx;
  349. color: #FFFFFF;
  350. }
  351. .headerBox {
  352. padding: 30rpx 24rpx;
  353. display: flex;
  354. justify-content: space-around;
  355. }
  356. .quan {
  357. display: flex;
  358. flex-direction: column;
  359. align-items: center;
  360. height: 120rpx;
  361. }
  362. .numStr {
  363. font-size: 40rpx;
  364. font-weight: bold;
  365. color: #FFFFFF;
  366. line-height: 56rpx;
  367. }
  368. .nameStr {
  369. font-size: 24rpx;
  370. color: #FFFFFF;
  371. }
  372. .orderBox {
  373. margin: 0rpx 24rpx;
  374. background: #FFFFFF;
  375. padding: 30rpx 20rpx;
  376. border-radius: 10rpx;
  377. margin-top: -100rpx;
  378. }
  379. .orderTitle {
  380. font-size: 30rpx;
  381. color: #333333;
  382. font-weight: bold;
  383. }
  384. .orderAll {
  385. display: flex;
  386. justify-content: space-between;
  387. align-items: center;
  388. }
  389. .orderLine {
  390. width: 25%;
  391. text-align: center;
  392. }
  393. .orderLineImg {
  394. width: 60rpx;
  395. height: 60rpx;
  396. }
  397. .orderLineTxt {
  398. font-size: 24rpx;
  399. color: #333333;
  400. }
  401. .orderImgBox {
  402. text-align: center;
  403. position: relative;
  404. }
  405. .orderLIneBox {
  406. display: flex;
  407. justify-content: space-between;
  408. padding-top: 30rpx;
  409. }
  410. .orderNum {
  411. height: 26rpx;
  412. line-height: 26rpx;
  413. background: #FF0000;
  414. padding: 0 8rpx;
  415. border-radius: 13rpx;
  416. color: #FFFFFF;
  417. font-size: 20rpx;
  418. position: absolute;
  419. left: 90rpx;
  420. z-index: 11;
  421. }
  422. .big_rightArrow {
  423. margin-right: 20rpx;
  424. width: 30rpx;
  425. height: 30rpx;
  426. }
  427. .rowBoxBg {
  428. margin: 20rpx 24rpx;
  429. background: #FFFFFF;
  430. border-radius: 10rpx;
  431. }
  432. .rowBox {
  433. display: flex;
  434. justify-content: space-between;
  435. background: #FFFFFF;
  436. padding: 35rpx 0rpx;
  437. border-radius: 10rpx;
  438. align-items: center;
  439. }
  440. .leftView {
  441. display: flex;
  442. align-items: center;
  443. }
  444. .rightView {
  445. display: flex;
  446. align-items: center;
  447. }
  448. .liftIcon {
  449. width: 34rpx;
  450. height: 34rpx;
  451. margin: 0rpx 20rpx;
  452. }
  453. .rowTitle {
  454. color: #3C3C3C;
  455. font-size: 28rpx;
  456. }
  457. .signOut {
  458. width: 702rpx;
  459. height: 98rpx;
  460. background: #FFFFFF;
  461. border-radius: 10rpx;
  462. font-size: 30rpx;
  463. color: #FF3B30;
  464. line-height: 98rpx;
  465. text-align: center;
  466. margin: 40rpx 24rpx;
  467. }
  468. .shopBox {
  469. padding: 20rpx;
  470. margin: 20rpx 24rpx;
  471. background-color: #FFFFFF;
  472. border-radius: 10rpx;
  473. }
  474. .shopCont {
  475. display: flex;
  476. justify-content: space-between;
  477. align-items: center;
  478. }
  479. .shopName {
  480. font-size: 30rpx;
  481. font-weight: bold;
  482. color: #3C3C3C;
  483. line-height: 42rpx;
  484. }
  485. .shopRightBox {
  486. display: flex;
  487. justify-content: space-between;
  488. }
  489. .address {
  490. display: flex;
  491. justify-content: space-between;
  492. align-items: center;
  493. }
  494. .Address,
  495. .shopTime,
  496. .distance {
  497. color: #999999;
  498. font-size: 24rpx;
  499. padding-top: 15rpx;
  500. /* 隐藏文字显示 ...不换行 */
  501. overflow: hidden;
  502. text-overflow: ellipsis;
  503. white-space: nowrap;
  504. }
  505. .shopRightBox {}
  506. .shopRightImg {
  507. width: 44rpx;
  508. height: 45rpx;
  509. }
  510. .authorizBox {
  511. width: 100vw;
  512. height: 100vh;
  513. background: rgba(0, 0, 0, 0.5);
  514. position: fixed;
  515. top: 0;
  516. left: 0;
  517. }
  518. .authorizCont {
  519. margin-top: 30vh;
  520. width: 564rpx;
  521. height: 408rpx;
  522. background: #FFFFFF;
  523. border-radius: 24rpx;
  524. margin-left: 93rpx;
  525. position: relative;
  526. }
  527. .authorizCloseImg {
  528. width: 62rpx;
  529. height: 62rpx;
  530. }
  531. .sqLogoBox {
  532. width: 180rpx;
  533. height: 180rpx;
  534. background: #FFFFFF;
  535. border-radius: 90rpx;
  536. text-align: center;
  537. position: absolute;
  538. top: -50rpx;
  539. left: 192rpx;
  540. }
  541. .authorizName {
  542. color: #333333;
  543. line-height: 42rpx;
  544. font-size: 30rpx;
  545. text-align: center;
  546. padding-top: 58rpx;
  547. }
  548. .authorizMs {
  549. color: #999999;
  550. line-height: 36rpx;
  551. font-size: 26rpx;
  552. width: 452rpx;
  553. padding-top: 24rpx;
  554. text-align: center;
  555. margin-left: 56rpx;
  556. }
  557. .authorizContbutton {
  558. width: 422rpx;
  559. height: 88rpx;
  560. background: #D53533;
  561. border-radius: 44rpx;
  562. line-height: 88rpx;
  563. text-align: center;
  564. font-size: 30rpx;
  565. color: #FFFFFF;
  566. margin-top: 62rpx;
  567. margin-left: 71rpx;
  568. }
  569. </style>