web-base-admin/src/views/settlementCenter/topPerformanceTotal/index.vue

554 lines
14 KiB
Vue
Raw Normal View History

2025-03-23 09:18:42 +08:00
<!--
* @Descripttion:
* @version:
* @Author: kBank
* @Date: 2022-10-24 15:45:01
-->
<template>
<div class="page">
<topBar
v-if="topList.length > 0"
:top-list="topList"
2025-03-23 09:18:42 +08:00
:moren="moren"
/>
2025-03-23 09:18:42 +08:00
<div class="main">
<el-form
ref="select"
:model="select"
style="padding: 0 10px 0 0"
label-width="80px"
>
<el-row>
<!-- 一层 -->
<!-- <el-col :span="4">
2025-04-01 23:46:26 +08:00
<el-form-item :label="'收益展示'">
2025-03-23 09:18:42 +08:00
<el-select clearable
2025-04-01 23:46:26 +08:00
:placeholder="'请选择'"
2025-03-23 09:18:42 +08:00
v-model="select.websiteType">
<el-option v-for="item in acList"
:key="item.value"
:label="item.label"
:value="item.value"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="4">
2025-04-01 23:46:26 +08:00
<el-form-item :label="'币种展示'">
2025-03-23 09:18:42 +08:00
<el-select clearable
2025-04-01 23:46:26 +08:00
:placeholder="'请选择'"
2025-03-23 09:18:42 +08:00
v-model="select.websiteType">
<el-option v-for="item in acList"
:key="item.value"
:label="item.label"
:value="item.value"></el-option>
</el-select>
</el-form-item>
</el-col> -->
<el-col :span="8">
2025-04-01 23:46:26 +08:00
<el-form-item :label="'业绩时间'">
2025-03-23 09:18:42 +08:00
<el-date-picker
v-model="creationTime"
value-format="yyyy-MM-dd"
type="daterange"
2025-04-01 23:46:26 +08:00
:range-separator="'至'"
:start-placeholder="'开始日期'"
:end-placeholder="'结束日期'"
@change="changeTime"
/>
2025-03-23 09:18:42 +08:00
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="顶点">
<el-select v-model="select.pkVertex">
<el-option
v-for="item in verList"
:key="item.pkVertex"
:label="`${item.memberCode} (${item.memberName})`"
:value="item.pkVertex"
/>
2025-03-23 09:18:42 +08:00
</el-select>
</el-form-item>
</el-col>
<el-col :span="4" style="margin-left: 10px">
<el-button type="primary" @click="getDataList">
{{ '搜索' }}</el-button>
2025-03-23 09:18:42 +08:00
<el-button type="primary" @click="reset">
{{ '重置' }}</el-button>
2025-03-23 09:18:42 +08:00
<!-- <el-button
type="primary"
v-hasButtons="['TopPerformanceTotal']"
@click="getNewData"
>
统计</el-button
> -->
</el-col>
</el-row>
<el-row />
2025-03-23 09:18:42 +08:00
<!-- <el-row>
<el-col>
2025-04-01 23:46:26 +08:00
<el-form-item :label="'隶属体系'">
2025-03-23 09:18:42 +08:00
<el-checkbox-group @change="getpkVertex"
v-model="select.pkVertexList">
<el-checkbox v-for="item in verList"
:key="item.value"
:value="item.pkId"
:label="item.pkId">{{ item.vertexName }}</el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col>
2025-04-01 23:46:26 +08:00
<el-form-item :label="'隶属团队'">
2025-03-23 09:18:42 +08:00
<el-checkbox-group @change="getTeam"
v-model="select.pkMemberTeamList">
<el-checkbox v-for="item in memberList"
:key="item.value"
:value="item.pkId"
:label="item.pkId">{{ item.vertexName }}</el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
</el-row> -->
<!-- <el-row style="margin-left:10px">
<el-col :span="4">
<el-button type="primary"
2025-04-01 23:46:26 +08:00
@click="getDataList"> {{ '搜索' }}</el-button>
2025-03-23 09:18:42 +08:00
<el-button type="primary"
2025-04-01 23:46:26 +08:00
@click="reset"> {{ '重置' }}</el-button>
2025-03-23 09:18:42 +08:00
</el-col>
</el-row> -->
</el-form>
<div class="maintop">
<div class="mainbtn">
<el-button
v-hasButtons="['topPerformanceTotalExport']"
size="small"
2025-03-23 09:18:42 +08:00
class="thebtn2"
@click="handleExport"
2025-03-23 09:18:42 +08:00
>
{{ '导出' }}</el-button>
2025-03-23 09:18:42 +08:00
</div>
<!-- <div>
<el-dropdown :hide-on-click="false" placement="top">
<span class="el-dropdown-link kuang">
2025-04-01 23:46:26 +08:00
{{ '下拉菜单' }}<i class="el-icon-arrow-down el-icon--right"></i>
2025-03-23 09:18:42 +08:00
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-for="item in menuList"
:key="item.id" >
<el-checkbox v-model="item.checked"
@change="getMenu($event,item.id)">{{ item.text }}</el-checkbox></el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div> -->
</div>
<div class="maintable">
<!-- <div class="itemTrading"> -->
<el-table
ref="mainTable"
2025-03-23 09:18:42 +08:00
v-loading="loading"
:data="tableData"
height="700px"
:header-cell-style="{ background: '#EEEEEE' }"
:summary-method="getSummaries"
show-summary
:row-class-name="tableRowClassName"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="60" />
2025-03-23 09:18:42 +08:00
<el-table-column
v-for="(item, index) in menuList"
:key="index"
align="center"
min-width="140"
2025-03-23 09:18:42 +08:00
:prop="item.prop"
:label="item.text"
>
<template slot-scope="scope">
<div v-if="index > 4">
{{ scope.row[item.prop] | numberToCurrency }}
</div>
<div v-if="index <= 4">{{ scope.row[item.prop] }}</div>
</template>
</el-table-column>
</el-table>
<!-- </div> -->
</div>
</div>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getDataList"
/>
</div>
</template>
<script>
import topBar from '@/components/topBar'
import * as api from '@/api/settle.js'
import { classifyUpdate, classifySave } from '@/api/product'
import { getRouters } from '@/api/settle.js'
import { isOther, numberToCurrencyNo } from '@/utils/numberToCurrency'
2025-03-23 09:18:42 +08:00
export default {
name: 'Bzpz',
2025-03-23 09:18:42 +08:00
components: {
topBar
2025-03-23 09:18:42 +08:00
},
filters: {
isAgree(val) {
if (!val) {
return '允许'
2025-03-23 09:18:42 +08:00
} else {
return '禁止'
2025-03-23 09:18:42 +08:00
}
}
2025-03-23 09:18:42 +08:00
},
data() {
return {
loading: false,
typeList: [
{
value: 0,
label: '前台'
2025-03-23 09:18:42 +08:00
},
{
value: 1,
label: '后台'
}
2025-03-23 09:18:42 +08:00
],
digList: [
{
value: 0,
label: '允许'
2025-03-23 09:18:42 +08:00
},
{
value: 1,
label: '禁止'
}
2025-03-23 09:18:42 +08:00
],
menuList: [
{
text: '系统编号',
prop: 'memberCode'
2025-03-23 09:18:42 +08:00
},
{
text: '顶点名称',
prop: 'memberName'
2025-03-23 09:18:42 +08:00
},
{
2025-04-01 23:46:26 +08:00
text: `${'首购金额'}(¥)`,
prop: 'firstPurchaseAll'
2025-03-23 09:18:42 +08:00
},
{
text: `首购奖金(¥)`,
prop: 'mainBonus'
2025-03-23 09:18:42 +08:00
},
{
text: `首购金额拨比(%)`,
prop: 'mainBonusRate'
2025-03-23 09:18:42 +08:00
},
{
text: '首购PV拨比(%)',
prop: 'mainBonusPvRate'
2025-03-23 09:18:42 +08:00
},
{
text: '直推拨比(%)',
prop: 'introduceBonusRate'
2025-03-23 09:18:42 +08:00
},
{
text: '拓展拨比(%)',
prop: 'orgBonusRate'
2025-03-23 09:18:42 +08:00
},
{
text: '服务补贴拨比(%)',
prop: 'serviceBonusRate'
2025-03-23 09:18:42 +08:00
},
{
text: '复购金额(¥)',
prop: 'repurchaseAllAmount'
2025-03-23 09:18:42 +08:00
},
{
text: '复购奖金(¥)',
prop: 'repurBonus'
2025-03-23 09:18:42 +08:00
},
{
text: '复购金额拨比(%)',
prop: 'repurBonusRate'
2025-03-23 09:18:42 +08:00
},
{
text: '复购PV拨比(%)',
prop: 'repurBonusPvRate'
2025-03-23 09:18:42 +08:00
},
{
text: `拓展平均碰次`,
prop: 'orgAvTouch'
2025-03-23 09:18:42 +08:00
},
{
text: `拓展最高碰次`,
prop: 'orgMaxTouch'
2025-03-23 09:18:42 +08:00
},
{
text: `拓展封顶人数`,
prop: 'orgTopNumber'
}
2025-03-23 09:18:42 +08:00
],
creationTime: [],
creationTime1: [],
select: {
pkVertexList: [],
pkMemberTeamList: []
2025-03-23 09:18:42 +08:00
},
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 50
2025-03-23 09:18:42 +08:00
},
addOrEdit: '',
2025-03-23 09:18:42 +08:00
total: 0,
dialogVisible: false,
tableData: [],
moren: 'topPerformanceTotal',
2025-03-23 09:18:42 +08:00
topList: [
{
name: '顶点奖金拨比汇总',
path: 'topPerformanceTotal'
}
2025-03-23 09:18:42 +08:00
],
form: {},
verList: [],
memberList: [],
acList: [],
tableList: {},
props: {
multiple: true,
expandTrigger: 'hover',
value: 'pkId',
label: 'vertexName',
children: 'childList'
}
}
2025-03-23 09:18:42 +08:00
},
mounted() {
// 获取下拉
this.getData()
2025-03-23 09:18:42 +08:00
// 获取列表
this.getDataList()
2025-03-23 09:18:42 +08:00
// this.getUserRoute();
},
methods: {
getTotal() {
api
.topSubtotal(Object.assign({}, this.queryParams, this.select))
.then((res) => {
if (res.code == 200) {
this.tableList = res.data
2025-03-23 09:18:42 +08:00
}
})
2025-03-23 09:18:42 +08:00
},
getSummaries({ columns, data }) {
this.$nextTick(() => {
this.$refs.mainTable.doLayout()
})
const lastRecord = data[data.length - 1]
2025-03-23 09:18:42 +08:00
return columns.map((column, index) => {
const { property } = column
2025-03-23 09:18:42 +08:00
if (index === 0) {
// 合计列的第一列显示合计文本
return '合计'
} else if (index === 1) {
2025-03-23 09:18:42 +08:00
// 合计列的第一列显示合计文本
return ''
} else if (index === 2) {
2025-03-23 09:18:42 +08:00
// 合计列的第一列显示合计文本
return ''
2025-03-23 09:18:42 +08:00
}
// 使用最后一条数据的对应属性来计算合计
return lastRecord[property]
})
2025-03-23 09:18:42 +08:00
},
reset() {
this.select = {
pkVertexList: [],
pkMemberTeamList: [],
pkTeamCodeStr: '',
pkBdVertexStr: ''
}
this.creationTime = []
2025-03-23 09:18:42 +08:00
},
getData() {
api.accountList().then((res) => {
this.acList = res.data
})
2025-03-23 09:18:42 +08:00
// api.vertexList().then((res) => {
// this.verList = res.data
// })
// api.memberTeam().then((res) => {
// this.memberList = res.rows
// })
api.topVertexList().then((res) => {
this.verList = res.rows
})
2025-03-23 09:18:42 +08:00
},
changeTime(val) {
this.select.startDate = val ? val[0] : ''
this.select.endDate = val ? val[1] : ''
2025-03-23 09:18:42 +08:00
},
getNewData() {
this.loading = true
2025-03-23 09:18:42 +08:00
api
.topBonusListHistory(Object.assign({}, this.queryParams, this.select))
.then((res) => {
this.getDataList()
})
2025-03-23 09:18:42 +08:00
},
getDataList() {
api
.bonusVertex(Object.assign({}, this.queryParams, this.select))
.then((res) => {
this.loading = false
2025-03-23 09:18:42 +08:00
if (res.code == 200) {
this.tableData = res.rows
this.total = res.total
2025-03-23 09:18:42 +08:00
// this.getTotal();
}
})
2025-03-23 09:18:42 +08:00
},
handleSelectionChange(val) {},
/** 导出按钮操作 */
handleExport() {
2025-04-01 23:46:26 +08:00
this.$confirm('是否确认导出所有数据项?', '警告', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
2025-03-23 09:18:42 +08:00
}).then((_) => {
this.download(
'/member/manage/bonus-vertex-total-statis/export',
2025-03-23 09:18:42 +08:00
Object.assign({}, this.queryParams, this.select),
`顶点奖金拨比列表统计-${new Date().getTime()}.xlsx`
)
})
2025-03-23 09:18:42 +08:00
},
tableRowClassName({ row, rowIndex }) {
if (rowIndex % 2 == 1) {
return 'warning-row'
2025-03-23 09:18:42 +08:00
} else if (rowIndex % 2 == 0) {
return 'success-row'
2025-03-23 09:18:42 +08:00
}
return ''
}
}
}
2025-03-23 09:18:42 +08:00
</script>
<style scoped lang="scss">
::v-deep .el-table .warning-row {
background: #f9f9f9;
}
::v-deep .el-table .success-row {
background: #ffffff;
}
::v-deep .el-table thead {
color: #000000;
}
::v-deep .el-select {
width: 100%;
}
.uploadIcon ::v-deep .el-upload--picture-card {
display: none !important; /* 上传按钮隐藏 */
}
.page {
padding: 20px;
background: #f9f9f9;
font-size: 14px;
.main {
background: #ffffff;
border-radius: 8px;
box-shadow: 0px 2px 20px 0px rgba(238, 238, 238, 0.5);
display: flex;
flex-direction: column;
.maintop {
display: flex;
// padding: 0 10px;
justify-content: space-between;
align-items: center;
.mainbtn {
.thebtn1 {
background: #3181e5;
color: #ffffff;
}
.thebtn2 {
background: #ffad41;
color: #ffffff;
}
}
.maintitle {
font-size: 10px;
font-family: MicrosoftYaHei;
color: #999999;
}
}
.maintable {
flex: 1;
}
}
.tem {
display: flex;
align-items: center;
justify-content: center;
img {
width: 28px;
height: 20px;
margin-right: 3px;
}
}
.isRed {
color: #ed1d25;
}
.isGreen {
color: #1ab62b;
}
.bgImg {
width: 48px;
height: 48px;
}
}
.openClose {
text-align: right;
margin-right: 10px;
color: #3181e5;
}
.kuang {
padding: 5px 20px;
background: rgba(255, 255, 255, 0);
border-radius: 4px;
border: 1px solid #cccccc;
}
.heji {
margin-top: 10px;
.dis {
display: flex;
justify-content: right;
padding: 5px 10px;
font-size: 14px;
color: #333333;
:nth-child(1) {
font-size: 14px;
font-weight: bold;
color: #333333;
margin-right: 20px;
}
}
}
::v-deep .el-date-editor--daterange,
.el-cascader {
width: 100%;
}
::v-deep .el-input__suffix {
top: -3px;
}
</style>