2025-03-30 18:00:11 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="page-content">
|
2025-04-03 22:11:37 +08:00
|
|
|
|
<view v-if="userStatus === 'verified'" class="user-box flex" :style="{'padding-top': statusBaeHeight + 60 + 'px'}">
|
2025-03-30 18:00:11 +08:00
|
|
|
|
<image v-if="userInfo.avatar" :src="userInfo.avatar" class="avatar-img"></image>
|
|
|
|
|
<image v-else-if="barInfo.barLogo" :src="barInfo.barLogo" class="avatar-img"></image>
|
|
|
|
|
<view v-else class="avatar-placeholder flex align-center justify-center">
|
|
|
|
|
<text class="cuIcon-people" style="font-size: 60rpx; color: #FFFFFF;"></text>
|
|
|
|
|
</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>
|
2025-04-03 20:14:11 +08:00
|
|
|
|
<view v-else class="user-box flex align-center justify-start" :style="{'padding-top': statusBaeHeight + 60 + 'px'}" @click="handleUserBoxClick">
|
2025-03-30 18:00:11 +08:00
|
|
|
|
<view class="avatar-placeholder flex align-center justify-center">
|
2025-03-30 22:23:11 +08:00
|
|
|
|
<image src="/static/default-avatar.svg" class="default-avatar"></image>
|
2025-03-30 18:00:11 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="login-text flex align-center">
|
2025-04-03 22:11:37 +08:00
|
|
|
|
<view class="flex-col status-text">
|
|
|
|
|
<block v-if="userStatus === 'guest'">
|
|
|
|
|
<text>登录/认证</text>
|
|
|
|
|
</block>
|
|
|
|
|
<block v-else-if="userStatus === 'unverified'">
|
2025-04-04 13:00:55 +08:00
|
|
|
|
<!-- <text>您的门店未认证</text> -->
|
2025-04-03 22:11:37 +08:00
|
|
|
|
<text>请点击认证门店信息</text>
|
|
|
|
|
</block>
|
|
|
|
|
<block v-else-if="userStatus === 'verifying'">
|
|
|
|
|
<text>正在认证审核中</text>
|
2025-04-04 13:00:55 +08:00
|
|
|
|
<!-- <text>请耐心等待</text> -->
|
2025-04-03 22:11:37 +08:00
|
|
|
|
</block>
|
|
|
|
|
</view>
|
2025-03-30 18:00:11 +08:00
|
|
|
|
<text class="cuIcon-right" style="color: #999999; font-size: 32rpx;"></text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="barInfo" class="scan-box">
|
2025-04-03 20:14:11 +08:00
|
|
|
|
<view v-if="barInfo.authState == 0" class="exprieTime">未认证</view>
|
|
|
|
|
<view v-else-if="barInfo.authState == 1" class="exprieTime">认证中</view>
|
2025-03-30 18:00:11 +08:00
|
|
|
|
<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>
|
2025-04-03 00:24:29 +08:00
|
|
|
|
<text class="text-xs">击败全国{{myScanData.percent}}%认证门店</text>
|
2025-03-30 18:00:11 +08:00
|
|
|
|
</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 {
|
|
|
|
|
userInfo: null,
|
2025-04-01 20:53:26 +08:00
|
|
|
|
loading: true,
|
2025-03-30 18:00:11 +08:00
|
|
|
|
barInfo: null,
|
2025-04-01 20:53:26 +08:00
|
|
|
|
myScanData: null,
|
|
|
|
|
isLoggedIn: false,
|
|
|
|
|
statusBaeHeight: 40
|
2025-03-30 18:00:11 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
2025-04-03 20:14:11 +08:00
|
|
|
|
computed: {
|
|
|
|
|
// 用户状态
|
|
|
|
|
userStatus() {
|
|
|
|
|
if (!this.isLoggedIn) return 'guest' // 游客
|
|
|
|
|
if (!this.barInfo || this.barInfo.authState === 0) return 'unverified' // 未认证
|
|
|
|
|
if (this.barInfo.authState === 1) return 'verifying' // 认证中
|
|
|
|
|
return 'verified' // 认证通过
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-03-30 18:00:11 +08:00
|
|
|
|
onLoad() {
|
|
|
|
|
this.statusBaeHeight = uni.getWindowInfo.statusBarHeight
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
2025-04-01 20:53:26 +08:00
|
|
|
|
this.checkLoginStatus()
|
|
|
|
|
if (this.isLoggedIn) {
|
2025-03-30 18:00:11 +08:00
|
|
|
|
this.getBarInfoFun()
|
|
|
|
|
this.getMyScanDataFun()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2025-04-03 20:14:11 +08:00
|
|
|
|
// 生成临时token
|
|
|
|
|
generateTempToken() {
|
|
|
|
|
const tempToken = 'temp_' + Math.random().toString(36).substr(2, 9) + '_' + Date.now()
|
|
|
|
|
return tempToken
|
|
|
|
|
},
|
|
|
|
|
|
2025-04-01 20:53:26 +08:00
|
|
|
|
// 检查登录状态
|
|
|
|
|
checkLoginStatus() {
|
|
|
|
|
const token = uni.getStorageSync('token')
|
|
|
|
|
const userInfo = uni.getStorageSync('userInfo')
|
2025-04-03 20:14:11 +08:00
|
|
|
|
|
|
|
|
|
if (!token) {
|
|
|
|
|
// 如果没有token,生成临时token
|
|
|
|
|
const tempToken = this.generateTempToken()
|
|
|
|
|
uni.setStorageSync('token', tempToken)
|
|
|
|
|
this.isLoggedIn = false
|
|
|
|
|
this.userInfo = null
|
|
|
|
|
} else if (token.startsWith('temp_')) {
|
|
|
|
|
// 如果是临时token,说明是游客
|
|
|
|
|
this.isLoggedIn = false
|
|
|
|
|
this.userInfo = null
|
|
|
|
|
} else {
|
|
|
|
|
// 正式token,说明已登录
|
|
|
|
|
this.isLoggedIn = true
|
|
|
|
|
this.userInfo = userInfo
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-01 20:53:26 +08:00
|
|
|
|
this.loading = false
|
|
|
|
|
},
|
2025-03-30 18:00:11 +08:00
|
|
|
|
loginSuccess() {
|
|
|
|
|
this.userInfo = uni.getStorageSync('userInfo')
|
|
|
|
|
this.getBarInfoFun()
|
|
|
|
|
this.getMyScanDataFun()
|
|
|
|
|
},
|
|
|
|
|
// 获取酒吧信息
|
|
|
|
|
getBarInfoFun() {
|
2025-04-01 20:53:26 +08:00
|
|
|
|
if (!this.isLoggedIn) return
|
2025-03-30 18:00:11 +08:00
|
|
|
|
getBarInfo().then(res => {
|
2025-04-01 20:53:26 +08:00
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.barInfo = res.data
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
console.error('获取酒吧信息失败:', err)
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '获取酒吧信息失败',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
2025-03-30 18:00:11 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 获取我的扫码数据
|
|
|
|
|
getMyScanDataFun() {
|
2025-04-01 20:53:26 +08:00
|
|
|
|
if (!this.isLoggedIn) return
|
2025-03-30 18:00:11 +08:00
|
|
|
|
getMyScanData().then(res => {
|
2025-04-01 20:53:26 +08:00
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.myScanData = res.data
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
console.error('获取扫码数据失败:', err)
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '获取扫码数据失败',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
2025-03-30 18:00:11 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
2025-04-03 20:14:11 +08:00
|
|
|
|
// 处理用户信息区域点击
|
|
|
|
|
handleUserBoxClick() {
|
|
|
|
|
switch (this.userStatus) {
|
|
|
|
|
case 'guest':
|
|
|
|
|
this.$refs.loginRef.open()
|
|
|
|
|
break
|
|
|
|
|
case 'unverified':
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/index/registration'
|
|
|
|
|
})
|
|
|
|
|
break
|
|
|
|
|
case 'verifying':
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '您的门店正在认证中,请耐心等待',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
|
|
|
|
break
|
|
|
|
|
default:
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-04-01 20:53:26 +08:00
|
|
|
|
// 页面跳转
|
2025-03-30 18:00:11 +08:00
|
|
|
|
toPage(index) {
|
2025-04-01 20:53:26 +08:00
|
|
|
|
// 添加枝点小助手不需要登录
|
|
|
|
|
if (index === 5) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pagesMy/addAiad'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查登录状态
|
|
|
|
|
if (!this.isLoggedIn) {
|
2025-03-30 18:00:11 +08:00
|
|
|
|
this.$refs.loginRef.open()
|
|
|
|
|
return
|
|
|
|
|
}
|
2025-04-01 20:53:26 +08:00
|
|
|
|
|
2025-04-03 20:14:11 +08:00
|
|
|
|
// 检查认证状态
|
|
|
|
|
if (this.userStatus === 'unverified') {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/index/registration'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 认证中状态只能查看部分功能
|
|
|
|
|
if (this.userStatus === 'verifying') {
|
|
|
|
|
if (index === 6) { // 意见反馈
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pagesMy/feedback'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '您的门店正在认证中,请耐心等待',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 已认证状态可以访问所有功能
|
2025-03-30 18:00:11 +08:00
|
|
|
|
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 6: // 意见反馈
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pagesMy/feedback'
|
|
|
|
|
})
|
|
|
|
|
break;
|
|
|
|
|
case 7: // 设置
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pagesMy/setting'
|
|
|
|
|
})
|
2025-04-01 20:53:26 +08:00
|
|
|
|
break;
|
2025-03-30 18:00:11 +08:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 退出登录
|
|
|
|
|
logout() {
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: '确定要退出登录吗?',
|
|
|
|
|
success: (res) => {
|
|
|
|
|
if (res.confirm) {
|
2025-04-03 22:18:04 +08:00
|
|
|
|
// 清除本地存储的用户信息
|
2025-04-01 20:53:26 +08:00
|
|
|
|
uni.removeStorageSync('token')
|
|
|
|
|
uni.removeStorageSync('userInfo')
|
2025-04-03 22:18:04 +08:00
|
|
|
|
uni.removeStorageSync('barInfo')
|
2025-04-01 20:53:26 +08:00
|
|
|
|
|
2025-04-03 22:18:04 +08:00
|
|
|
|
// 跳转到首页
|
2025-04-01 20:53:26 +08:00
|
|
|
|
uni.reLaunch({
|
2025-04-03 22:18:04 +08:00
|
|
|
|
url: '/pages/index/index'
|
2025-04-01 20:53:26 +08:00
|
|
|
|
})
|
2025-03-30 18:00:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
2025-04-01 20:53:26 +08:00
|
|
|
|
},
|
|
|
|
|
// 关闭登录弹窗
|
|
|
|
|
closeLoginPopup() {
|
|
|
|
|
this.$refs.loginRef.close()
|
|
|
|
|
},
|
|
|
|
|
// 去登录
|
|
|
|
|
toLogin() {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/index/registration'
|
|
|
|
|
})
|
2025-03-30 18:00:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.page-content {
|
|
|
|
|
height: 100vh;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding-bottom: 40rpx;
|
2025-04-04 00:10:01 +08:00
|
|
|
|
background: #f9f9f9;
|
2025-03-30 18:00:11 +08:00
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-img {
|
|
|
|
|
width: 160rpx;
|
|
|
|
|
height: 160rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
margin-right: 48rpx;
|
|
|
|
|
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-placeholder {
|
|
|
|
|
width: 160rpx;
|
|
|
|
|
height: 160rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
margin-right: 48rpx;
|
|
|
|
|
background: #F7F7F7;
|
|
|
|
|
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.default-avatar {
|
|
|
|
|
width: 80rpx;
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login-text {
|
|
|
|
|
height: 160rpx;
|
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
2025-04-03 22:11:37 +08:00
|
|
|
|
|
|
|
|
|
.status-text {
|
|
|
|
|
margin-right: 12rpx;
|
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
color: #0B0E26;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
line-height: 48rpx;
|
|
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
margin-bottom: 8rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-03-30 18:00:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
width: 686rpx;
|
|
|
|
|
height: 104rpx;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
</style>
|