user.vue 13 KB

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