Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,338 @@
|
||||
<script>
|
||||
export default {
|
||||
inject: ['intoPage', 'tapQrCode', 'goMenuPage', 'goEdit', 'bindPhone', 'checkApp'],
|
||||
props: {
|
||||
userInfo: {
|
||||
type: Object,
|
||||
default: () => {}
|
||||
},
|
||||
property: {
|
||||
type: Array,
|
||||
default: () => []
|
||||
},
|
||||
// perShowType 0 手机号 1 ID
|
||||
perShowType: {
|
||||
type: Number,
|
||||
default: 0
|
||||
}
|
||||
},
|
||||
computed:{
|
||||
showMerBtn(){
|
||||
return this.$store.state.app.channel_func_status
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view class="">
|
||||
<view class="acea-row row-middle user-wrapper">
|
||||
<!-- 头像 -->
|
||||
<view class="avatar relative" :class="{'svip-border': userInfo.pay_vip_status}" @click="goEdit">
|
||||
<image class="avatar-img" :src="userInfo.avatar" mode="aspectFill" v-if="userInfo.avatar"></image>
|
||||
<image class="avatar-img" src="@/static/images/f.png" mode="aspectFill" v-else></image>
|
||||
<image class="vip-badge" src="@/static/img/svip_badge.png" v-show="userInfo.pay_vip_status"></image>
|
||||
</view>
|
||||
<view class="name-wrap">
|
||||
<view class="name" v-if="userInfo.nickname">{{ userInfo.nickname }}</view>
|
||||
<view class="name display-add" v-else @tap="intoPage">请点击授权</view>
|
||||
<view class="flex-y-center mt-10" v-show="userInfo.is_channel || userInfo.is_service">
|
||||
<view class="h-42 flex-center fs-22 pl-16 pr-14 rd-30rpx b-c mr-12 text--w111-666"
|
||||
v-show="userInfo.is_channel && showMerBtn" @tap="checkApp(1)">采购商
|
||||
<text class="iconfont icon-ic_rightarrow fs-22"></text>
|
||||
</view>
|
||||
<view class="h-42 flex-center fs-22 pl-16 pr-14 rd-30rpx b-c text--w111-666"
|
||||
v-show="userInfo.is_service" @tap="checkApp(2)">商家管理
|
||||
<text class="iconfont icon-ic_rightarrow fs-22"></text>
|
||||
</view>
|
||||
</view>
|
||||
<template v-if="!userInfo.is_channel && !userInfo.is_service">
|
||||
<view class="bind-phone" v-if="!userInfo.phone && userInfo.uid" @tap="bindPhone">绑定手机号</view>
|
||||
<view class="phone" v-else>{{ perShowType ? 'ID:' + userInfo.uid : userInfo.phone }}</view>
|
||||
</template>
|
||||
</view>
|
||||
<text class="iconfont icon-a-ic_QRcode set-icon fs-40" @click="tapQrCode"><text class="tips">会员码</text></text>
|
||||
<text class="iconfont icon-a-ic_setup1 set-icon fs-40 mx-34" @click="intoPage('/pages/users/user_set/index')"></text>
|
||||
<text class="iconfont icon-ic_message3 set-icon fs-40" @click="intoPage('/pages/users/message_center/index')">
|
||||
<text v-if="userInfo.service_num" class="number">{{ userInfo.service_num >= 100 ? '99+' : userInfo.service_num }}</text>
|
||||
</text>
|
||||
</view>
|
||||
<view class="acea-row row-between promotion-wrapper">
|
||||
<view v-for="(item, index) in property" @click="goMenuPage(item.url)" :key="index">
|
||||
<text>{{ item.label }}</text>
|
||||
<text class="value num-fa-semi">{{ item.value || 0 }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 会员 -->
|
||||
<view class="member-wrapper" v-if="userInfo.vip" @click="intoPage(userInfo.level_status == 1 ? '/pages/users/user_vip/index' : '/pages/annex/vip_grade_active/index')">
|
||||
<view class="card">
|
||||
<view class="acea-row row-middle top">
|
||||
<view class="name-wrap">
|
||||
<view class="name">
|
||||
<text class="iconfont icon-ic_crown fs-31"></text>
|
||||
{{ userInfo.vip_name }}
|
||||
</view>
|
||||
<view>
|
||||
商城购物可享
|
||||
<text class="number num-fa-semi">{{ userInfo.vip_discount }}</text>
|
||||
折
|
||||
</view>
|
||||
</view>
|
||||
<view class="icon-wrap">
|
||||
<view class="icon">
|
||||
<text class="iconfont icon-a-ic_discount1 fs-20"></text>
|
||||
</view>
|
||||
<view>购物折扣</view>
|
||||
</view>
|
||||
<view class="icon-wrap">
|
||||
<view class="icon">
|
||||
<text class="iconfont icon-ic_badge fs-20"></text>
|
||||
</view>
|
||||
<view>专属徽章</view>
|
||||
</view>
|
||||
<text class="iconfont icon-ic_rightarrow fs-24 ml-20"></text>
|
||||
</view>
|
||||
<view class="acea-row row-middle row-between bottom">
|
||||
<view class="acea-row">
|
||||
<view class="icon-list">
|
||||
<image class="img" src="@/static/images/vip-icon-row.png" mode=""></image>
|
||||
</view>
|
||||
<view class="text">掌握更多快速升级技巧</view>
|
||||
</view>
|
||||
<view class="button">去获取</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 公告模块 -->
|
||||
<!-- <view class="acea-row row-middle grow">
|
||||
<view class="iconfont icon-ic_horn1 fs-28"></view>
|
||||
<view class="text">查看会员成长值,获得更优惠购物折扣~</view>
|
||||
<view class="iconfont icon-ic_rightarrow fs-24"></view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.user-wrapper {
|
||||
padding: 40rpx 40rpx 40rpx 32rpx;
|
||||
|
||||
.avatar {
|
||||
width: 136rpx;
|
||||
height: 136rpx;
|
||||
border-radius: 50%;
|
||||
.avatar-img{
|
||||
width: 100%;
|
||||
height:100%;
|
||||
border-radius: 50%;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.vip-badge{
|
||||
position: absolute;
|
||||
top: -10rpx;
|
||||
right: 0;
|
||||
width: 36rpx;
|
||||
height: 36rpx;
|
||||
}
|
||||
.svip-border{
|
||||
border: 2rpx solid #F1BB0D;
|
||||
}
|
||||
|
||||
.name-wrap {
|
||||
flex: 1;
|
||||
padding: 0 24rpx;
|
||||
color: #333333;
|
||||
}
|
||||
.bind-phone {
|
||||
margin-top: 12rpx;
|
||||
background: #fff;
|
||||
border-radius: 30px;
|
||||
width: max-content;
|
||||
text-align: center;
|
||||
font-size: 20rpx;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
line-height: 28rpx;
|
||||
padding: 6rpx 16rpx;
|
||||
}
|
||||
.name {
|
||||
font-weight: 500;
|
||||
font-size: 32rpx;
|
||||
line-height: 44rpx;
|
||||
}
|
||||
|
||||
.phone {
|
||||
margin-top: 10rpx;
|
||||
font-size: 24rpx;
|
||||
line-height: 34rpx;
|
||||
}
|
||||
.tips::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -6rpx;
|
||||
left: calc(50% - 6rpx);
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 6rpx solid transparent;
|
||||
border-right: 6rpx solid transparent;
|
||||
border-top: 6rpx solid #ffd89c; /* 修改颜色以改变三角形颜色 */
|
||||
}
|
||||
.tips {
|
||||
position: absolute;
|
||||
bottom: 100%;
|
||||
left: 50%;
|
||||
height: 28rpx;
|
||||
padding: 0 14rpx;
|
||||
border-radius: 14rpx;
|
||||
margin-bottom: 4rpx;
|
||||
background-color: #ffd89c;
|
||||
transform: translateX(-50%);
|
||||
white-space: nowrap;
|
||||
font-size: 16rpx;
|
||||
line-height: 28rpx;
|
||||
color: #9e5e1a;
|
||||
}
|
||||
|
||||
.number {
|
||||
position: absolute;
|
||||
top: -8rpx;
|
||||
right: 0;
|
||||
min-width: 10rpx;
|
||||
height: 24rpx;
|
||||
padding: 0 6rpx;
|
||||
border: 2rpx solid var(--view-theme);
|
||||
border-radius: 12rpx;
|
||||
background-color: #ffffff;
|
||||
transform: translateX(50%);
|
||||
font-weight: 500;
|
||||
font-size: 18rpx;
|
||||
line-height: 24rpx;
|
||||
color: var(--view-theme);
|
||||
}
|
||||
.set-icon {
|
||||
position: relative;
|
||||
align-self: flex-start;
|
||||
margin-top: 22rpx;
|
||||
}
|
||||
}
|
||||
.promotion-wrapper {
|
||||
padding: 0 48rpx;
|
||||
font-size: 26rpx;
|
||||
line-height: 36rpx;
|
||||
color: #999999;
|
||||
|
||||
.value {
|
||||
margin-left: 8rpx;
|
||||
font-family: SemiBold;
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
.member-wrapper {
|
||||
margin: 28rpx 20rpx 20rpx;
|
||||
color: #7e4b06;
|
||||
|
||||
.card {
|
||||
position: relative;
|
||||
border-radius: 32rpx;
|
||||
// margin-bottom: -28rpx; // 公告模块
|
||||
background: linear-gradient(-270deg, #f4dfaf 0%, #d0a15b 100%);
|
||||
|
||||
.top {
|
||||
padding: 25rpx 35rpx;
|
||||
}
|
||||
|
||||
.name-wrap {
|
||||
flex: 1;
|
||||
font-size: 19rpx;
|
||||
line-height: 26rpx;
|
||||
}
|
||||
|
||||
.name {
|
||||
margin-bottom: 4rpx;
|
||||
font-weight: 700;
|
||||
font-size: 34rpx;
|
||||
line-height: 48rpx;
|
||||
|
||||
.iconfont {
|
||||
margin-right: 12rpx;
|
||||
font-size: 36rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-wrap {
|
||||
font-size: 18rpx;
|
||||
line-height: 26rpx;
|
||||
|
||||
+ .icon-wrap {
|
||||
margin-left: 32rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
border-radius: 50%;
|
||||
margin: 0 auto 6rpx;
|
||||
background-color: #eccd8b;
|
||||
text-align: center;
|
||||
line-height: 40rpx;
|
||||
|
||||
.iconfont {
|
||||
font-size: 24rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.bottom {
|
||||
position: relative;
|
||||
padding: 17rpx 35rpx;
|
||||
font-size: 24rpx;
|
||||
.icon-list {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-right: 22rpx;
|
||||
.img {
|
||||
width: 86rpx;
|
||||
height: 32rpx;
|
||||
}
|
||||
}
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 35rpx;
|
||||
left: 35rpx;
|
||||
height: 1rpx;
|
||||
background-color: rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
}
|
||||
|
||||
.text {
|
||||
}
|
||||
|
||||
.button {
|
||||
height: 48rpx;
|
||||
padding: 0 24rpx;
|
||||
border-radius: 24rpx;
|
||||
background-color: #eccd8b;
|
||||
font-weight: 500;
|
||||
line-height: 48rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.grow {
|
||||
padding: 50rpx 40rpx 20rpx;
|
||||
border-radius: 32rpx;
|
||||
background: linear-gradient(180deg, #faeed9 0%, #ffffff 100%);
|
||||
|
||||
.text {
|
||||
flex: 1;
|
||||
padding-left: 16rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
.b-c{
|
||||
border: 1rpx solid #ccc
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user