123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- <template>
- <view>
- <view class="sh-userinfo-box">
- <view class="head-wrap" :style="{ background: detail.image ? `url(${detail.image}) no-repeat center / 100% 100%` : detail.color }">
- <!-- 标题栏 -->
- <shopro-navbar
- backIconName=""
- backText="我的"
- :backTextStyle="{
- color: '#fff',
- fontSize: '40rpx',
- fontWeight: '500'
- }"
- :background="navBackground"
- >
- <view slot="right" class="u-flex u-row-center u-col-center u-m-r-20" v-if="userOtherData.is_store" @tap="goStore">
- <button class="u-reset-button merchant-btn">切换商家版</button>
- </view>
- </shopro-navbar>
- <view class="user-head u-flex u-row-between">
- <view class="u-flex">
- <!-- 个人信息 -->
- <view class="info-box">
- <view class="u-flex" @tap="$Router.push('/pages/user/info')">
- <view class="head-img-wrap">
- <image class="head-img" :src="userInfo.avatar || $IMG_URL + '/imgs/base_avatar.png'" mode="aspectFill"></image>
- <!-- 同步信息 -->
- <block v-if="showRefresh">
- <button @tap.stop="showModal = true" class="u-reset-button u-flex u-row-center u-col-center refresh-btn">
- <view class="u-iconfont uicon-reload" style="color: #fff;font-size: 24rpx;"></view>
- </button>
- </block>
- </view>
- <text class="user-name u-ellipsis-1">{{ userInfo.nickname || '请登录~' }}</text>
- </view>
- </view>
- <!-- 等级 -->
- <view v-if="userInfo.group" class="grade-tag tag-box u-flex">
- <image v-if="userInfo.group.image" class="tag-img" :src="userInfo.group.image" mode=""></image>
- <text class="tag-title">{{ userInfo.group.name }}</text>
- </view>
- </view>
- <view class="u-flex" v-if="userInfo.nickname">
- <button class=" u-reset-button code-btn" @tap="onShare"><text class="iconfont icon-qrcode"></text></button>
- </view>
- </view>
- </view>
- </view>
- <!-- 绑定手机 -->
- <view class="notice-box u-flex u-row-between u-p-30" v-if="userInfo.verification && !userInfo.verification.mobile" @tap="bindMobile">
- <view class="notice-detail">点击绑定手机号,确保账户安全</view>
- <button class="u-reset-button bindPhone">去绑定</button>
- </view>
- <!-- 更新信息 -->
- <view class="cu-modal" :class="{ show: showModal }" @tap="showModal = false">
- <view class="cu-dialog" style="width: 600rpx;">
- <view class="modal-box">
- <view class="modal-head">提示</view>
- <view class="modal-content">更新微信信息?</view>
- <view class="modal-bottom u-flex u-col-center">
- <button class="u-reset-button modal-btn cancel-btn" :hover-stay-time="100" hover-class="btn-hover" @tap="showModal = false">取消</button>
- <button class="u-reset-button modal-btn save-btn" :hover-stay-time="100" hover-class="btn-hover" @tap="refreshWechatUser">确定</button>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- /**
- * 自定义之个人信息
- * @property {Object} detail - 个人信息
- */
- import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
- import wechat from '@/shopro/wechat/wechat';
- export default {
- components: {},
- data() {
- return {
- showModal: false,
- platform: this.$platform.get(), //当前平台。
- isFixed: false,
- navBackground: {
- background: 'none'
- }
- };
- },
- mounted() {},
- props: {
- detail: {},
- scrollTop: {
- type: Number,
- default: 0
- }
- },
- watch: {
- scrollTop(val) {
- let backgroundText = this.detail.image ? `url(${this.detail.image})` : this.detail.color;
- this.isFixed = val > 50 ? true : false;
- this.navBackground.background = val > 50 ? backgroundText : 'none';
- }
- },
- computed: {
- ...mapGetters(['isLogin', 'userInfo', 'userOtherData']),
- showRefresh() {
- if (this.isLogin) {
- if (this.platform === 'wxOfficialAccount') {
- return this.userInfo.verification?.wxOfficialAccount;
- }
- if (this.platform === 'wxMiniProgram') {
- return this.userInfo.verification.wxMiniProgram;
- }
- if (this.platform === 'App') {
- return this.userInfo.verification.wxOpenPlatform;
- }
- }
- return false;
- }
- },
- methods: {
- ...mapActions(['getUserInfo', 'showAuthModal']),
- jump(path, query) {
- this.$Router.push({
- path: path,
- query: query
- });
- },
- // 点击分享
- onShare() {
- this.$emit('onShare');
- },
- // 同步用户信息
- async refreshWechatUser() {
- this.showModal = false;
- let token = await wechat.refresh();
- token && this.getUserInfo(token);
- },
- // 跳转门店
- goStore() {
- if (this.userOtherData.store_id) {
- uni.setStorageSync('storeId', this.userOtherData.store_id);
- this.jump('/pages/app/merchant/index', { storeId: this.userOtherData.store_id });
- } else {
- if (uni.getStorageSync('storeId')) {
- this.jump('/pages/app/merchant/index');
- } else {
- this.jump('/pages/app/merchant/list');
- }
- }
- // #ifdef MP-WEIXIN
- this.$store.commit('subscribeMessage', 'store');
- // #endif
- },
- // 绑定手机号
- bindMobile() {
- this.showAuthModal('bindMobile');
- }
- }
- };
- </script>
- <style lang="scss">
- // 更新信息
- .modal-box {
- width: 600rpx;
- .btn-hover {
- background-color: rgb(230, 230, 230);
- }
- .modal-head {
- padding-top: 48rpx;
- font-weight: 500;
- text-align: center;
- color: $u-main-color;
- }
- .modal-content {
- padding: 48rpx;
- font-size: 30rpx;
- text-align: center;
- color: $u-content-color;
- }
- .modal-bottom {
- .modal-btn {
- flex: 1;
- height: 100rpx;
- line-height: 100rpx;
- font-size: 32rpx;
- box-sizing: border-box;
- cursor: pointer;
- text-align: center;
- border-radius: 4rpx;
- }
- .cancel-btn {
- color: #666666;
- }
- .save-btn {
- color: #e9b461;
- }
- }
- }
- .sh-userinfo-box {
- position: relative;
- height: calc(var(--status-bar-height) + 300rpx);
- .head-wrap {
- powidth: 100%;
- height: 100%;
- .merchant-btn {
- width: 178rpx;
- height: 64rpx;
- line-height: 64rpx;
- background: #ffffff;
- border-radius: 32rpx;
- font-size: 26rpx;
- font-weight: 500;
- color: #a8700d;
- }
- }
- .user-head {
- width: 100%;
- padding-top: 30rpx;
- .info-box {
- padding-left: 30rpx;
- .head-img-wrap {
- position: relative;
- .refresh-btn {
- position: absolute;
- padding: 0;
- background: none;
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- background: #c9912c;
- top: -10rpx;
- right: 10rpx;
- }
- }
- .head-img {
- width: 94rpx;
- height: 94rpx;
- border-radius: 50%;
- background: #ccc;
- margin-right: 25rpx;
- overflow: hidden;
- }
- .user-name {
- font-size: 30rpx;
- font-weight: 500;
- color: #fff;
- line-height: 30rpx;
- width: 180rpx;
- }
- }
- .tag-box {
- background: rgba(0, 0, 0, 0.2);
- border-radius: 22rpx;
- margin-left: 10rpx;
- .tag-img {
- width: 40rpx;
- height: 40rpx;
- display: inline-block;
- border-radius: 50%;
- }
- .tag-title {
- font-size: 20rpx;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- line-height: 40rpx;
- padding: 0 10rpx;
- }
- }
- .code-btn {
- padding: 30rpx;
- .icon-qrcode {
- font-size: 50rpx;
- color: #fff;
- }
- }
- }
- .wallet {
- font-size: 20rpx;
- padding-left: 140rpx;
- .money {
- margin-right: 40rpx;
- }
- }
- }
- // 绑定微信公众号
- .notice-box {
- width: 750rpx;
- height: 70rpx;
- background: rgba(253, 239, 216, 1);
- padding: 0 35rpx;
- .notice-detail {
- font-size: 24rpx;
- font-weight: 400;
- color: rgba(204, 149, 59, 1);
- }
- .bindPhone {
- width: 135rpx;
- line-height: 52rpx;
- background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
- border-radius: 26rpx;
- padding: 0;
- font-size: 26rpx;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- }
- }
- </style>
|