|
@@ -1,63 +1,67 @@
|
|
|
<template>
|
|
|
<div v-loading="loading">
|
|
|
- <div class="search clear" style="align-items: center;">
|
|
|
- <el-switch
|
|
|
- :disabled="isEmpty"
|
|
|
- style="margin-right: 10px;"
|
|
|
- v-model="isTenThound"
|
|
|
- active-text="万元"
|
|
|
- inactive-text="元"
|
|
|
- />
|
|
|
-
|
|
|
- <el-select size="small" style="margin-right:10px;width:145px" v-model="companyNo" @change="requestData" :disabled="isEmpty">
|
|
|
- <el-option v-for="depart in cp_companies" :key="depart.id" :value="depart.value" :label="depart.label" />
|
|
|
- </el-select>
|
|
|
-
|
|
|
- <el-date-picker class="fr picker" v-model="daytime" style=";width:100px" value-format="yyyy" :editable="false" :disabled="isEmpty"
|
|
|
- :clearable="false" :size="'small'" type="year" format="yyyy" align="right" placeholder="选择日期"
|
|
|
- :picker-options="{ disabledDate(time) { return time.getTime() > Date.now(); } }" @change="requestData" />
|
|
|
+ <div class="search" style="align-items: center;">
|
|
|
+ <div style="float:left">
|
|
|
+ 业绩毛利完成情况-月度
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div style="float:right">
|
|
|
+ <el-switch :disabled="isEmpty" style="margin-right: 10px;" v-model="isTenThound" active-text="万元"
|
|
|
+ inactive-text="元" />
|
|
|
+
|
|
|
+ <el-select size="small" style="margin-right:10px;width:145px" v-model="companyNo" @change="requestData"
|
|
|
+ :disabled="isEmpty">
|
|
|
+ <el-option v-for="depart in cp_companies" :key="depart.id" :value="depart.value" :label="depart.label" />
|
|
|
+ </el-select>
|
|
|
+
|
|
|
+ <el-date-picker class="fr picker" v-model="daytime" style=";width:100px" value-format="yyyy" :editable="false"
|
|
|
+ :disabled="isEmpty" :clearable="false" :size="'small'" type="year" format="yyyy" align="right"
|
|
|
+ placeholder="选择日期" :picker-options="{ disabledDate(time) { return time.getTime() > Date.now(); } }"
|
|
|
+ @change="requestData" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
- <el-row style="margin-top:10px" v-if="!isEmpty">
|
|
|
- <el-table border size="mini" :data="tableData" :header-cell-class-name="setHeaderClassName" :cell-class-name="setCellClassName">
|
|
|
+ <el-row style="margin-top:10px;margin-top:10px" v-if="!isEmpty">
|
|
|
+ <el-table border size="mini" :data="tableData" :header-cell-class-name="setHeaderClassName"
|
|
|
+ :cell-class-name="setCellClassName">
|
|
|
<el-table-column fixed="left" label="月度" prop="month" align="center" width="45px" />
|
|
|
<el-table-column label="当月营收目标" align="center" min-width="140px">
|
|
|
<template slot-scope="scope">
|
|
|
- {{unit2TenThousand(scope.row.total_tips,isTenThound)}}
|
|
|
+ {{ unit2TenThousand(scope.row.total_tips, isTenThound) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="当月营业收入(净)" align="center" min-width="140px">
|
|
|
<template slot-scope="scope">
|
|
|
- <div :style="getCurrentValueStyle(scope.row.pure_sale,scope.row.total_tips,scope.row.month)">
|
|
|
- {{unit2TenThousand(scope.row.pure_sale,isTenThound)}}
|
|
|
+ <div :style="getCurrentValueStyle(scope.row.pure_sale, scope.row.total_tips, scope.row.month)">
|
|
|
+ {{ unit2TenThousand(scope.row.pure_sale, isTenThound) }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="当月营收完成%" align="center" min-width="140px">
|
|
|
<template slot-scope="scope">
|
|
|
- <div :style="getCurrentRateStyle(scope.row.completion_rate,scope.row.month)">
|
|
|
- {{Number(scope.row.completion_rate).toFixed(2) + "%"}}
|
|
|
+ <div :style="getCurrentRateStyle(scope.row.completion_rate, scope.row.month)">
|
|
|
+ {{ Number(scope.row.completion_rate).toFixed(2) + "%" }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="当月毛利完成%" align="center" min-width="140px">
|
|
|
<template slot-scope="scope">
|
|
|
<div :style="getCurrentRateStyle(scope.row.cost_rate, scope.row.month)">
|
|
|
- {{Number(scope.row.cost_rate).toFixed(2) + "%"}}
|
|
|
+ {{ Number(scope.row.cost_rate).toFixed(2) + "%" }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
-
|
|
|
+
|
|
|
<template v-if="costField">
|
|
|
<el-table-column label="当月毛利目标" align="center" min-width="140px">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{unit2TenThousand(scope.row.cost_tips,isTenThound)}}
|
|
|
- </template>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ unit2TenThousand(scope.row.cost_tips, isTenThound) }}
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="当月毛利完成" align="center" min-width="140px">
|
|
|
<template slot-scope="scope">
|
|
|
- <div :style="getCurrentValueStyle(scope.row.pure_profit,scope.row.cost_tips,scope.row.month)">
|
|
|
- {{unit2TenThousand(scope.row.pure_profit,isTenThound)}}
|
|
|
+ <div :style="getCurrentValueStyle(scope.row.pure_profit, scope.row.cost_tips, scope.row.month)">
|
|
|
+ {{ unit2TenThousand(scope.row.pure_profit, isTenThound) }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -79,16 +83,16 @@ import { mapCompany } from "./mapCompany";
|
|
|
import dayjs from "dayjs"
|
|
|
|
|
|
export default {
|
|
|
- props:['companies','costField'],
|
|
|
- data(){
|
|
|
+ props: ['companies', 'costField'],
|
|
|
+ data() {
|
|
|
return {
|
|
|
loading: false,
|
|
|
- isTenThound:true,
|
|
|
+ isTenThound: true,
|
|
|
daytime: "",
|
|
|
tableData: [],
|
|
|
companyNo: "",
|
|
|
- cp_companies:[],
|
|
|
- isEmpty:false
|
|
|
+ cp_companies: [],
|
|
|
+ isEmpty: false
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
@@ -96,14 +100,14 @@ export default {
|
|
|
const jxIndex = this.companies.findIndex((item) => item.label === "北京锦兴弘昌科技有限公司");
|
|
|
const prIndex = this.companies.findIndex((item) => item.label === "北京普润心堂商贸有限公司");
|
|
|
|
|
|
- if(jxIndex !== -1 || prIndex !== -1) this.hasCompose = true;
|
|
|
+ if (jxIndex !== -1 || prIndex !== -1) this.hasCompose = true;
|
|
|
this.cp_companies = this.companies.filter((item) => item.label !== "北京锦兴弘昌科技有限公司" && item.label !== "北京普润心堂商贸有限公司")
|
|
|
- if(this.hasCompose) this.cp_companies = [...this.cp_companies,{ value:"GS2401181650538135",label: "普润&锦兴&知事"}]
|
|
|
- if(this.cp_companies.length === 4) this.cp_companies = [{ value:"",label: "所有公司"},...this.cp_companies];
|
|
|
+ if (this.hasCompose) this.cp_companies = [...this.cp_companies, { value: "GS2401181650538135", label: "普润&锦兴&知事" }]
|
|
|
+ if (this.cp_companies.length === 4) this.cp_companies = [{ value: "", label: "所有公司" }, ...this.cp_companies];
|
|
|
|
|
|
this.isEmpty = this.cp_companies.length === 0;
|
|
|
- if(this.isEmpty) return;
|
|
|
- this.cp_companies = this.cp_companies.map(item => ({ ...item, label:mapCompany[item.label] || item.label}))
|
|
|
+ if (this.isEmpty) return;
|
|
|
+ this.cp_companies = this.cp_companies.map(item => ({ ...item, label: mapCompany[item.label] || item.label }))
|
|
|
|
|
|
this.companyNo = this.cp_companies[0].value;
|
|
|
this.daytime = this.transformTime();
|
|
@@ -111,33 +115,33 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
unit2TenThousand,
|
|
|
- getCurrentRateStyle(current,month){
|
|
|
+ getCurrentRateStyle(current, month) {
|
|
|
const days = dayjs().daysInMonth();
|
|
|
- const currentMonth =dayjs().month() + 1;
|
|
|
- if(Number(month) > Number(currentMonth)) return;
|
|
|
- const oneDay = Number(division(100,days)).toFixed(2);
|
|
|
+ const currentMonth = dayjs().month() + 1;
|
|
|
+ if (Number(month) > Number(currentMonth)) return;
|
|
|
+ const oneDay = Number(division(100, days)).toFixed(2);
|
|
|
const currentDay = dayjs().date();
|
|
|
- const currentTotalTip = Number( multiplication(currentDay,oneDay)).toFixed(2);
|
|
|
+ const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
|
|
|
return Number(currentTotalTip) > Number(current) ? 'color:red' : ''
|
|
|
},
|
|
|
- getCurrentValueStyle(current,total,month){
|
|
|
+ getCurrentValueStyle(current, total, month) {
|
|
|
const days = dayjs().daysInMonth();
|
|
|
- const currentMonth =dayjs().month() + 1;
|
|
|
- if(Number(month) > Number(currentMonth)) return;
|
|
|
- const oneDay = Number(division(total,days)).toFixed(2);
|
|
|
+ const currentMonth = dayjs().month() + 1;
|
|
|
+ if (Number(month) > Number(currentMonth)) return;
|
|
|
+ const oneDay = Number(division(total, days)).toFixed(2);
|
|
|
const currentDay = dayjs().date();
|
|
|
- const currentTotalTip = Number( multiplication(currentDay,oneDay)).toFixed(2);
|
|
|
+ const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
|
|
|
return Number(currentTotalTip) > Number(current) ? 'color: red' : '';
|
|
|
},
|
|
|
setCellClassName({ column }) {
|
|
|
const { label } = column;
|
|
|
- if(label === "当月营收目标") return "bg__yellow"
|
|
|
- if(label === "当月毛利目标") return "bg__red"
|
|
|
+ if (label === "当月营收目标") return "bg__yellow"
|
|
|
+ if (label === "当月毛利目标") return "bg__red"
|
|
|
},
|
|
|
- setHeaderClassName({ column }){
|
|
|
+ setHeaderClassName({ column }) {
|
|
|
const { label } = column;
|
|
|
- if(label === "当月营收目标") return "bg__yellow"
|
|
|
- if(label === "当月毛利目标") return "bg__red"
|
|
|
+ if (label === "当月营收目标") return "bg__yellow"
|
|
|
+ if (label === "当月毛利目标") return "bg__red"
|
|
|
},
|
|
|
transformTime() {
|
|
|
let time = new Date();
|
|
@@ -185,20 +189,20 @@ export default {
|
|
|
// }
|
|
|
// }
|
|
|
|
|
|
-
|
|
|
- switch(Number(result.code)){
|
|
|
+
|
|
|
+ switch (Number(result.code)) {
|
|
|
case 0:
|
|
|
this.tableData = (result.data || []).map(tableItem => {
|
|
|
/* 销售净额 = 销售额 - 退货额 **/
|
|
|
- const pure_sale = subtraction(tableItem.sale_total,tableItem.th_total)
|
|
|
+ const pure_sale = subtraction(tableItem.sale_total, tableItem.th_total)
|
|
|
/* 指标达成率 = 销售净额 / 销售指标 **/
|
|
|
- const completion_rate = multiplication(division(pure_sale,tableItem.total_tips),100)
|
|
|
+ const completion_rate = multiplication(division(pure_sale, tableItem.total_tips), 100)
|
|
|
/* 采购净额 = 采购额 - 采购退货额 **/
|
|
|
- const pure_purch = subtraction(tableItem.cgd_total,tableItem.cgd_th_total)
|
|
|
+ const pure_purch = subtraction(tableItem.cgd_total, tableItem.cgd_th_total)
|
|
|
/* 毛利润 = (本月销售净额 - 本月采购净额) **/
|
|
|
- const pure_profit = subtraction(pure_sale,pure_purch)
|
|
|
+ const pure_profit = subtraction(pure_sale, pure_purch)
|
|
|
/* 毛利率 = (本月毛利润 / 本月销售净额) * 100 **/
|
|
|
- const pure_interest_rate = multiplication(division(pure_profit,pure_sale) || 0,100)
|
|
|
+ const pure_interest_rate = multiplication(division(pure_profit, pure_sale) || 0, 100)
|
|
|
|
|
|
return {
|
|
|
pure_sale,
|
|
@@ -206,9 +210,9 @@ export default {
|
|
|
pure_profit,
|
|
|
completion_rate,
|
|
|
pure_interest_rate,
|
|
|
- month:tableItem.month,
|
|
|
- cost_tips:tableItem.cost_tips,
|
|
|
- total_tips:tableItem.total_tips,
|
|
|
+ month: tableItem.month,
|
|
|
+ cost_tips: tableItem.cost_tips,
|
|
|
+ total_tips: tableItem.total_tips,
|
|
|
cost_rate: Number(tableItem.cost_tips) === 0 ? 0 : multiplication(division(pure_profit, tableItem.cost_tips) || 0, 100).toFixed(2)
|
|
|
}
|
|
|
})
|
|
@@ -236,14 +240,11 @@ export default {
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-
|
|
|
-.new-results{
|
|
|
+.new-results {
|
|
|
.search {
|
|
|
- height:36px;
|
|
|
- display: flex;
|
|
|
- justify-content: flex-end;
|
|
|
- padding:0px 10px;
|
|
|
- margin-top:10px
|
|
|
+ height: 36px;
|
|
|
+ padding: 0px 10px;
|
|
|
+ margin-top: 10px
|
|
|
}
|
|
|
}
|
|
|
</style>
|