288 lines
8.2 KiB
Vue
Raw Permalink Normal View History

2025-04-03 11:47:12 +08:00
<template>
<view class="page-content">
<view v-if="userInfo" class="user-box flex" :style="{'padding-top': statusBaeHeight + 60 + 'px'}">
<image v-if="userInfo.avatar" :src="userInfo.avatar" class="round margin-right-xl"
style="width: 160rpx;height:160rpx"></image>
<image v-else-if="barInfo.barLogo" :src="barInfo.barLogo" class="round margin-right-xl"
style="width: 160rpx;height:160rpx"></image>
<view v-else class='cu-avatar round margin-right-xl bg-zd' style="width: 200rpx;height:200rpx"></view>
<view class="flex-direction flex">
<text class="text-bold text-xxl margin-bottom">{{ barInfo.nickName || barInfo.barContactPhone }}</text>
<text class="text-sm margin-bottom-sm" style="color:#A0A5BA">店铺名称{{ barInfo.barName || '-'}}</text>
<text class="text-sm" style="color:#A0A5BA">店铺ID{{ barInfo.barNumber || '-' }}</text>
</view>
</view>
<view v-else class="user-box flex align-center justify-start"
:style="{'padding-top': statusBaeHeight + 60 + 'px'}">
<view class='cu-avatar round margin-right-xl'
style="width: 160rpx;height:160rpx;background-color: rgba(57, 229, 177, 0.48);"></view>
<view style="color: #0B0E26;font-size: 36rpx;margin-right:100rpx" @click="toLogin">登录/认证</view>
<!-- <button class="cu-btn bg-zd" style="width: 242rpx;height: 88rpx;" @click="toLogin">登录/认证</button> -->
</view>
<view v-if="barInfo" class="scan-box">
<view v-if="barInfo.authState == 0 || !barInfo.authEndTime" class="exprieTime">未认证</view>
<view v-else class="exprieTime">{{ barInfo.authEndTime }}认证到期</view>
<text>本月累计扫码酒款数量</text>
<view class="margin-top">
<view class="flex justify-between align-end margin-bottom-xs">
<text class="text-xxl text-bold">{{myScanData.scanCount}}</text>
<text class="text-xs">击败全国{{myScanData.percent}}%入驻门店</text>
</view>
<view class="cu-progress round striped active">
<view class="bg-green" :style="[{ width:`${myScanData.percent}%`}]"></view>
</view>
</view>
</view>
<!-- 功能区 -->
<view class="fun-box">
<view class="flex justify-between align-center margin-bottom" @click="toPage(1)">
<view class="flex align-center">
<image src="../../static/order.png" class="icon"></image>
<text class="text-lg">我参与的</text>
</view>
<text class="cuIcon-right"></text>
</view>
<view class="flex justify-between align-center margin-bottom" @click="toPage(2)">
<view class="flex align-center">
<image src="../../static/collect.png" class="icon"></image>
<text class="text-lg">我的收藏</text>
</view>
<text class="cuIcon-right"></text>
</view>
<view class="flex justify-between align-center margin-bottom" @click="toPage(3)">
<view class="flex align-center">
<image src="../../static/wineReview.png" class="icon"></image>
<text class="text-lg">我的酒评</text>
</view>
<text class="cuIcon-right"></text>
</view>
<view class="flex justify-between align-center" @click="toPage(4)">
<view class="flex align-center">
<image src="../../static/address.png" class="icon"></image>
<text class="text-lg">地址信息</text>
</view>
<text class="cuIcon-right"></text>
</view>
</view>
<view class="fun-box">
<view class="flex justify-between align-center margin-bottom" @click="toPage(5)">
<view class="flex align-center">
<image src="@/static/wenhao.png" class="icon"></image>
<text class="text-lg">添加枝点小助手</text>
</view>
<text class="cuIcon-right"></text>
</view>
<view class="flex justify-between align-center margin-bottom" @click="toPage(6)">
<view class="flex align-center">
<image src="@/static/code.png" class="icon"></image>
<text class="text-lg">意见反馈</text>
</view>
<text class="cuIcon-right"></text>
</view>
<view class="flex justify-between align-center" @click="toPage(7)">
<view class="flex align-center">
<image src="../../static/setting.png" class="icon"></image>
<text class="text-lg">设置</text>
</view>
<text class="cuIcon-right"></text>
</view>
</view>
<view v-if="userInfo" class="flex justify-center">
<button class="cu-btn btn" style="background-color: #dedede;" @click="logout">退出登录</button>
</view>
<loginPopup ref="loginRef" @loginSuccess="loginSuccess"></loginPopup>
</view>
</template>
<script>
import {
getBarInfo
} from '@/api/bar.js'
import { getMyScanData } from '@/api/user.js'
import loginPopup from '@/components/loginPopup.vue';
export default {
components: {
loginPopup
},
data() {
return {
loading: true,
statusBaeHeight: 40,
userInfo: null,
barInfo: null,
myScanData: {}
};
},
onLoad() {
this.statusBaeHeight = uni.getWindowInfo.statusBarHeight
},
onShow() {
this.userInfo = uni.getStorageSync('userInfo')
if (this.userInfo) {
this.loading = false
this.getBarInfoFun()
this.getMyScanDataFun()
}
},
methods: {
loginSuccess() {
this.userInfo = uni.getStorageSync('userInfo')
this.getBarInfoFun()
this.getMyScanDataFun()
},
// 获取酒吧信息
getBarInfoFun() {
getBarInfo().then(res => {
this.barInfo = res.data
})
},
// 获取我的扫码数据
getMyScanDataFun() {
getMyScanData().then(res => {
this.myScanData = res.data
})
},
// 跳转登录
toLogin() {
// uni.navigateTo({
// url: '/pages/index/chooseLogin'
// })
this.$refs.loginRef.open()
},
toPage(index) {
// if (!this.userInfo && index != 5) {
// uni.showModal({
// title: '请先登录',
// content: '登录后才能查看更多内容',
// success: (res) => {
// if (res.confirm) {
// uni.navigateTo({
// url: '/pages/index/chooseLogin'
// })
// }
// }
// })
// return
// }
if (!uni.getStorageSync('token') && index != 5) {
this.$refs.loginRef.open()
return
}
switch (index) {
case 1: // 我参与的
uni.switchTab({
url: '/pages/index/myJoin'
})
break;
case 2: // 我的关注
uni.navigateTo({
url: '/pagesMy/myAttention'
})
break;
case 3: // 我的酒评
uni.navigateTo({
url: '/pagesMy/myWineReview'
})
break;
case 4: // 我的地址
uni.navigateTo({
url: '/pagesMy/myAddress'
})
break;
case 5: // 添加枝点小助手
uni.navigateTo({
url: '/pagesMy/addAiad'
})
break;
case 6: // 意见反馈
uni.navigateTo({
url: '/pagesMy/feedback'
})
break;
case 7: // 设置
uni.navigateTo({
url: '/pagesMy/setting'
})
default:
break;
}
},
// 退出登录
logout() {
uni.showModal({
title: '提示',
content: '确定要退出登录吗?',
success: (res) => {
if (res.confirm) {
uni.clearStorageSync()
this.userInfo = null
this.barInfo = null
// uni.showToast({
// title: '退出登录成功',
// icon: 'none'
// })
}
}
})
}
}
}
</script>
<style lang="scss" scoped>
.page-content {
height: 100vh;
overflow-y: auto;
padding-bottom: 40rpx;
// padding-bottom: calc(110rpx + constant(safe-area-inset-bottom));
// padding-bottom: calc(110rpx + env(safe-area-inset-bottom));
background: #F2F2F2;
.user-box {
margin-left: 36rpx;
margin-right: 32rpx;
}
.scan-box {
position: relative;
margin-top: 52rpx;
background-color: #FFF;
padding: 28rpx 24rpx;
margin-left: 36rpx;
margin-right: 32rpx;
border-radius: 20rpx;
.exprieTime {
position: absolute;
right: 0;
top: 0;
background-color: #FFED34;
border-radius: 0 20rpx 0 30rpx;
padding: 10rpx 20rpx;
}
}
.fun-box {
border-radius: 30rpx;
padding: 40rpx 38rpx;
background-color: #FFF;
margin: 26rpx 32rpx 32rpx 36rpx;
.icon {
width: 80rpx;
height: 80rpx;
margin-right: 40rpx;
}
}
}
.btn {
width: 686rpx;
height: 104rpx;
border-radius: 30rpx;
margin: 0 auto;
// box-shadow: 0px 10px 24px 0px rgba(43, 45, 51, 0.2);
}
</style>