123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <template>
- <view class="com-user">
- <view class="user-main">
- <image class="avatar" :src="userInfo && userInfo.avatar ? userInfo.avatar : '/static/default-avatar.png'"></image>
- <view class="uc">
- <view class="name">Hi,你好!</view>
- <view class="tip" v-if="!userInfo || !userInfo.id">为了向您提供更好的服务,请登录!</view>
- <view class="tip" v-if="userInfo && userInfo.id">
- <view>余额:<text>{{ userInfo.balance }}</text></view>
- <view>积分:<text>{{ userInfo.point }}</text></view>
- </view>
- </view>
- <view class="ur" v-if="!userInfo || !userInfo.id" @click="goLogin">登录</view>
- <view class="qr iconfont icon-qr-extract" v-if="userInfo && userInfo.id" @click="goMemberCode"></view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- userInfo: {
- type: Object,
- default: { id: '', avatar: '', name: '', balance: '', point: '' }
- }
- },
- methods: {
- // 去登录
- goLogin() {
- this.$navTo('pages/login/index')
- },
- // 跳转会员码
- goMemberCode(userId) {
- this.$navTo('pages/user/code', { userId: this.userInfo.id })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .com-user {
- width: 100%;
- height: auto;
- padding: 0 20rpx 20rpx;
- margin-top: -60rpx;
- position: relative;
- z-index: 2;
- .user-main{
- width: 100%;
- padding: 20rpx;
- background: #f5f5f5;
- border-radius: 20rpx;
- border: #cccccc solid 1rpx;
- display: flex;
- align-items: center;
- .avatar{
- width: 130rpx;
- height: 130rpx;
- border-radius: 50%;
- }
- .uc{
- flex: 1;
- padding-left: 10rpx;
- .name{
- font-size: 32rpx;
- font-weight: 500;
- color: #000;
-
- }
- .tip{
- font-size: 24rpx;
- color: #666;
- margin-top: 10rpx;
- }
- }
- .ur{
- width: 140rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- border-radius: 60rpx;
- justify-content: center;
- color: #fff;
- font-size: 26rpx;
- background-color: $fuint-theme;
- }
- .qr{
- width: 80rpx;
- height: 80rpx;
- display: flex;
- align-items: center;
- border-radius: 6rpx;
- justify-content: center;
- text-align: center;
- color: $fuint-theme;
- font-size: 68rpx;
- background-color: #fff;
- border: solid 1rpx $fuint-theme;
- padding: 2rpx;
- }
- }
- }
- </style>
|