| | |
| | | <view class="header"> |
| | | <text class="font-16 dark-gray">{{userInfo.shopName}}</text> |
| | | <view class="flex align-center"> |
| | | <navigator url="../member/index" open-type="switchTab" hover-class="none"> |
| | | <text class="icon gray iconfont iconsousuo mr-15"></text> |
| | | </navigator> |
| | | <text class="icon gray iconfont iconsousuo mr-15" @click="linkToMember"></text> |
| | | <text class="icon gray iconfont iconjia" @click.stop="isShow=!isShow"></text> |
| | | </view> |
| | | <popover class="popup-content" v-show="isShow"> |
| | |
| | | this.isShow = false; |
| | | }, |
| | | methods:{ |
| | | linkToMember(){ |
| | | getApp().globalData.isFocus = true; |
| | | uni.switchTab({ |
| | | url: '../member/index' |
| | | }); |
| | | }, |
| | | getUserInfo(){ |
| | | let roleInfo = this.$httpUtils.getRoleInfo(); |
| | | this.userInfo = roleInfo || {}; |