123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <template>
- <view class="share-index">
- <view class="head-box">
- <view class="user-info dir-left-nowrap">
- <view class="head-img">
- <image :src="userInfo.avatar" alt="" />
- </view>
- <view class="base-info dir-top-wrap main-center">
- <view class="nickname">{{ userInfo.nickname }}</view>
- <view class="parent">推荐人: {{ parent.nickname || '-' }}</view>
- </view>
- </view>
- <view class="withdraw-box main-between cross-center">
- <view class="withdraw-item dir-top-wrap main-center" @click="$u.route('/pages/share/withdraw')">
- <view class="static-txt main-left cross-center">
- 可提现佣金
- <view class="badge">提现</view>
- </view>
- <view class="price main-left cross-center">
- {{ userInfo.income }}
- <view class="unit">元</view>
- </view>
- </view>
- <view class="withdraw-item dir-top-wrap main-center">
- <view class="static-txt">
- 已提现佣金
- </view>
- <view class="price main-left cross-center">
- {{ parseFloat(userInfo.total_income - userInfo.income).toFixed(2) }}
- <view class="unit">元</view>
- </view>
- </view>
- </view>
- </view>
- <!--菜单-->
- <view class="menu-group">
- <button
- v-for="(menu,index) in menus"
- :key="index"
- class="menu-item main-between cross-center"
- :open-type="menu.type ? menu.type : ''"
- @bindcontact="handleMenu"
- @click="handleMenu(menu)"
- >
- <view class="left-box dir-left-nowrap cross-center">
- <view class="icon">
- <image :src="menu.icon" />
- </view>
- <text>{{ menu.name }}</text>
- </view>
- <u-icon name="arrow-right" :color="$colors.infoColor" bold />
- </button>
- </view>
- <!-- QRCODE 弹窗 -->
- <qrcode :show.sync="qrcodeModal.show" />
- </view>
- </template>
- <script>
- import { mapState } from 'vuex'
- import Qrcode from './components/Qrcode'
- import { parent } from '../../api/user'
- export default {
- components: { Qrcode },
- data() {
- return {
- menus: [
- { icon: '/static/image/my-page/share.png', name: '分享好友', type: 'share' },
- { icon: '/static/image/share/income.png', name: '分享佣金', href: '/pages/share/income' },
- { icon: '/static/image/share/order.png', name: '分享订单', href: '/pages/share/order' },
- { icon: '/static/image/share/detail.png', name: '提现明细', href: '/pages/share/withdrawDetail' },
- { icon: '/static/image/share/team.png', name: '我的团队', href: '/pages/share/team' },
- // #ifdef MP-TOUTIAO | MP-WEIXIN
- { icon: '/static/image/share/qrcode.png', name: '分享二维码', type: 'share_qrcode' }
- // #endif
- ],
- qrcodeModal: {
- show: false
- },
- parent: {}
- }
- },
- computed: {
- ...mapState({
- userInfo: seate => seate.user.info
- })
- },
- methods: {
- handleMenu(menu) {
- // #ifdef MP-KUAISHOU
- if (menu.type === 'contact') {
- ks.makePhoneCall({
- phoneNumber: this.config.contact,
- success(res) {
- console.log('-->success', res)
- },
- fail(err) {
- console.log('-->error', err)
- }
- })
- }
- // #endif
- if (menu.type === 'share_qrcode') {
- this.handleGenerateQrcode()
- }
- if (menu.href) {
- this.$u.route(menu.href)
- }
- },
- handleGenerateQrcode() {
- if (this.userInfo.share_qrcode) {
- this.qrcodeModal.show = true
- return
- }
- this.$loading()
- this.$api.share.generateQrcode().then(res => {
- this.$hideLoading()
- // 获取用户信息
- this.$api.user.info().then(res => {
- this.$store.dispatch('user/info', res.data)
- this.qrcodeModal.show = true
- })
- }).catch(() => {
- this.$hideLoading()
- })
- },
- getParentInfo() {
- this.$api.user.parent().then(res => {
- this.parent = res.data
- })
- }
- },
- onShareAppMessage() {
- return this.$util.shareMessage(this.userInfo)
- },
- onShow() {
- this.getParentInfo()
- }
- }
- </script>
- <style lang="scss" scoped>
- .share-index {
- color: #6eebe8;
- font-size: 32rpx;
- padding: 40rpx 30rpx 80rpx;
- .head-box{
- background: $bg-op-color;
- border-radius: 20rpx;
- padding: 40rpx 0;
- margin-bottom: 50rpx;
- .user-info{
- padding: 0 30rpx 40rpx;
- border-bottom: 1rpx $border-op-color solid;
- .head-img{
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- overflow: hidden;
- image{
- width: 100%;
- height: 100%;
- }
- }
- .base-info{
- margin-left: 30rpx;
- .parent{
- font-size: 26rpx;
- }
- }
- }
- .withdraw-box{
- padding: 40rpx 0 0;
- .withdraw-item{
- flex: 1;
- position: relative;
- padding: 0 40rpx;
- &:first-child{
- &:after{
- content: "";
- position: absolute;
- background: $border-op-color;
- right: 0;
- top: 50%;
- height: 60%;
- width: 1rpx;
- transform: translateY(-50%);
- }
- }
- .static-txt{
- font-size: 26rpx;
- .badge{
- font-size: 18rpx;
- border: 1rpx solid #6eebe8;
- border-radius: 30rpx;
- padding: 2rpx 20rpx;
- margin-left: 30rpx;
- }
- }
- .price{
- margin-top: 10rpx;
- font-size: 48rpx;
- .unit{
- font-size: 34rpx;
- margin-left: 4rpx;
- }
- }
- }
- }
- }
- .menu-group{
- .menu-item{
- padding: 20rpx 0;
- background: transparent;
- border: none;
- text-align: unset;
- width: 100%;
- line-height: initial;
- font-size: initial;
- justify-content: space-between;
- border-bottom: 1rpx solid $border-op-color;
- border-radius: 0;
- &:after{
- content: unset;
- }
- .left-box{
- flex: 1;
- .icon{
- transform: translateY(4rpx);
- image{
- width: 55rpx;
- height: 55rpx;
- }
- }
- text{
- color: #fff;
- margin-left: 10rpx;
- }
- }
- }
- }
- }
- </style>
|