center.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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="box">
  8. <view class="home_top">
  9. <view class="base-info block-wrap u-flex u-row-between" @click="$u.route('/center/memberinfo',{type:'redirectTo'})" v-if="vuex_member_info.name">
  10. <view class="left u-flex">
  11. <u-avatar :src="avatar" size="140rpx"></u-avatar>
  12. <view class="info">
  13. <view class="name ellipsis-1">{{vuex_member_info.name||vuex_member_info.nickName}}</view>
  14. <view class="mobile u-flex">
  15. <text class="mobile">{{vuex_member_info.mobile|hidePhoneNumber}}</text>
  16. </view>
  17. </view>
  18. </view>
  19. <!-- <u-icon @click="$u.route('/center/memberinfo',{type:'redirectTo'})" name="setting-fill" color="#333333" size="38rpx"></u-icon> -->
  20. </view>
  21. <view class="base-info block-wrap u-flex u-row-between" @click="goLogin" v-else>
  22. <view class="left u-flex">
  23. <u-avatar :src="staticUrl+'/img/avatar.png'" size="140rpx"></u-avatar>
  24. <view class="info">
  25. <view class="name ellipsis-1">登录/注册</view>
  26. <text class="mobile">登录查看更多</text>
  27. </view>
  28. </view>
  29. <!-- <u-icon name="setting-fill" color="#333333" size="38rpx"></u-icon> -->
  30. </view>
  31. </view>
  32. </view>
  33. <view class="tools block-wrap">
  34. <!-- <view class="title">常用工具</view> -->
  35. <view class="tools-wrap">
  36. <view class=""
  37. v-for="(item,index) in tools"
  38. @click="toolsClick(item)"
  39. :key="index">
  40. <view class="tool-item u-flex u-row-between" v-if="!item.chat">
  41. <view class="left u-flex">
  42. <u-icon :name="item.ico" color="#333333" size="55rpx"></u-icon>
  43. <text class="name">{{item.name}}</text>
  44. </view>
  45. <u-icon name="arrow-right" color="#ddd" size="40rpx"></u-icon>
  46. </view>
  47. <view class="tool-item" v-if="item.chat==1">
  48. <button class="button-item u-flex u-row-between" type="default" open-type="contact">
  49. <view class="left u-flex">
  50. <u-icon :name="item.ico" color="#333333" size="55rpx"></u-icon>
  51. <text class="name">{{item.name}}</text>
  52. </view>
  53. <u-icon name="arrow-right" color="#ddd" size="40rpx"></u-icon>
  54. </button>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. <tabbar :tabbarIndexProps="2" />
  60. </view>
  61. </template>
  62. <script>
  63. import { systemInfo } from "@/mixin.js";
  64. import tabbar from "../components/tabbar.vue"
  65. export default {
  66. components:{
  67. tabbar
  68. },
  69. mixins:[systemInfo],
  70. data() {
  71. return {
  72. staticUrl:this.$commonConfig.staticUrl,
  73. avatar:this.$commonConfig.staticUrl+'/img/avatar.png',
  74. memberInfo:{},
  75. customerMobile:'',
  76. tools:[
  77. // {name:'观看记录',url:'/center/viewrecord',ico:this.$commonConfig.staticUrl+'/img/center-record.png',checkauth:true},
  78. {name:'领券中心',url:'/center/mycoupon',ico:this.$commonConfig.staticUrl+'/img/center-coupon.png',checkauth:true},
  79. // {name:'开具发票',url:'center/invoice',ico:this.$commonConfig.staticUrl+'/img/center-ticket.png',checkauth:true},
  80. {name:'我的订单',url:'center/order',ico:this.$commonConfig.staticUrl+'/img/center-order.png',checkauth:true},
  81. {name:'客服热线',url:'',ico:this.$commonConfig.staticUrl+'/img/center-call.png',checkauth:true,phone:''},
  82. {name:'全民分享',url:'/center/applyshare',ico:this.$commonConfig.staticUrl+'/img/center-share.png',checkauth:true},
  83. // {name:'在线客服',chat:'1',ico:this.$commonConfig.staticUrl+'/img/center-call.png'},
  84. ]
  85. }
  86. },
  87. onShow() {
  88. console.log('this.vuex_member_info',this.vuex_member_info);
  89. if(this.vuex_member_info.id){
  90. this.getMemberInfo();
  91. }
  92. },
  93. onLoad() {
  94. this.getSystemInfo();
  95. },
  96. methods: {
  97. getMemberInfo(){
  98. this.$u.api.personalIndex({userid:this.vuex_member_info.id}).then(res=>{
  99. this.memberInfo = res.data.memberInfo;
  100. this.avatar = res.data.memberInfo.avatar;
  101. console.log('this.avatar',this.avatar);
  102. this.tools.forEach(item => {
  103. if (item.name === '客服热线') {
  104. item.phone = res.data.customerMobile;
  105. }
  106. });
  107. this.$u.vuex('vuex_member_info', res.data.memberInfo);
  108. const isExist = this.tools.some(item => item.name === '实名认证');
  109. if(!res.data.memberInfo.isAuth&&!isExist){
  110. this.tools.push({name:'实名认证',url:'center/factorauth',ico:this.$commonConfig.staticUrl+'/img/center-ticket.png',checkauth:true})
  111. }
  112. // console.log('memberInfo',this.memberInfo);
  113. }).catch(err=>{
  114. console.log('memberInfo',err.data);
  115. })
  116. },
  117. toolsClick(item){
  118. let that = this;
  119. console.log('item',item);
  120. // if(item.name!=='在线客服'&&item.name!=='客服热线'&&item.name!=='实名认证'&&item.name!=='我的订单'){
  121. // uni.showToast({
  122. // title:'开发中',
  123. // icon:"none"
  124. // })
  125. // return
  126. // }
  127. if ('phone' in item) {
  128. if(!item.phone){
  129. uni.showToast({
  130. title:'电话号码为空',
  131. icon:"none"
  132. })
  133. return
  134. }
  135. uni.makePhoneCall({
  136. phoneNumber: item.phone,
  137. success() {
  138. console.log('success');
  139. },
  140. fail() {
  141. console.log('fail');
  142. }
  143. });
  144. return
  145. }
  146. if ('chat' in item) {
  147. return
  148. }
  149. console.log('item.checkauth',item.checkauth);
  150. if(item.checkauth){
  151. this.checkauth(item.url)
  152. }else{
  153. uni.$u.route(item.url);
  154. }
  155. },
  156. goLogin(){
  157. uni.setStorage({
  158. key: 'backUrl',
  159. data:'center/center' ,
  160. success: function () {
  161. uni.$u.route('/pages/login/login')
  162. }
  163. });
  164. },
  165. checkauth(pageUrl){
  166. if(this.vuex_member_info.name){
  167. uni.$u.route(pageUrl)
  168. }else{
  169. uni.showModal({
  170. title: '提示',
  171. content: '你需要登录后,才可使用此功能!',
  172. success: res => {
  173. if (res.confirm) {
  174. uni.setStorage({
  175. key: 'backUrl',
  176. data:pageUrl ,
  177. success: function () {
  178. uni.$u.route('/pages/login/login')
  179. }
  180. });
  181. }
  182. }
  183. })
  184. }
  185. }
  186. }
  187. }
  188. </script>
  189. <style>
  190. page{
  191. background-color: #fff;
  192. padding-top: 0;
  193. }
  194. </style>
  195. <style lang="scss" scoped>
  196. $boxHeight:418rpx;
  197. .box { width: 100%;height:$boxHeight; margin: auto; overflow: hidden; }
  198. .home_top {
  199. position: relative;
  200. width: 100%;
  201. z-index: 2;
  202. height: $boxHeight;
  203. .base-info{
  204. position: absolute;
  205. left: 32rpx;
  206. right: 32rpx;
  207. bottom: 90rpx;
  208. color: #fff;
  209. }
  210. }
  211. .home_top:after { width: 180%; height: $boxHeight; position: absolute; left: -40%; top: 0; z-index: -1; content: ''; border-radius: 0 0 50% 50%; background: linear-gradient(180deg, #EE0C0C 0%, #F39D9F 100%); }
  212. .block-wrap{
  213. margin: 24rpx 32rpx;
  214. }
  215. .title{
  216. font-size: 32rpx;
  217. font-weight: 600;
  218. color: #333333;
  219. line-height: 45rpx;
  220. margin-bottom: 30rpx;
  221. }
  222. .base-info{
  223. margin-bottom: 10rpx;
  224. .info{
  225. margin-left: 30rpx;
  226. .name{
  227. font-size: 36rpx;
  228. font-weight: bold;
  229. color: #FFFFFF;
  230. line-height: 54rpx;
  231. margin-bottom: 10rpx;
  232. }
  233. .mobile{
  234. width: fit-content;
  235. font-size: 28rpx;
  236. font-weight: 400;
  237. color: #FFFFFF;
  238. line-height: 42rpx;
  239. }
  240. }
  241. }
  242. .tools{
  243. .tools-wrap{
  244. }
  245. .tool-item{
  246. padding: 12rpx 18rpx;
  247. background-color: #FBFBFB;
  248. margin-bottom: 20rpx;
  249. border-radius: 20rpx;
  250. overflow: hidden;
  251. .name{
  252. font-size: 32rpx;
  253. font-weight: 400;
  254. color: #363636;
  255. margin-left: 12rpx;
  256. }
  257. }
  258. .button-item{
  259. background-color: transparent;
  260. line-height: 1;
  261. font-size: 24rpx;
  262. font-weight: 400;
  263. color: #666666;
  264. border: 0;
  265. padding: 0;
  266. top: -2px;
  267. &::after{border: initial;}
  268. }
  269. }
  270. </style>