11
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "vue-admin",
|
||||
"private": true,
|
||||
"version": "1.3.21",
|
||||
"version": "1.3.23",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@@ -446,6 +446,7 @@ export const asyncRoutes = [
|
||||
component: layout,
|
||||
meta: {
|
||||
title: '提现管理',
|
||||
roles: ['admin'],
|
||||
// roles: ['FO', 'SO'],
|
||||
isHide: true
|
||||
},
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
<div class="info">
|
||||
<div class="title">团队总流水</div>
|
||||
<div class="num">
|
||||
<count-to :start-val="0" :decimals="2" :end-val="homeData.sumConsumeFee" :duration="1000" />
|
||||
<!-- {{ homeData.sumConsumeFee }} -->
|
||||
<!-- <count-to :start-val="0" :decimals="2" :end-val="homeData.sumConsumeFee" :duration="1000" /> -->
|
||||
{{ homeData.sumConsumeFee }}
|
||||
<span class="i">元</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -27,7 +27,8 @@
|
||||
<div class="info">
|
||||
<div class="title">总收益</div>
|
||||
<div class="num">
|
||||
<count-to :start-val="0" :decimals="2" :end-val="homeData.sumfansShareMoney" :duration="1000" />
|
||||
<!-- <count-to :start-val="0" :decimals="2" :end-val="homeData.sumfansShareMoney" :duration="1000" /> -->
|
||||
{{ homeData.sumfansShareMoney }}
|
||||
<span class="i">元</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -39,7 +40,8 @@
|
||||
<div class="info">
|
||||
<div class="title">今日收益</div>
|
||||
<div class="num">
|
||||
<count-to :start-val="0" :decimals="2" :end-val="homeData.yestedayShareMoney" :duration="1000" />
|
||||
<!-- <count-to :start-val="0" :decimals="2" :end-val="homeData.yestedayShareMoney" :duration="1000" /> -->
|
||||
{{ homeData.yestedayShareMoney }}
|
||||
<span class="i">元</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -65,8 +65,6 @@
|
||||
v-loading="tableOptions.loading">
|
||||
<el-table-column prop="profit" label="收益"></el-table-column>
|
||||
<el-table-column prop="amount" label="收款金额"></el-table-column>
|
||||
<!-- <el-table-column prop="loginName" label="名称"></el-table-column> -->
|
||||
<!-- <el-table-column prop="merchant" label="商家名称"></el-table-column> -->
|
||||
<el-table-column prop="merchant" label="收益来源">
|
||||
<template #default="scope">
|
||||
<el-text>{{ scope.row.merchant.merchant_name }}</el-text>
|
||||
@@ -132,7 +130,7 @@
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
<el-dialog v-model="records.show" title="提现记录">
|
||||
<el-dialog v-model="records.show" title="提现记录" width="1200px">
|
||||
<!-- <el-row>
|
||||
<el-select v-model="records.status" @change="recordsPaginationChange">
|
||||
<el-option label="全部" value="" key="" />
|
||||
@@ -145,17 +143,17 @@
|
||||
<div class="records_table mt15">
|
||||
<el-table :data="records.list" size="large" border height="100%" v-loading="records.loading">
|
||||
<el-table-column prop="user_id" label="代理id"></el-table-column>
|
||||
<el-table-column prop="username" label="代理账户">
|
||||
<el-table-column prop="username" label="代理账户" v-if="userInfo == 1">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.username }}</el-text>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="nick_name" label="代理昵称">
|
||||
<el-table-column prop="nick_name" label="代理昵称" v-if="userInfo == 1">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.nick_name }}</el-text>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="phone" label="代理手机号">
|
||||
<el-table-column prop="phone" label="代理手机号" v-if="userInfo == 1">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.phone }}</el-text>
|
||||
</template>
|
||||
@@ -182,13 +180,20 @@
|
||||
</el-table-column>
|
||||
<el-table-column label="转账状态">
|
||||
<template #default="scope">
|
||||
<el-tag type="warning" disable-transitions
|
||||
<el-tag type="success" disable-transitions
|
||||
v-if="scope.row.status == 1 && scope.row.transfer_status == 3">转账成功</el-tag>
|
||||
<el-tooltip v-if="scope.row.status == 1 && scope.row.transfer_status == 4 && userInfo == 1"
|
||||
class="box-item" effect="dark" :content="scope.row.notes" placement="top-start">
|
||||
|
||||
<el-tooltip v-if="scope.row.status == 1 && scope.row.transfer_status == 4" class="box-item"
|
||||
effect="dark" :content="scope.row.notes" placement="top-start">
|
||||
<el-tag type="danger" disable-transitions
|
||||
v-if="scope.row.status == 1 && scope.row.transfer_status == 4 && userInfo == 1">转账失败<el-icon><WarningFilled /></el-icon></el-tag>
|
||||
v-if="scope.row.status == 1 && scope.row.transfer_status == 4 && userInfo == 1">转账失败
|
||||
<el-icon>
|
||||
<WarningFilled />
|
||||
</el-icon></el-tag>
|
||||
</el-tooltip>
|
||||
<el-tag type="danger" disable-transitions
|
||||
v-if="scope.row.status == 1 && scope.row.transfer_status == 4 && userInfo != 1">转账失败
|
||||
</el-tag>
|
||||
<!-- <el-tag type="info" disable-transitions v-if="scope.row.status == 3">审核中</el-tag> -->
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
Reference in New Issue
Block a user