123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582 |
- <template>
- <view class="bodys">
- <view class="top-bg"></view>
- <view class="top-bar">
- <image @click="goBack" src="@/static/images/icon/fanhui.png" class="backImg" mode=""></image>
- <text class="textCenter">佣金明细</text>
- <text class="linkRight">提现记录</text>
- </view>
- <!-- 主体 -->
- <view class="container">
- <!-- 帐号 -->
- <view class="account" v-if="userType == '0'">
- <image class="avatar" v-if="!userInfo.headImage" src="@/static/images/logo/ju-icon.png" alt=""></image>
- <image class="avatar" v-else :src="userInfo.headImage" alt=""></image>
- <view class="name">
- <text class="UserName">{{ platformShopData.shopName }}</text>
- <span class="UserAccount">商家代号:{{ platformShopData.shopCode }}</span>
- </view>
- </view>
- <view class="account" v-else>
- <image class="avatar" v-if="!userInfo.headImage" src="@/static/images/logo/ju-icon.png" alt=""></image>
- <image class="avatar" v-else :src="userInfo.headImage" alt=""></image>
- <view class="name">
- <text class="UserName">{{ platformUserData.name }}</text>
- <span class="UserAccount">策划师代号:{{ platformUserData.username }}</span>
- </view>
- </view>
- <!-- 信息面板 -->
- <view class="info-panel">
- <view class="infoBox">
- <view class="infoItem">
- <p><image class="fuckicon" src="../../static/images/haoyou-1.png"></image>粉丝人数</p>
- <span>{{ userListData.userNum || '0.00' }}<span v-if="userListData.toDayCount > 0" class="todayCount">+{{ userListData.toDayCount }}</span></span>
- <a href="#">查看详情</a>
- </view>
- <view class="infoItem">
- <p><image class="fuckicon" src="../../static/images/qiandai1.png"></image>佣金余额</p>
- <!-- <span v-if="commissionData.commissionToday > 0 && typeOf(commissionData) !== 'object'" class="todayCount">+{{ commissionData.commissionToday }}</span> -->
- <span>{{ commissionData.userCommission.totalAmount || '0.00' }}</span>
- <a href="#">去提现</a>
- </view>
- <view class="infoItem">
- <p><image class="fuckicon" src="../../static/images/qiandai1.png"></image>今日收入(元)</p>
- <span>{{ typeof(commissionData.commissionToday) == 'object'? 0.00 : commissionData.commissionToday }}</span>
- </view>
- <view class="infoItem">
- <p><image class="fuckicon" src="../../static/images/qiandai1.png"></image>累计收入(元)</p>
- <span>{{ commissionData.userCommission.remainAmount }}</span>
- </view>
- </view>
- </view>
- <!-- 图表 -->
- <view class="chart">
- <view class="now">{{ (new Date()).toLocaleDateString() + ' ' + new Date().toLocaleTimeString("en-GB") }}</view>
- <view class="type">
- <span :class="type==1?'on':''" @click="type = 1">佣金流水</span>
- <span :class="type==2?'on':''" @click="type = 2">粉丝列表</span>
- </view>
- <view class="Records" id="chart">
- <view class="RecordsTbaleOne" v-if="type == 1">
- <u-time-line>
- <u-time-line-item v-for="item in commissionData.commissionRecord" :key="item.orderSn">
- <template v-slot:content>
- <view>
- <view class="u-order-title">订单编号: {{ item.orderSn }}</view>
- <view class="u-order-desc">来源: {{ getTpye(item.type) }}, 入账额度: + {{ item.amount }}</view>
- <view class="u-order-time">{{ item.createTime }}</view>
- </view>
- </template>
- </u-time-line-item>
- </u-time-line>
- </view>
- <!-- 预留给echarts图表的位置,需要兼容性,后续开发 -->
- <u-cell-group v-if="type == 2">
- <u-cell-item :arrow="false" v-for="item in userListData.userList" @click="giftVoucher(item.platformUserId)">
- <!-- <u-icon slot="icon" size="32" name="search"></u-icon> -->
- <image slot="icon" class="avater" src="../../static/images/tabbar/wode.png" mode=""></image>
- <view class="userName" slot="label">
- {{ item.name }}
- </view>
- <view class="rightArrow" slot="right-icon">
- <span>赠送代金卷</span><image class="arrow" src="../../static/images/origin/right.png" mode=""></image>
- </view>
- </u-cell-item>
- </u-cell-group>
- </view>
- </view>
- <!-- 按钮 -->
- <view class="share">
- <button @click="getInfoCodeImage">立即邀请会员,赚取现金奖励</button>
- </view>
- <u-popup v-model="modelShow" :closeable="true" mode="center" border-radius="14">
- <view class="invitationCode">
- <span class="headerText">微信扫一扫</span>
- <image class="codeImage" :src="codeImage" mode=""></image>
- <view class="myname">
- <image class="logoimg" src="../../static/images/logo/ju-icon.png" mode=""></image>
- <view class="myInfo">
- <view class="info" v-if="userType == '0'">昵称: {{ platformShopData.shopName }}</view>
- <view class="info" v-else>昵称: {{ platformUserData.name }}</view>
- <view class="info">推广码: {{ codeData.invitationCode }}</view>
- </view>
- </view>
- </view>
- </u-popup>
- <u-popup v-model="inputShow" :closeable="true" mode="center" border-radius="14">
- <view class="inputBox">
- <view class="shurukuang" style="margin-top: 45rpx;">
- <u-input v-model="giftNumber" type="number" :border="true" />
- <button class="giftButton" @click="qnmdVoucher">点击赠送</button>
- </view>
- </view>
- </u-popup>
- </view>
- </view>
- </template>
- <script>
- import { getPlatformShop, getPlatformUser, getCommission, getUserList, getInfoCode, transfer } from '@/api/user/ledger'
- export default {
- data() {
- return {
- modelShow: false,
- inputShow: false,
- buyerUserId: '',
- giftNumber: 0,
- codeData: {},
- codeImage: '',
- type: 1,
- userType: 0,
- userInfo: {},
- platformShopData: {},
- platformUserData: {},
- commissionData: {},
- userListData: {}
- };
- },
- onLoad() {
- this.userInfo = uni.getStorageSync('storage_userInfo')
- this.userType = this.userInfo.type
- if(this.userType == '0'){
- getPlatformShop({ platformUserId:this.userInfo.platformUserId }).then(res => {// 获取绑定的商家信息
- // console.log(res)
- this.platformShopData = res.data
- }).catch(err => {
- console.log(err)
- })
- }else {
- getPlatformUser({ platformUserId:this.userInfo.platformUserId }).then(res => { // 绑定的策划师或分公司角色信息
- this.platformUserData = res.data
- }).catch(err => {
- console.log(err)
- })
- }
-
- getCommission({ // 用户佣金统计+记录
- platformUserId: this.userInfo.platformUserId,
- type: this.userType
- }).then(res => {
- this.commissionData = res.data
- }).catch(err => {
- console.log(err)
- })
-
- getUserList({ // 用户粉丝统计+列表
- platformUserId: this.userInfo.platformUserId,
- type: this.userType
- }).then(res => {
- this.userListData = res.data
- }).catch(err => {
- console.log(err)
- })
- },
- methods: {
- getTpye(typeNumber) { // (0代金券,1现金,2会员升级)
- let arr = ['代金卷','现金','会员升级']
- return arr[typeNumber]
- },
- goBack: function() {
- uni.navigateBack()
- },
- getInfoCodeImage() {
- this.modelShow = true
- getInfoCode({
- type: this.userType
- }).then(res => {
- this.codeData = res.data
- this.codeImage = this.codeData.urlCode
- })
- },
- giftVoucher(ID) {
- this.inputShow = true
- this.buyerUserId = ID
- },
- qnmdVoucher() {
- transfer({
- buyerUserId: this.buyerUserId,
- voucherNum: this.giftNumber
- }).then(res => {
- this.giftNumber = 0
- console.log(res)
- })
- this.inputShow = false
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .bodys {
- // background-color: #f7f7f7;
- background: linear-gradient(180deg, #ffc475 25%, #f5f5f5 36%);
- min-height: 100vh;
- }
- *{
- text-decoration: none;
- }
- .top-bg {
- // background-image: linear-gradient(#011375, #011375);
- background-size: 100% 100%;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 368rpx;
- z-index: 1;
- }
- .top-bar {
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #fff;
- padding: 0 30rpx;
- position: relative;
- z-index: 2;
- padding-top: 30rpx;
- }
- .top-bar .backImg {
- width: 80rpx;
- height: 70rpx;
- font-size: 42rpx;
- font-weight: bold;
- }
- .top-bar .textCenter {
- font-size: 36rpx;
- }
- .top-bar .linkRight {
- height: 88rpx;
- font-size: 28rpx;
- }
- .container {
- width: 100%;
- padding: 0 35rpx 0 35rpx;
- position: relative;
- z-index: 2;
- }
- /* 帐号信息 */
- .account {
- width: 100%;
- display: flex;
- align-items: center;
- padding-top: 40rpx;
- }
- .account .avatar {
- box-sizing: border-box;
- width: 125rpx;
- height: 125rpx;
- padding: 15rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- background-color: #fff;
- }
- .account .name {
- display: flex;
- align-items: flex-start;
- flex-direction: column;
- justify-content: center;
- color: #ffffff;
- }
- .account .name .UserName {
- font-size: 38rpx;
- }
- .account .name .UserAccount {
- margin-top: 20rpx;
- font-size: 32rpx;
- }
- /* 信息面板 */
- .info-panel {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin-top: 85rpx;
- background: #ffffff;
- border-radius: 15rpx;
- position: relative;
- padding-bottom: .1rpx;
- box-shadow: 0 0 2rpx rgba(0, 0, 0, 10rpx);
- margin-bottom: 65rpx;
- }
- .info-panel::before {
- content: "";
- position: absolute;
- z-index: 3;
- height: 3.05rpx;
- width: .01rpx;
- background: #f4f4f4;
- top: .35rpx;
- left: 50%;
- transform: translateX(-50%);
- }
- .info-panel::after {
- content: "";
- position: absolute;
- z-index: 3;
- width: 5.15rpx;
- height: .01rpx;
- background: #f4f4f4;
- left: .35rpx;
- top: 50%;
- transform: translateY(-50%);
- }
- .info-panel .infoBox {
- outline: none;
- list-style: none;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
- }
- .info-panel .infoBox .infoItem {
- width: 50%;
- height: 170rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- position: relative;
- padding-top: 38rpx;
- padding-bottom: 5rpx;
- }
- .info-panel .infoBox .infoItem p {
- font-size: 26rpx;
- color: #8a8a8a;
- display: flex;
- align-items: center;
- letter-spacing: 4rpx;
- }
- .info-panel .infoBox .infoItem p .fuckicon {
- width: 28rpx;
- height: 28rpx;
- margin-right: 10rpx;
- color: #92a9f9;
- position: relative;
- }
- .todayCount {
- position: absolute;
- color: red !important;
- font-size: 12rpx;
- transform: scale(0.8);
- top: 56rpx;
- left: 190rpx;
- }
- .info-panel .infoBox .infoItem span {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- padding: 15rpx 0 5rpx 0;
- }
- .info-panel .infoBox .infoItem a {
- margin-top: 5rpx;
- font-size: 22rpx;
- color: #8a8a8a;
- }
- /* 图表 */
- .chart {
- width: 100%;
- height: auto;
- overflow: hidden;
- position: relative;
- padding-top: 50rpx;
- }
- .chart .Records {
- margin-top: 15rpx;
- border-radius: 15rpx;
- width: 100%;
- min-height: 660rpx;
- max-height: 660rpx;
- background-color: #fff;
- overflow: hidden;
- overflow-y: auto;
- }
- .RecordsTbaleOne {
- padding-left: 28rpx;
- padding-top: 15rpx;
- }
- .avater {
- width: 60rpx;
- height: 60rpx;
- }
- .userName {
- margin-top: 15rpx;
- margin-left: 20rpx;
- }
- .rightArrow {
- display: flex;
- align-items: center;
- color: #909399;
- }
- .arrow {
- width: 60rpx;
- height: 60rpx;
- }
- .chart .now {
- font-size: 28rpx;
- position: absolute;
- right: 0;
- top: 5rpx;
- color: #adadad;
- }
- .chart .type {
- position: absolute;
- left: 40rpx;
- top: 0;
- font-size: 28rpx;
- z-index: 999;
- }
- .chart .type span {
- margin-right: 20rpx;
- position: relative;
- padding: 0 2rpx 10rpx 2rpx;
- color: #8a8a8a;
- }
- .chart .type span.on {
- color: #021375;
- }
- .chart .type span.on::after {
- content: "";
- display: block;
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 5rpx;
- background: #ffc475;
- }
- /* 分享 */
- .share {
- position: fixed;
- bottom: 46rpx;
- left: 50%;
- width: 80%;
- transform: translateX(-50%);
- }
- .share button {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- border-radius: 90rpx;
- background: #ffb575;
- color: #ffffff;
- font-size: 30rpx;
- cursor: pointer;
- }
- .u-order-title {
- color: #333333;
- font-weight: bold;
- font-size: 32rpx;
- }
- .u-order-desc {
- margin-top: 4rpx;
- color: rgb(150, 150, 150);
- font-size: 34rpx;
- margin-bottom: 6rpx;
- }
- .u-order-time {
- color: rgb(200, 200, 200);
- font-size: 28rpx;
- }
- .invitationCode {
- width: 550rpx;
- // height: 700rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .headerText {
- letter-spacing: 8rpx;
- margin-top: 38rpx;
- font-size: 45rpx;
- font-weight: 600;
- color: #ff8821;
- padding-bottom: 10rpx;
- border-bottom: 2rpx solid #ff8821;
- }
- }
- .codeImage {
- margin-top: 5rpx;
- width: 420rpx;
- height: 420rpx;
- }
- .myname {
- display: flex;
- align-items: center;
- justify-content: space-around;
- box-sizing: content-box;
- width: 80%;
- height: 100rpx;
- padding-bottom: 20rpx;
- .logoimg {
- width: 80rpx;
- height: 80rpx;
- }
- .myInfo {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- margin-left: 10rpx;
- .info {
- color: #535555e0;
- font-size: 30rpx;
- letter-spacing: 2rpx;
- }
- }
- }
- .inputBox {
- width: 500rpx;
- height: 230rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .giftInput {
- height: 40rpx;
- font-size: 32rpx;
- }
- .shurukuang {
- width: 360rpx;
- height: 40rpx;
- }
- /deep/ .uni-input-input {
- font-size: 38rpx;
- }
- .giftButton {
- font-size: 24rpx;
- font-weight: 600;
- margin-top: 20rpx;
- width: 160rpx;
- height: 60rpx;
- }
- </style>
|