zyejMAll-mobile/pages/commission/components/account-info.vue

352 lines
7.9 KiB
Vue
Raw Normal View History

2024-08-07 10:31:42 +08:00
<!-- 分销账户展示基本统计信息 -->
<template>
2024-10-16 18:09:51 +08:00
<view class="new-main">
<view class="account-card">
2024-11-04 11:13:41 +08:00
<view class="new-ljsy">
<view class="l dd">
<!-- <view class="l-img">
<image src="https://zysc.fjptzykj.com:3000/shangcheng/7624fd0e447748a5f8f4532d89a416cf7f962644e588c99d7e8c8baeab7ee91f.png" class="img"></image>
</view> -->
<view class="l-text">
<view class="l-text-b">
累计收益
</view>
<view class="l-text-t">
{{
fen2yuan(state.summary2.withdrawPrice || 0)
}}
</view>
</view>
</view>
<view class="l r" @click="sheep.$router.go('/pages/commission/team')">
<!-- <view class="l-img">
<image src="https://zysc.fjptzykj.com:3000/shangcheng/6575e409f7656efb2821b2159ca0a26916f83f037fc533f9f19aa141c412ee2c.png" class="img"></image>
</view> -->
<view class="l-text">
<view class="l-text-b">
我的团队
</view>
<view class="l-text-t">
{{
state.arr2.firstBrokerageUserCount + state.arr2.secondBrokerageUserCount ||
0
}}
</view>
</view>
</view>
</view>
2024-10-16 18:09:51 +08:00
<view class="account-card-box">
2024-11-04 11:13:41 +08:00
<!--<view class="ss-flex ss-row-between card-box-header">
2024-10-16 18:09:51 +08:00
<view class="ss-flex">
<button class="ss-reset-button look-btn ss-flex" @tap="state.showMoney = !state.showMoney">
<uni-icons :type="state.showMoney ? 'eye-filled' : 'eye-slash-filled'" color="#A57A55"
size="20" />
</button>
</view>
2024-11-04 11:13:41 +08:00
<view class="ss-flex" @tap="sheep.$router.go('/pages/commission/wallet')">
2024-10-16 18:09:51 +08:00
<view class="header-title ss-m-r-4">提现记录</view>
<text class="cicon-play-arrow" />
</view>
2024-11-04 11:13:41 +08:00
</view> -->
2024-10-16 18:09:51 +08:00
<!-- 提现金额 -->
2024-11-04 11:13:41 +08:00
<view class="new-cont">
2024-10-16 18:09:51 +08:00
<view class="ss-flex-1 ss-flex-col ">
<view class="item-title">可提现()</view>
<view class="item-detail">
{{ state.showMoney ? fen2yuan(state.brokerageInfo.brokeragePrice) : '***' }}
</view>
</view>
2024-11-04 11:13:41 +08:00
<!-- <view class="ss-flex-1 ss-flex-col ss-col-center new-btn"
2024-10-16 18:09:51 +08:00
@tap="sheep.$router.go('/pages/commission/withdraw')"
>
立即提现
2024-11-04 11:13:41 +08:00
</view> -->
<view class="sss" @tap="sheep.$router.go('/pages/commission/wallet')">
<view class="header-title ss-m-r-4">提现记录</view>
<image class="menu-icon-you" src="@/static/images/dayu.png" mode="aspectFill"></image>
2024-10-16 18:09:51 +08:00
</view>
</view>
<!-- 收益 -->
<view class="card-content ss-flex">
<view class="ss-flex-1 ss-flex-col ss-col-center">
<view class="item-title">当前收益()</view>
<view class="item-detail">
{{ state.showMoney ? fen2yuan(state.summary.brokeragePrice || 0) : '***' }}
</view>
</view>
<view class="ss-flex-1 ss-flex-col ss-col-center">
<view class="item-title">昨天收益()</view>
<view class="item-detail">
{{ state.showMoney ? fen2yuan(state.summary.yesterdayPrice || 0) : '***' }}
</view>
</view>
<view class="ss-flex-1 ss-flex-col ss-col-center">
<view class="item-title">累计已提()</view>
<view class="item-detail">
{{ state.showMoney ? fen2yuan(state.summary.withdrawPrice || 0) : '***' }}
</view>
</view>
</view>
2024-11-04 11:13:41 +08:00
<view class="ss-flex-1 ss-flex-col ss-col-center new-btn"
@tap="sheep.$router.go('/pages/commission/withdraw')">
立即提现
</view>
2024-10-16 18:09:51 +08:00
</view>
2024-11-04 11:13:41 +08:00
2024-10-16 18:09:51 +08:00
</view>
2024-11-04 11:13:41 +08:00
<!-- 菜单栏 -->
<commission-menu />
2024-10-16 18:09:51 +08:00
</view>
2024-08-07 10:31:42 +08:00
</template>
<script setup>
2024-11-04 11:13:41 +08:00
import commissionMenu from './commission-menu.vue';
2024-10-16 18:09:51 +08:00
import sheep from '@/sheep';
import {
computed,
reactive,
onMounted,
onBeforeMount
} from 'vue';
import BrokerageApi from '@/sheep/api/trade/brokerage';
import {
fen2yuan
} from '@/sheep/hooks/useGoods';
const userInfo = computed(() => sheep.$store('user').userInfo);
const state = reactive({
2024-11-04 11:13:41 +08:00
showMoney: true,
2024-10-16 18:09:51 +08:00
summary: {},
brokerageInfo: {}, // 分销信息
2024-11-04 11:13:41 +08:00
arr: {},
summary2: {},
arr2: {}
});
async function getAgentInfo() {
const {
code,
data
} = await BrokerageApi.getBrokerageUserSummary();
if (code !== 0) {
return;
}
state.summary2 = data;
}
onBeforeMount(async () => {
getAgentInfo();
// 概要数据
let {
data
} = await BrokerageApi.getBrokerageUserSummary();
state.arr2 = data;
2024-10-16 18:09:51 +08:00
});
2024-11-04 11:13:41 +08:00
2024-10-16 18:09:51 +08:00
// 获得分销信息
async function getBrokerageUser() {
2024-11-04 11:13:41 +08:00
const {
data,
code
} = await BrokerageApi.getBrokerageUser();
if (code === 0) {
state.brokerageInfo = data;
}
2024-10-16 18:09:51 +08:00
}
2024-11-04 11:13:41 +08:00
2024-10-16 18:09:51 +08:00
onMounted(async () => {
let {
code,
data
} = await BrokerageApi.getBrokerageUserSummary();
if (code === 0) {
state.summary = data || {};
}
});
onBeforeMount(() => {
2024-11-04 11:13:41 +08:00
getBrokerageUser();
2024-10-16 18:09:51 +08:00
});
2024-08-07 10:31:42 +08:00
</script>
<style lang="scss" scoped>
2024-11-04 11:13:41 +08:00
.menu-icon-you {
width: 38rpx;
height: 38rpx;
}
.new-btn {
width: 85%;
margin: 0 auto;
background: rgba(235, 70, 39);
padding: 12px 0;
border-radius: 20px;
color: white;
font-weight:700;
}
.new-ljsy {
// width: 100%;
// background:white;
padding: 8px 13px;
display: flex;
justify-content: center;
.l {
// background: rgba(254,244,237);
// background:url('https://zysc.fjptzykj.com/admin-api/infra/file/25/get/8e878e15d22f68e0187a953aeba31b80423b7e3fafa8e4aa9f237477ac0fd519.png') rgba(254,244,237,1);
width: 43%;
height: 85px;
border-radius: 12px;
background-size: cover;
// position:relative;
display: flex;
align-items: center;
justify-content: left;
&.dd {
margin-right: 5%;
}
.l-text {
// position:absolute;
// top:50%;
// transform: translateY(-50%);
// left:70px;
.l-text-t {
font-size: 27px;
font-weight: 700;
}
.l-text-b {
font-size: 24rpx;
}
}
.l-img {
width: 40px;
height: 40px;
margin-right: 10px;
.img {
width: 100%;
height: 100%;
}
}
}
.r {
// background:url('https://zysc.fjptzykj.com/admin-api/infra/file/25/get/b18f31e528ad0ab1026441faba07cb9e64723ffa511d103324fcd65fcaaf1557.png') rgba(254,244,237,1);
// background-size: cover;
.l-text {
// left:80px;
}
}
}
.new-main {
2024-10-16 18:09:51 +08:00
width: 100%;
2024-11-04 11:13:41 +08:00
margin: 15px auto !important;
2024-10-16 18:09:51 +08:00
}
2024-11-04 11:13:41 +08:00
2024-10-16 18:09:51 +08:00
.account-card {
2024-11-04 11:13:41 +08:00
// width: 694rpx;
margin: 0 15px;
2024-10-16 18:09:51 +08:00
padding: 2rpx;
// background: linear-gradient(180deg, #ffffff 0.88%, #fff9ec 100%);
2024-11-04 11:13:41 +08:00
// border-radius: 12rpx 12rpx 0 0;
2024-10-16 18:09:51 +08:00
z-index: 3;
position: relative;
2024-11-04 11:13:41 +08:00
background: url('https://zysc.fjptzykj.com:3000/shangcheng/cbbe23772e68ed5fc5c18d193f9f674d6e87ccddd422e0df6af6cab5dfea6c27.png') no-repeat;
background-size: 100%;
padding-bottom: 25px;
border-radius: 18px;
2024-10-16 18:09:51 +08:00
.account-card-box {
// background: #ffefd6;
.new-cont {
padding: 0 45rpx;
2024-11-04 11:13:41 +08:00
display: flex;
justify-content: space-between;
margin-top: 13px;
.sss{
display:flex;
height:20px;
align-items:center;
.header-title{
color:rgba(194,194,194);
}
}
2024-10-16 18:09:51 +08:00
.new-btn {
2024-10-21 17:47:58 +08:00
background: rgba(178, 102, 67);
2024-10-16 18:09:51 +08:00
border-radius: 22px;
padding: 8px 0;
font-size: 16px;
color: white;
2024-11-04 11:13:41 +08:00
font-weight: 700;
2024-10-16 18:09:51 +08:00
}
.item-title {
2024-11-04 11:13:41 +08:00
color: rgba(142, 144, 145, 1);
font-size: 24rpx;
2024-10-16 18:09:51 +08:00
}
.item-detail {
2024-11-04 11:13:41 +08:00
color: rgba(231, 91, 79, 1);
font-size: 20px;
2024-10-16 18:09:51 +08:00
}
}
.card-box-header {
padding: 0 45rpx;
height: 72rpx;
// box-shadow: 0px 2px 6px #f2debe;
.header-title {
font-size: 24rpx;
font-weight: 500;
color: #a17545;
line-height: 30rpx;
}
.cicon-play-arrow {
color: #a17545;
font-size: 24rpx;
line-height: 30rpx;
}
}
.card-content {
height: 190rpx;
// background: #fdfae9;
.item-title {
font-size: 24rpx;
font-weight: 500;
2024-11-04 11:13:41 +08:00
color: rgba(142, 144, 145, 1);
2024-10-16 18:09:51 +08:00
line-height: 30rpx;
margin-bottom: 24rpx;
}
.item-detail {
2024-11-04 11:13:41 +08:00
font-size: 20px;
2024-10-16 18:09:51 +08:00
font-family: OPPOSANS;
font-weight: bold;
2024-11-04 11:13:41 +08:00
color: rgba(80, 80, 80, 1);
2024-10-16 18:09:51 +08:00
line-height: 30rpx;
}
}
}
}
</style>