center.vue 7.5 KB

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