576 lines
15 KiB
Vue
576 lines
15 KiB
Vue
|
<!--
|
||
|
* @Descripttion:
|
||
|
* @version:
|
||
|
* @Author: kBank
|
||
|
* @Date: 2022-10-24 15:45:01
|
||
|
-->
|
||
|
<template>
|
||
|
<div class="page">
|
||
|
<topBar
|
||
|
v-if="topList.length > 0"
|
||
|
:topList="topList"
|
||
|
:moren="moren"
|
||
|
></topBar>
|
||
|
<div class="main">
|
||
|
<el-form
|
||
|
ref="select"
|
||
|
:model="select"
|
||
|
style="padding: 0 10px 0 0"
|
||
|
label-width="80px"
|
||
|
>
|
||
|
<el-row>
|
||
|
<!-- 一层 -->
|
||
|
<!-- <el-col :span="4">
|
||
|
<el-form-item :label="$t('MN_F_T_978')">
|
||
|
<el-select clearable
|
||
|
:placeholder="$t('CK_KS_38')"
|
||
|
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">
|
||
|
<el-form-item :label="$t('MN_F_T_949')">
|
||
|
<el-select clearable
|
||
|
:placeholder="$t('CK_KS_38')"
|
||
|
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">
|
||
|
<el-form-item :label="$t('w_1023')">
|
||
|
<el-date-picker
|
||
|
v-model="creationTime"
|
||
|
@change="changeTime"
|
||
|
value-format="yyyy-MM-dd"
|
||
|
type="daterange"
|
||
|
:range-separator="$t('w_0139')"
|
||
|
:start-placeholder="$t('CK_KS_4')"
|
||
|
:end-placeholder="$t('CK_KS_5')"
|
||
|
>
|
||
|
</el-date-picker>
|
||
|
</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"
|
||
|
></el-option>
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
<el-col :span="4" style="margin-left: 10px">
|
||
|
<el-button type="primary" @click="getDataList">
|
||
|
{{ $t("MN_T_2") }}</el-button
|
||
|
>
|
||
|
<el-button type="primary" @click="reset">
|
||
|
{{ $t("MN_T_3") }}</el-button
|
||
|
>
|
||
|
<!-- <el-button
|
||
|
type="primary"
|
||
|
v-hasButtons="['TopPerformanceTotal']"
|
||
|
@click="getNewData"
|
||
|
>
|
||
|
统计</el-button
|
||
|
> -->
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
<el-row> </el-row>
|
||
|
<!-- <el-row>
|
||
|
<el-col>
|
||
|
<el-form-item :label="$t('MN_F_T_829')">
|
||
|
<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>
|
||
|
<el-form-item :label="$t('MN_F_T_122')">
|
||
|
<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"
|
||
|
@click="getDataList"> {{ $t('MN_T_2') }}</el-button>
|
||
|
<el-button type="primary"
|
||
|
@click="reset"> {{ $t('MN_T_3') }}</el-button>
|
||
|
</el-col>
|
||
|
</el-row> -->
|
||
|
</el-form>
|
||
|
<div class="maintop">
|
||
|
<div class="mainbtn">
|
||
|
<el-button
|
||
|
size="small"
|
||
|
@click="handleExport"
|
||
|
v-hasButtons="['topPerformanceTotalExport']"
|
||
|
class="thebtn2"
|
||
|
>
|
||
|
{{ $t("MN_T_8") }}</el-button
|
||
|
>
|
||
|
</div>
|
||
|
<!-- <div>
|
||
|
<el-dropdown :hide-on-click="false" placement="top">
|
||
|
<span class="el-dropdown-link kuang">
|
||
|
{{ $t('MN_F_T_950') }}<i class="el-icon-arrow-down el-icon--right"></i>
|
||
|
</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
|
||
|
v-loading="loading"
|
||
|
:data="tableData"
|
||
|
ref="mainTable"
|
||
|
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"> </el-table-column>
|
||
|
<el-table-column
|
||
|
v-for="(item, index) in menuList"
|
||
|
:key="index"
|
||
|
align="center"
|
||
|
width="120"
|
||
|
: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";
|
||
|
export default {
|
||
|
name: "Bzpz",
|
||
|
components: {
|
||
|
topBar,
|
||
|
},
|
||
|
filters: {
|
||
|
isAgree(val) {
|
||
|
if (!val) {
|
||
|
return this.$t("ENU_POPUP_TYPE_1");
|
||
|
} else {
|
||
|
return this.$t("ENU_POPUP_TYPE_2");
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
loading: false,
|
||
|
typeList: [
|
||
|
{
|
||
|
value: 0,
|
||
|
label: this.$t("ENU_NOTICE_WEBSITE_TYPE_1"),
|
||
|
},
|
||
|
{
|
||
|
value: 1,
|
||
|
label: this.$t("ENU_NOTICE_WEBSITE_TYPE_2"),
|
||
|
},
|
||
|
],
|
||
|
digList: [
|
||
|
{
|
||
|
value: 0,
|
||
|
label: this.$t("ENU_POPUP_TYPE_1"),
|
||
|
},
|
||
|
{
|
||
|
value: 1,
|
||
|
label: this.$t("ENU_POPUP_TYPE_2"),
|
||
|
},
|
||
|
],
|
||
|
menuList: [
|
||
|
{
|
||
|
text: "顶点编号",
|
||
|
prop: "memberCode",
|
||
|
},
|
||
|
{
|
||
|
text: "顶点名称",
|
||
|
prop: "memberName",
|
||
|
},
|
||
|
{
|
||
|
text: `${this.$t("MN_F_T_854")}(¥)`,
|
||
|
prop: "firstPurchaseAll",
|
||
|
},
|
||
|
{
|
||
|
text: `首购金额占比(%)`,
|
||
|
prop: "firstPurchaseRatio",
|
||
|
},
|
||
|
{
|
||
|
text: `能量舱金额(¥)`,
|
||
|
prop: "energyAmountAll",
|
||
|
},
|
||
|
{
|
||
|
text: `能量舱金额占比(%)`,
|
||
|
prop: "energyAmountRatio",
|
||
|
},
|
||
|
{
|
||
|
text: `首购奖金(¥)`,
|
||
|
prop: "mainBonus",
|
||
|
},
|
||
|
{
|
||
|
text: `首购金额拨比(%)`,
|
||
|
prop: "mainBonusRate",
|
||
|
},
|
||
|
{
|
||
|
text: "首购PV拨比(%)",
|
||
|
prop: "mainBonusPvRate",
|
||
|
},
|
||
|
{
|
||
|
text: "直推拨比(%)",
|
||
|
prop: "introduceBonusRate",
|
||
|
},
|
||
|
{
|
||
|
text: "拓展拨比(%)",
|
||
|
prop: "orgBonusRate",
|
||
|
},
|
||
|
{
|
||
|
text: "服务补贴拨比(%)",
|
||
|
prop: "serviceBonusRate",
|
||
|
},
|
||
|
{
|
||
|
text: "创客空间拨比(%)",
|
||
|
prop: "makerRate",
|
||
|
},
|
||
|
{
|
||
|
text: "复购金额(¥)",
|
||
|
prop: "repurchaseAllAmount",
|
||
|
},
|
||
|
{
|
||
|
text: "复购奖金(¥)",
|
||
|
prop: "repurBonus",
|
||
|
},
|
||
|
{
|
||
|
text: "复购金额拨比(%)",
|
||
|
prop: "repurBonusRate",
|
||
|
},
|
||
|
{
|
||
|
text: "复购PV拨比(%)",
|
||
|
prop: "repurBonusPvRate",
|
||
|
},
|
||
|
{
|
||
|
text: `拓展平均碰次`,
|
||
|
prop: "orgAvTouch",
|
||
|
},
|
||
|
{
|
||
|
text: `拓展最高碰次`,
|
||
|
prop: "orgMaxTouch",
|
||
|
},
|
||
|
{
|
||
|
text: `拓展封顶人数`,
|
||
|
prop: "orgTopNumber",
|
||
|
},
|
||
|
],
|
||
|
creationTime: [],
|
||
|
creationTime1: [],
|
||
|
select: {
|
||
|
pkVertexList: [],
|
||
|
pkMemberTeamList: [],
|
||
|
},
|
||
|
// 查询参数
|
||
|
queryParams: {
|
||
|
pageNum: 1,
|
||
|
pageSize: 50,
|
||
|
},
|
||
|
addOrEdit: "",
|
||
|
total: 0,
|
||
|
dialogVisible: false,
|
||
|
tableData: [],
|
||
|
moren: "topPerformanceTotal",
|
||
|
topList: [
|
||
|
{
|
||
|
name: "顶点奖金拨比汇总",
|
||
|
path: "topPerformanceTotal",
|
||
|
},
|
||
|
],
|
||
|
form: {},
|
||
|
verList: [],
|
||
|
memberList: [],
|
||
|
acList: [],
|
||
|
tableList: {},
|
||
|
props: {
|
||
|
multiple: true,
|
||
|
expandTrigger: "hover",
|
||
|
value: "pkId",
|
||
|
label: "vertexName",
|
||
|
children: "childList",
|
||
|
},
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
// 获取下拉
|
||
|
this.getData();
|
||
|
// 获取列表
|
||
|
this.getDataList();
|
||
|
// this.getUserRoute();
|
||
|
},
|
||
|
methods: {
|
||
|
getTotal() {
|
||
|
api
|
||
|
.topSubtotal(Object.assign({}, this.queryParams, this.select))
|
||
|
.then((res) => {
|
||
|
if (res.code == 200) {
|
||
|
this.tableList = res.data;
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
getSummaries({ columns, data }) {
|
||
|
this.$nextTick(() => {
|
||
|
this.$refs.mainTable.doLayout();
|
||
|
});
|
||
|
const lastRecord = data[data.length - 1];
|
||
|
return columns.map((column, index) => {
|
||
|
const { property } = column;
|
||
|
if (index === 0) {
|
||
|
// 合计列的第一列显示合计文本
|
||
|
return '合计';
|
||
|
}
|
||
|
else if (index === 1) {
|
||
|
// 合计列的第一列显示合计文本
|
||
|
return '';
|
||
|
}
|
||
|
else if (index === 2) {
|
||
|
// 合计列的第一列显示合计文本
|
||
|
return '';
|
||
|
}
|
||
|
// 使用最后一条数据的对应属性来计算合计
|
||
|
return lastRecord[property];
|
||
|
});
|
||
|
},
|
||
|
reset() {
|
||
|
this.select = {
|
||
|
pkVertexList: [],
|
||
|
pkMemberTeamList: [],
|
||
|
pkTeamCodeStr: "",
|
||
|
pkBdVertexStr: "",
|
||
|
};
|
||
|
this.creationTime = [];
|
||
|
},
|
||
|
getData() {
|
||
|
api.accountList().then((res) => {
|
||
|
this.acList = res.data;
|
||
|
});
|
||
|
// api.vertexList().then((res) => {
|
||
|
// this.verList = res.data
|
||
|
// })
|
||
|
// api.memberTeam().then((res) => {
|
||
|
// this.memberList = res.rows
|
||
|
// })
|
||
|
api.topVertexList().then((res) => {
|
||
|
this.verList = res.rows;
|
||
|
});
|
||
|
},
|
||
|
changeTime(val) {
|
||
|
this.select.startDate = val ? val[0] : "";
|
||
|
this.select.endDate = val ? val[1] : "";
|
||
|
},
|
||
|
getNewData() {
|
||
|
this.loading = true;
|
||
|
api
|
||
|
.topBonusListHistory(Object.assign({}, this.queryParams, this.select))
|
||
|
.then((res) => {
|
||
|
this.getDataList();
|
||
|
});
|
||
|
},
|
||
|
getDataList() {
|
||
|
api
|
||
|
.bonusVertex(Object.assign({}, this.queryParams, this.select))
|
||
|
.then((res) => {
|
||
|
this.loading = false;
|
||
|
if (res.code == 200) {
|
||
|
this.tableData = res.rows;
|
||
|
this.total = res.total;
|
||
|
// this.getTotal();
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
handleSelectionChange(val) {},
|
||
|
/** 导出按钮操作 */
|
||
|
handleExport() {
|
||
|
this.$confirm(this.$t("MN_F_T_407"), this.$t("MN_F_T_304"), {
|
||
|
confirmButtonText: this.$t("w_0035"),
|
||
|
cancelButtonText: this.$t("ENU_P_TYPE0"),
|
||
|
type: "warning",
|
||
|
}).then((_) => {
|
||
|
this.download(
|
||
|
"/member/manage/bonus-vertex-total-statis/export",
|
||
|
Object.assign({}, this.queryParams, this.select),
|
||
|
`顶点奖金拨比列表统计-${new Date().getTime()}.xlsx`
|
||
|
);
|
||
|
});
|
||
|
},
|
||
|
tableRowClassName({ row, rowIndex }) {
|
||
|
if (rowIndex % 2 == 1) {
|
||
|
return "warning-row";
|
||
|
} else if (rowIndex % 2 == 0) {
|
||
|
return "success-row";
|
||
|
}
|
||
|
return "";
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</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>
|