user.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755
  1. <template>
  2. <view class="box">
  3. <view class="top">
  4. <view class="customerMes">
  5. <image @click="updateUserInfo" v-if="headImg" :src="headImg" mode="" style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
  6. <image @click="updateUserInfo" 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" @click="gonavigateTo('../integral/integral?totalIntegral='+numList.totalIntegral)">
  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('../user/expertServices')">
  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. <button open-type="share" class="rowBox" >
  128. <view class="leftView">
  129. <image src="../../static/img/icon_me6.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. </button>
  134. <view class="rowBox" @click="gonavigateTo('feedBack')">
  135. <view class="leftView">
  136. <image src="../../static/img/icon_me7.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. <!-- 先隐藏 -->
  142. <!-- <view class="rowBox" @click="gonavigateTo('')">
  143. <view class="leftView">
  144. <image src="../../static/img/icon_me8.png" mode="" class="liftIcon"></image>
  145. <view class="rowTitle">清除缓存</view>
  146. </view>
  147. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  148. </view> -->
  149. </view>
  150. <!-- <view class="signOut" @click="signOut">退出登录</view> -->
  151. <!-- 手机号授权 -->
  152. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  153. <view class="authorizCont" @click.stop="">
  154. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  155. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  156. <button class="authorizContbutton" type="default" open-type="getPhoneNumber"
  157. @getphonenumber="decryptPhoneNumber">授权</button>
  158. </view>
  159. <view style="text-align: center;padding-top: 56rpx;">
  160. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  161. </view>
  162. </view>
  163. </view>
  164. </template>
  165. <script>
  166. export default {
  167. data() {
  168. return {
  169. userInfo: '',
  170. shopData: '',
  171. numList: '',
  172. uid: '',
  173. headImg: '',
  174. location: {
  175. lng: '',
  176. lat: '',
  177. },
  178. authorizShow: false,
  179. code: '',
  180. wxOpenData: '',
  181. nickName:'',
  182. phone:'',
  183. ext:'',
  184. }
  185. },
  186. onLoad(opt) {
  187. this.ext=this.$common.getExtStoreId();
  188. },
  189. onShow() {
  190. const wxOpenData = this.$store.state.wxOpenData;
  191. this.wxOpenData=wxOpenData
  192. //console.log()
  193. if (wxOpenData) {
  194. this.uid = wxOpenData.loginInfo.uid;
  195. }
  196. this.userInfo = this.$store.state.userInfo;
  197. if (this.userInfo) {
  198. this.queryMyDetail();
  199. } else {
  200. this.authorizShow = true;
  201. }
  202. },
  203. methods: {
  204. updateUserInfo(){
  205. var that=this;
  206. uni.getUserProfile({
  207. lang:'zh_CN',
  208. desc:'登录',
  209. success:(res)=>{
  210. console.log(res);
  211. that.headImg=res.userInfo.avatarUrl;
  212. that.nickName=res.userInfo.nickName;
  213. that.$http('miniApp2/sys/updateUserInfo', {
  214. nickName:res.userInfo.nickName,
  215. unionId:that.ext.unionId,
  216. headImg: res.userInfo.avatarUrl,
  217. openId: that.wxOpenData.openid
  218. }, 'POST').then(res => {
  219. })
  220. },
  221. fail:(res)=>{
  222. console.log(res)
  223. }
  224. });
  225. },
  226. decryptPhoneNumber: function(e) {
  227. console.log(e);
  228. this.code = e.detail.code
  229. this.wxPhoneLogin()
  230. this.authorizShow = false;
  231. },
  232. wxPhoneLogin() {
  233. var that = this;
  234. this.$http('miniApp2/sys/wxPhoneLogin', {
  235. appId:this.ext.appId,
  236. unionId:this.ext.unionId,
  237. code: this.code,
  238. openId: this.wxOpenData.openid
  239. }, 'POST').then(res => {
  240. var data = res.data;
  241. if (data.loginInfo) {
  242. this.userInfo = data.loginInfo.openUser;
  243. this.wxOpenData = data.loginInfo;
  244. this.$store.commit('mutationswxOpenData', data.loginInfo)
  245. this.$store.commit('mutationsuserInfo', this.userInfo)
  246. this.queryMyDetail()
  247. }
  248. })
  249. },
  250. map() {
  251. console.log("打开地图")
  252. var that = this;
  253. if (!that.numList.shopInfo.lat || !that.numList.shopInfo.lng) {
  254. uni.showToast({
  255. title: '该店铺未设置定位',
  256. icon: 'none',
  257. duration: 3000
  258. });
  259. } else {
  260. uni.openLocation({
  261. latitude: Number(that.numList.shopInfo.lat),
  262. longitude: Number(that.numList.shopInfo.lng),
  263. name: that.numList.shopInfo.shopName,
  264. address: that.numList.shopInfo.provinceName + that.numList.shopInfo.cityName + that.numList
  265. .shopInfo.areaName + that.numList.shopInfo.address,
  266. success: function() {
  267. console.log('success');
  268. },
  269. fail(err) {
  270. console.log(err)
  271. }
  272. });
  273. }
  274. },
  275. call() {
  276. uni.makePhoneCall({
  277. phoneNumber: this.numList.shopInfo.contactorPhone
  278. });
  279. },
  280. goorder(num) {
  281. uni.navigateTo({
  282. url: './myOrder/myOrder?num=' + num
  283. })
  284. },
  285. queryMyDetail() {
  286. uni.showLoading({
  287. title: '加载中'
  288. })
  289. this.$http('openreservation/getInfo', {
  290. lat: this.location.lat ? this.location.lat : '',
  291. lng: this.location.lng ? this.location.lng : '',
  292. }, 'GET').then(res => {
  293. uni.hideLoading();
  294. this.numList = res.data
  295. this.headImg = res.data.openUser.headImg;
  296. this.nickName = res.data.openUser.nickName;
  297. this.phone = res.data.openUser.mobilePhone;
  298. })
  299. },
  300. gonavigateTo(url) {
  301. uni.navigateTo({
  302. url: url
  303. })
  304. },
  305. signOut() {
  306. //uni.clearStorageSync();
  307. uni.removeStorageSync('logodata');
  308. // uni.navigateTo({
  309. // url: '../login/login'
  310. // })
  311. },
  312. },
  313. onShareAppMessage(res) {
  314. return {
  315. title: this.wxOpenData.miniAppName,
  316. //imageUrl:img,
  317. path: 'pages/index/index',
  318. success(res){
  319. uni.showToast({
  320. title:'分享成功'
  321. })
  322. },
  323. fail(res){
  324. uni.showToast({
  325. title:'分享失败',
  326. icon:'none',
  327. duration: 3000
  328. })
  329. }
  330. }
  331. },
  332. // 下拉刷新
  333. onPullDownRefresh() {
  334. this.queryMyDetail()
  335. setTimeout(function() {
  336. uni.stopPullDownRefresh();
  337. }, 1000);
  338. },
  339. }
  340. </script>
  341. <style scoped>
  342. button::after{
  343. border: none;
  344. }
  345. button{
  346. position: relative;
  347. display: block;
  348. margin-left: 0;
  349. margin-right: 0;
  350. padding-left: 0px;
  351. padding-right: 0px;
  352. box-sizing: border-box;
  353. // font-size: 18px;
  354. text-align: center;
  355. text-decoration: none;
  356. // line-height: 1;
  357. line-height: 1.35;
  358. // border-radius: 5px;
  359. -webkit-tap-highlight-color: transparent;
  360. overflow: hidden;
  361. color: #000000;
  362. background-color: #fff;
  363. height: 100%;
  364. }
  365. .box {
  366. width: 100vw;
  367. min-height: 100vh;
  368. background: #F4F5F7;
  369. padding-bottom: 60rpx;
  370. }
  371. .top {
  372. height: 350rpx;
  373. padding: 20rpx 24rpx 0;
  374. background-color: #D53533;
  375. border-radius: 0 0 5% 5%;
  376. }
  377. .customerMes {
  378. display: flex;
  379. }
  380. .mes {
  381. margin-left: 20rpx;
  382. }
  383. .nick {
  384. margin-bottom: 5rpx;
  385. display: flex;
  386. justify-content: flex-start;
  387. align-items: center;
  388. }
  389. .nickName {
  390. font-size: 34rpx;
  391. color: #FFFFFF;
  392. font-weight: bold;
  393. line-height: 48rpx;
  394. height: 48rpx;
  395. }
  396. .grade {
  397. margin-left: 15rpx;
  398. font-size: 24rpx;
  399. color: #FFFFFF;
  400. padding: 0rpx 10rpx;
  401. border: 1rpx solid #FFFFFF;
  402. border-radius: 4rpx;
  403. height: 36rpx;
  404. }
  405. .phone {
  406. font-size: 24rpx;
  407. color: #FFFFFF;
  408. }
  409. .headerBox {
  410. padding: 30rpx 24rpx;
  411. display: flex;
  412. justify-content: space-around;
  413. }
  414. .quan {
  415. display: flex;
  416. flex-direction: column;
  417. align-items: center;
  418. height: 120rpx;
  419. }
  420. .numStr {
  421. font-size: 40rpx;
  422. font-weight: bold;
  423. color: #FFFFFF;
  424. line-height: 56rpx;
  425. }
  426. .nameStr {
  427. font-size: 24rpx;
  428. color: #FFFFFF;
  429. }
  430. .orderBox {
  431. margin: 0rpx 24rpx;
  432. background: #FFFFFF;
  433. padding: 30rpx 20rpx;
  434. border-radius: 10rpx;
  435. margin-top: -100rpx;
  436. }
  437. .orderTitle {
  438. font-size: 30rpx;
  439. color: #333333;
  440. font-weight: bold;
  441. }
  442. .orderAll {
  443. display: flex;
  444. justify-content: space-between;
  445. align-items: center;
  446. }
  447. .orderLine {
  448. width: 25%;
  449. text-align: center;
  450. }
  451. .orderLineImg {
  452. width: 60rpx;
  453. height: 60rpx;
  454. }
  455. .orderLineTxt {
  456. font-size: 24rpx;
  457. color: #333333;
  458. }
  459. .orderImgBox {
  460. text-align: center;
  461. position: relative;
  462. }
  463. .orderLIneBox {
  464. display: flex;
  465. justify-content: space-between;
  466. padding-top: 30rpx;
  467. }
  468. .orderNum {
  469. height: 26rpx;
  470. line-height: 26rpx;
  471. background: #FF0000;
  472. padding: 0 8rpx;
  473. border-radius: 13rpx;
  474. color: #FFFFFF;
  475. font-size: 20rpx;
  476. position: absolute;
  477. left: 90rpx;
  478. z-index: 11;
  479. }
  480. .big_rightArrow {
  481. margin-right: 20rpx;
  482. width: 30rpx;
  483. height: 30rpx;
  484. }
  485. .rowBoxBg {
  486. margin: 20rpx 24rpx;
  487. background: #FFFFFF;
  488. border-radius: 10rpx;
  489. }
  490. .rowBox {
  491. display: flex;
  492. justify-content: space-between;
  493. background: #FFFFFF;
  494. padding: 35rpx 0rpx;
  495. border-radius: 10rpx;
  496. align-items: center;
  497. }
  498. .leftView {
  499. display: flex;
  500. align-items: center;
  501. }
  502. .rightView {
  503. display: flex;
  504. align-items: center;
  505. }
  506. .liftIcon {
  507. width: 34rpx;
  508. height: 34rpx;
  509. margin: 0rpx 20rpx;
  510. }
  511. .rowTitle {
  512. color: #3C3C3C;
  513. font-size: 28rpx;
  514. }
  515. .signOut {
  516. width: 702rpx;
  517. height: 98rpx;
  518. background: #FFFFFF;
  519. border-radius: 10rpx;
  520. font-size: 30rpx;
  521. color: #FF3B30;
  522. line-height: 98rpx;
  523. text-align: center;
  524. margin: 40rpx 24rpx;
  525. }
  526. .shopBox {
  527. padding: 20rpx;
  528. margin: 20rpx 24rpx;
  529. background-color: #FFFFFF;
  530. border-radius: 10rpx;
  531. }
  532. .shopCont {
  533. display: flex;
  534. justify-content: space-between;
  535. align-items: center;
  536. }
  537. .shopName {
  538. font-size: 30rpx;
  539. font-weight: bold;
  540. color: #3C3C3C;
  541. line-height: 42rpx;
  542. }
  543. .shopRightBox {
  544. display: flex;
  545. justify-content: space-between;
  546. }
  547. .address {
  548. display: flex;
  549. justify-content: space-between;
  550. align-items: center;
  551. }
  552. .Address,
  553. .shopTime,
  554. .distance {
  555. color: #999999;
  556. font-size: 24rpx;
  557. padding-top: 15rpx;
  558. /* 隐藏文字显示 ...不换行 */
  559. overflow: hidden;
  560. text-overflow: ellipsis;
  561. white-space: nowrap;
  562. }
  563. .shopRightBox {}
  564. .shopRightImg {
  565. width: 44rpx;
  566. height: 45rpx;
  567. }
  568. .authorizBox {
  569. width: 100vw;
  570. height: 100vh;
  571. background: rgba(0, 0, 0, 0.5);
  572. position: fixed;
  573. top: 0;
  574. left: 0;
  575. }
  576. .authorizCont {
  577. margin-top: 30vh;
  578. width: 564rpx;
  579. height: 408rpx;
  580. background: #FFFFFF;
  581. border-radius: 24rpx;
  582. margin-left: 93rpx;
  583. position: relative;
  584. }
  585. .authorizCloseImg {
  586. width: 62rpx;
  587. height: 62rpx;
  588. }
  589. .sqLogoBox {
  590. width: 180rpx;
  591. height: 180rpx;
  592. background: #FFFFFF;
  593. border-radius: 90rpx;
  594. text-align: center;
  595. position: absolute;
  596. top: -50rpx;
  597. left: 192rpx;
  598. }
  599. .authorizName {
  600. color: #333333;
  601. line-height: 42rpx;
  602. font-size: 30rpx;
  603. text-align: center;
  604. padding-top: 58rpx;
  605. }
  606. .authorizMs {
  607. color: #999999;
  608. line-height: 36rpx;
  609. font-size: 26rpx;
  610. width: 452rpx;
  611. padding-top: 24rpx;
  612. text-align: center;
  613. margin-left: 56rpx;
  614. }
  615. .authorizContbutton {
  616. width: 422rpx;
  617. height: 88rpx;
  618. background: #D53533;
  619. border-radius: 44rpx;
  620. line-height: 88rpx;
  621. text-align: center;
  622. font-size: 30rpx;
  623. color: #FFFFFF;
  624. margin-top: 62rpx;
  625. margin-left: 71rpx;
  626. }
  627. </style>