111
This commit is contained in:
@@ -485,7 +485,8 @@ export const asyncRoutes = [
|
||||
component: layout,
|
||||
meta: {
|
||||
title: '累计收益管理',
|
||||
isHide: true
|
||||
isHide: true,
|
||||
roles: ['agent']
|
||||
},
|
||||
redirect: '/total_earnings/total_earnings_list',
|
||||
children: [
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="item" v-if="storeUser.userInfo.is_admin != 1">
|
||||
<div class="icon">
|
||||
<img class="img" src="../assets/home_icon4.png">
|
||||
</div>
|
||||
|
||||
@@ -144,7 +144,24 @@
|
||||
</el-row> -->
|
||||
<div class="records_table mt15">
|
||||
<el-table :data="records.list" size="large" border height="100%" v-loading="records.loading">
|
||||
<el-table-column prop="id" label="机构id"></el-table-column>
|
||||
<el-table-column prop="user_id" label="代理id"></el-table-column>
|
||||
<el-table-column prop="username" label="代理账户">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.username }}</el-text>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="nick_name" label="代理昵称">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.nick_name }}</el-text>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="phone" label="代理手机号">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.phone }}</el-text>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="alipay_username" label="支付宝账户"></el-table-column>
|
||||
<el-table-column prop="alipay_fullname" label="支付宝姓名"></el-table-column>
|
||||
<el-table-column prop="amount" label="提现金额">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.amount }}元</el-text>
|
||||
|
||||
@@ -14,7 +14,25 @@
|
||||
</el-space> -->
|
||||
<div class="table mt15">
|
||||
<el-table :data="tableOptions.list" size="large" stripe border height="100%" v-loading="tableOptions.loading">
|
||||
<el-table-column prop="user_id" label="机构id"></el-table-column>
|
||||
<el-table-column prop="user_id" label="代理id"></el-table-column>
|
||||
<el-table-column prop="username" label="代理账户">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.username }}</el-text>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="nick_name" label="代理昵称">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.nick_name }}</el-text>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="phone" label="代理手机号">
|
||||
<template #default="scope">
|
||||
<el-text type="primary">{{ scope.row.user.phone }}</el-text>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="alipay_username" label="支付宝账户"></el-table-column>
|
||||
<el-table-column prop="alipay_fullname" label="支付宝姓名"></el-table-column>
|
||||
|
||||
<!-- <el-table-column prop="merchantCode" label="商户号"></el-table-column> -->
|
||||
<!-- <el-table-column prop="userName" label="商户名称"></el-table-column>
|
||||
<el-table-column prop="accountNo" label="账户号"></el-table-column> -->
|
||||
@@ -50,7 +68,9 @@
|
||||
<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-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="info" disable-transitions v-if="scope.row.status == 3">审核中</el-tag> -->
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user