center.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. <template>
  2. <view class="pages">
  3. <view class="" :style="{height: navHeight+'px' }"></view>
  4. <!-- <view class="page-bg">
  5. <img class="img" :src="staticUrl+'/img/center-index-bg.png'" alt="">
  6. </view> -->
  7. <view class="base-info block-wrap u-flex u-row-between" v-if="vuex_member_info.name">
  8. <view class="left u-flex">
  9. <u-avatar :src="avatar||staticUrl+'/img/avatar.png'" size="110rpx"></u-avatar>
  10. <view class="info">
  11. <view class="name ellipsis-1">{{vuex_member_info.name}}</view>
  12. <view class="level u-flex">
  13. <u-icon :name="staticUrl+'/img/level-01.png'" color="#333333" size="30rpx"></u-icon>
  14. <text class="level-name">{{vuex_member_info.levelName}}</text>
  15. </view>
  16. </view>
  17. </view>
  18. <u-icon @click="$u.route('/center/memberinfo',{type:'redirectTo'})" name="setting-fill" color="#333333" size="38rpx"></u-icon>
  19. </view>
  20. <view class="base-info block-wrap u-flex u-row-between" @click="goLogin" v-else>
  21. <view class="left u-flex">
  22. <u-avatar :src="staticUrl+'/img/avatar.png'" size="110rpx"></u-avatar>
  23. <view class="info">
  24. <view class="name ellipsis-1">立即登录</view>
  25. </view>
  26. </view>
  27. <!-- <u-icon name="setting-fill" color="#333333" size="38rpx"></u-icon> -->
  28. </view>
  29. <view class="property block-wrap u-flex u-row-between">
  30. <view class="property-item" @click="checkauth('/credits/creditslist')">
  31. <view class="up">{{memberInfo.credit||0}}</view>
  32. <view class="down">积分</view>
  33. </view>
  34. <view class="property-item" @click="checkauth('/center/mybalance')">
  35. <view class="up">{{memberInfo.balance||0}}</view>
  36. <view class="down">余额</view>
  37. </view>
  38. <view class="property-item">
  39. <view class="up">{{memberInfo.couponNum||0}}</view>
  40. <view class="down">优惠券</view>
  41. </view>
  42. </view>
  43. <view class="card block-wrap">
  44. <image class="logo" :src="staticUrl+'/img/sitename.png'" mode="heightFix"></image>
  45. <view class="bottom u-flex u-row-between">
  46. <view class="left">
  47. <view class="card-title">加入会员或绑定年卡</view>
  48. <view class="card-con">解锁门票优惠、数字勋章、餐饮酒店折扣等超多权益</view>
  49. </view>
  50. <view class="card-btn">成为会员</view>
  51. </view>
  52. </view>
  53. <view class="order-state">
  54. <!-- <view class="title u-flex u-row-between">
  55. <view class="left">订单中心</view>
  56. <view class="right u-flex" @click="$u.route('/shopping/order')">
  57. 全部订单
  58. <u-icon name="arrow-right" color="#00A447" size="24rpx"></u-icon>
  59. </view>
  60. </view> -->
  61. <view class="u-flex u-row-between">
  62. <view class="state" @click="orderClick(item,index)" v-for="(item,index) in orderState" :key="index">
  63. <view class="up">
  64. <u-icon :name="item.ico" color="#333333" size="60rpx"></u-icon>
  65. <u-badge v-if="item.badge" type="error" max="99" :value="orderBadge[item.badge]" :absolute="true" :offset="[0,0]"></u-badge>
  66. </view>
  67. <view class="down">{{item.name}}</view>
  68. </view>
  69. </view>
  70. </view>
  71. <view class="tools block-wrap">
  72. <view class="title">常用工具</view>
  73. <view class="tools-wrap">
  74. <view class=""
  75. v-for="(item,index) in tools"
  76. @click="toolsClick(item)"
  77. :key="index">
  78. <view class="tool-item u-flex u-row-between" v-if="!item.share">
  79. <view class="left u-flex">
  80. <u-icon :name="item.ico" color="#333333" size="55rpx"></u-icon>
  81. <text class="name">{{item.name}}</text>
  82. </view>
  83. <u-icon name="arrow-right" color="#ddd" size="40rpx"></u-icon>
  84. </view>
  85. <view class="tool-item" v-if="item.share==1">
  86. <button class="button-item u-flex u-row-between" type="default" open-type="contact">
  87. <view class="left u-flex">
  88. <u-icon :name="item.ico" color="#333333" size="55rpx"></u-icon>
  89. <text class="name">{{item.name}}</text>
  90. </view>
  91. <u-icon name="arrow-right" color="#ddd" size="40rpx"></u-icon>
  92. </button>
  93. </view>
  94. </view>
  95. </view>
  96. </view>
  97. <!-- <u-overlay :show="showPayCode" @click="showPayCode = false">
  98. <view class="pay-code-warp u-flex u-row-center">
  99. <view class="rect" @tap.stop>
  100. <u--image :showLoading="true" :src="payCodeImg" width="180px" height="180px"></u--image>
  101. </view>
  102. </view>
  103. </u-overlay> -->
  104. <tabbar :tabbarIndexProps="2" />
  105. </view>
  106. </template>
  107. <script>
  108. import { systemInfo } from "@/mixin.js";
  109. import tabbar from "../components/tabbar.vue"
  110. export default {
  111. components:{
  112. tabbar
  113. },
  114. mixins:[systemInfo],
  115. data() {
  116. return {
  117. staticUrl:this.$commonConfig.staticUrl,
  118. avatar:this.$commonConfig.staticUrl+'/img/avatar.png',
  119. showPayCode:false,
  120. payCodeImg:'https://cdn.uviewui.com/uview/album/1.jpg',
  121. memberInfo:{},
  122. orderState:[
  123. // {name:'全部订单',status:'',ico:this.$commonConfig.staticUrl+'/img/orderstateico-all.png'},
  124. {name:'门票订单',status:'0',ico:this.$commonConfig.staticUrl+'/img/ticket-order.png',badge:'ticket'},
  125. {name:'商品订单',status:'1',ico:this.$commonConfig.staticUrl+'/img/goods-order.png',badge:'goods'},
  126. {name:'酒店订单',status:'2',ico:this.$commonConfig.staticUrl+'/img/hotel-order.png',badge:'hotel'},
  127. {name:'积分订单',status:'3',ico:this.$commonConfig.staticUrl+'/img/credits-order.png',badge:'credits'},
  128. ],
  129. orderBadge:{
  130. ticket:'0',
  131. goods:'0',
  132. hotel:'0',
  133. credits:'0'
  134. },
  135. tools:[
  136. {name:'收货地址',url:'/center/recharge',ico:this.$commonConfig.staticUrl+'/img/dizhi.png',checkauth:true},
  137. {name:'我的收藏',url:'center/addrlist',ico:this.$commonConfig.staticUrl+'/img/shoucang.png',checkauth:true},
  138. {name:'投诉反馈',url:'center/addrlist',ico:this.$commonConfig.staticUrl+'/img/fankui.png',checkauth:true},
  139. {name:'开具发票',url:'center/addrlist',ico:this.$commonConfig.staticUrl+'/img/fapiao.png',checkauth:true},
  140. {name:'分享给好友',share:'1',ico:this.$commonConfig.staticUrl+'/img/fenxiang.png'},
  141. // {name:'客服电话',phone:'',ico:this.$commonConfig.staticUrl+'/img/tool-phone.png'},
  142. // {name:'在线客服',chat:'1',ico:this.$commonConfig.staticUrl+'/img/center-icon-chat.png'},
  143. ]
  144. }
  145. },
  146. onShow() {
  147. if(this.vuex_member_info.name){
  148. this.getMemberInfo();
  149. this.statisticsOrder();
  150. }
  151. },
  152. onLoad() {
  153. this.getSystemInfo();
  154. },
  155. methods: {
  156. getMemberInfo(){
  157. this.$u.api.memberInfo({id:this.vuex_member_info.id}).then(res=>{
  158. this.memberInfo = res.data;
  159. this.avatar = res.data.avatar;
  160. this.$u.vuex('vuex_member_info', res.data);
  161. // console.log('memberInfo',this.memberInfo);
  162. }).catch(err=>{
  163. console.log('memberInfo',err.data);
  164. })
  165. },
  166. toolsClick(item){
  167. let that = this;
  168. console.log('item',item);
  169. if ('phone' in item) {
  170. if(!that.memberInfo.customerMobile){
  171. uni.showToast({
  172. title:'电话号码为空',
  173. icon:"none"
  174. })
  175. return
  176. }
  177. uni.makePhoneCall({
  178. phoneNumber: that.memberInfo.customerMobile,
  179. success() {
  180. console.log('success');
  181. },
  182. fail() {
  183. console.log('fail');
  184. }
  185. });
  186. return
  187. }
  188. if ('chat' in item) {
  189. return
  190. }
  191. if(item.checkauth){
  192. this.checkauth(item.url)
  193. }else{
  194. uni.$u.route(item.url);
  195. }
  196. },
  197. orderClick(item,index){
  198. console.log('item',item);
  199. uni.$u.route('/shopping/order', {
  200. // current: index,
  201. // status: item.status,
  202. type: 'redirectTo'
  203. });
  204. },
  205. statisticsOrder(){
  206. this.$u.api.statisticsOrder().then(res=>{
  207. let data = res.data || {};
  208. this.orderBadge = Object.assign(this.orderBadge,data)
  209. // console.log('statisticsOrder',res.data);
  210. // console.log('this.orderBadge',this.orderBadge);
  211. }).catch(err=>{
  212. console.log('memberInfo',err.data);
  213. })
  214. },
  215. goLogin(){
  216. uni.setStorage({
  217. key: 'backUrl',
  218. data:'center/center' ,
  219. success: function () {
  220. uni.$u.route('/pages/login/login')
  221. }
  222. });
  223. },
  224. checkauth(pageUrl){
  225. if(this.vuex_member_info.name){
  226. uni.$u.route(pageUrl)
  227. }else{
  228. uni.showModal({
  229. title: '提示',
  230. content: '你需要登录后,才可使用此功能!',
  231. success: res => {
  232. if (res.confirm) {
  233. uni.setStorage({
  234. key: 'backUrl',
  235. data:pageUrl ,
  236. success: function () {
  237. uni.$u.route('/pages/login/login')
  238. }
  239. });
  240. }
  241. }
  242. })
  243. }
  244. }
  245. }
  246. }
  247. </script>
  248. <style>
  249. page{
  250. background-color: #fff;
  251. padding-top: 0;
  252. }
  253. </style>
  254. <style lang="scss" scoped>
  255. .block-wrap{
  256. margin: 24rpx 32rpx;
  257. }
  258. .title{
  259. font-size: 32rpx;
  260. font-weight: 600;
  261. color: #333333;
  262. line-height: 45rpx;
  263. margin-bottom: 30rpx;
  264. }
  265. .base-info{
  266. margin-bottom: 10rpx;
  267. .info{
  268. margin-left: 30rpx;
  269. .name{
  270. font-size: 40rpx;
  271. font-weight: 600;
  272. color: #333333;
  273. line-height: 56rpx;
  274. margin-bottom: 10rpx;
  275. }
  276. .level{
  277. width: fit-content;
  278. background: linear-gradient(131deg, #FFF2DB 0%, #FFD9A5 100%);
  279. border-radius: 2px;
  280. font-size: 22rpx;
  281. font-weight: 400;
  282. color: #333333;
  283. line-height: 30rpx;
  284. padding: 6rpx 16rpx;
  285. .level-name{
  286. margin-left: 10rpx;
  287. }
  288. }
  289. }
  290. }
  291. .property{
  292. background: #F9F9F9;
  293. border-radius: 20rpx;
  294. text-align: center;
  295. padding: 18rpx 0;
  296. .property-item{
  297. flex: 1;
  298. &:nth-of-type(2){
  299. border-left: 1.5px dashed #7F7F7F;
  300. border-right: 1.5px dashed #7F7F7F;
  301. }
  302. }
  303. .up{
  304. font-size: 32rpx;
  305. font-weight: 600;
  306. color: #1D7BFF;
  307. line-height: 48rpx;
  308. margin-bottom: 5rpx;
  309. /deep/ .u-icon{
  310. display: block;
  311. }
  312. }
  313. .down{
  314. font-size: 24rpx;
  315. font-weight: 400;
  316. color: #7F7F7F;
  317. line-height: 37rpx;
  318. }
  319. }
  320. .card{
  321. position: relative;
  322. height: 328rpx;
  323. background: url(https://unsplash.it/670/328?id=1) no-repeat;
  324. background-size: 100%;
  325. border-radius: 24rpx;
  326. overflow: hidden;
  327. padding: 26rpx 40rpx;
  328. box-sizing: border-box;
  329. .logo{
  330. display: block;
  331. max-height: 68rpx;
  332. width: auto;
  333. margin-bottom: 74rpx;
  334. }
  335. .left{flex: 1;}
  336. .card-btn{
  337. width: 144rpx;
  338. margin-left: 110rpx;
  339. text-align: center;
  340. height: 50rpx;
  341. line-height: 50rpx;
  342. background-color: #fff;
  343. font-size: 24rpx;
  344. font-weight: 500;
  345. color: #1C84FF;
  346. border-radius: 50rpx;
  347. }
  348. .card-title{
  349. font-size: 36rpx;
  350. font-weight: bold;
  351. color: #FFFFFF;
  352. line-height: 54rpx;
  353. margin-bottom: 12rpx;
  354. }
  355. .card-con{
  356. font-size: 24rpx;
  357. font-weight: 400;
  358. color: #E1E1E1;
  359. line-height: 32rpx;
  360. }
  361. }
  362. .order-state{
  363. .title{
  364. margin-bottom: 30rpx;
  365. .right{
  366. font-size: 24rpx;
  367. color: #00A447;
  368. }
  369. }
  370. background-color: #fff;
  371. padding: 20rpx;
  372. margin: 0 20rpx 50rpx;
  373. .state{
  374. text-align: center;
  375. /deep/ .u-icon{
  376. display: block;
  377. }
  378. .up{
  379. position: relative;
  380. }
  381. .down{
  382. font-size: 24rpx;
  383. font-weight: 400;
  384. color: #666666;
  385. line-height: 31rpx;
  386. }
  387. }
  388. }
  389. .tools{
  390. .tools-wrap{
  391. }
  392. .tool-item{
  393. padding: 12rpx 18rpx;
  394. background-color: #FBFBFB;
  395. margin-bottom: 20rpx;
  396. border-radius: 20rpx;
  397. overflow: hidden;
  398. .name{
  399. font-size: 32rpx;
  400. font-weight: 400;
  401. color: #363636;
  402. margin-left: 12rpx;
  403. }
  404. }
  405. .button-item{
  406. background-color: transparent;
  407. line-height: 1;
  408. font-size: 24rpx;
  409. font-weight: 400;
  410. color: #666666;
  411. border: 0;
  412. padding: 0;
  413. top: -2px;
  414. &::after{border: initial;}
  415. }
  416. }
  417. .pay-code-warp{
  418. height: 100vh;
  419. }
  420. </style>