123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <script>
- import { HTTP_REQUEST_URL } from '@/config/app';
- // #ifdef MP || APP-PLUS
- import topBar from '../topBar.vue';
- // #endif
- export default {
- components: {
- // #ifdef MP || APP-PLUS
- topBar
- // #endif
- },
- props: {
- userInfo: {
- type: Object,
- default: () => {}
- },
- commission: {
- type: Object,
- default: () => {}
- },
- // perShowType 0 手机号 1 ID
- perShowType: {
- type: Number,
- default: 0
- },
- isScrolling: {
- type: Boolean,
- default: false
- },
- property: {
- type: Array,
- default: () => []
- }
- },
- inject: ['intoPage', 'tapQrCode', 'goMenuPage', 'goEdit', 'bindPhone'],
- computed: {
- headerBg() {
- return `url(${HTTP_REQUEST_URL}/statics/images/users/template4_bg.png)`;
- }
- }
- };
- </script>
- <template>
- <view class="warp" :style="{ backgroundImage: headerBg }">
- <!-- #ifdef MP || APP-PLUS -->
- <topBar :styleType="5" :isScrolling="isScrolling"></topBar>
- <!-- #endif -->
- <view class="acea-row row-middle user">
- <image class="avatar" :src="userInfo.avatar" @click="goEdit"></image>
- <view class="name-wrap">
- <view class="name">{{ userInfo.nickname }}</view>
- <view class="phone" v-if="userInfo.phone">{{ perShowType ? 'ID:' + userInfo.uid : userInfo.phone }}</view>
- <view class="bind-phone" v-else @tap="bindPhone">绑定手机号</view>
- </view>
- <view class="acea-row row-middle">
- <text class="iconfont icon-a-ic_QRcode fs-40" @click="tapQrCode"><text class="tips">会员码</text></text>
- <text class="iconfont icon-a-ic_setup1 fs-40 mx-34" @click="intoPage('/pages/users/user_set/index')"></text>
- <view class="iconfont icon-ic_message3 fs-40" @click="intoPage('/pages/users/message_center/index')">
- <uni-badge v-if="userInfo.service_num" absolute="rightTop" :custom-style="{background: 'var(--view-theme)',top:'-56rpx'}" :text="userInfo.service_num"></uni-badge>
- </view>
- </view>
- </view>
- <view class="acea-row row-middle order justify-between">
- <view class="item" v-for="(item, index) in property" @click="goMenuPage(item.url)" :key="index">
- {{ item.label }}
- <text class="value num-fa-semi">{{ item.value }}</text>
- </view>
- </view>
- </view>
- </template>
- <style scoped lang="scss">
- .warp {
- background-position: bottom;
- background-size: 100% 100%;
- }
- .user {
- padding: 60rpx 42rpx 56rpx 30rpx;
- background-position: bottom;
- background-size: 100%;
- .avatar {
- width: 112rpx;
- height: 112rpx;
- border-radius: 50%;
- }
- .name-wrap {
- flex: 1;
- padding: 0 32rpx;
- color: #333333;
- }
- .name {
- font-weight: 500;
- font-size: 32rpx;
- line-height: 44rpx;
- }
- .phone {
- margin-top: 10rpx;
- font-size: 24rpx;
- line-height: 34rpx;
- }
- .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;
- }
- .iconfont {
- position: relative;
- }
- .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;
- }
- .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; /* 修改颜色以改变三角形颜色 */
- }
- .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);
- }
- }
- .order {
- padding: 0 32rpx 32rpx 32rpx;
- font-size: 26rpx;
- line-height: 36rpx;
- color: #999999;
- .item + .item {
- margin-left: 40rpx;
- }
- .value {
- margin-left: 8rpx;
- font-size: 28rpx;
- line-height: 32rpx;
- color: #333333;
- }
- }
- </style>
|