|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="SalesReportRejectedNew">
|
|
|
- <h3 class="table-header">{{name}}业绩报表</h3>
|
|
|
+ <h3 class="table-header">{{companyName || '--'}}业绩报表</h3>
|
|
|
|
|
|
<div class="table-sub__header">
|
|
|
<span>月指标:</span>{{ stats.total_tips }}
|
|
@@ -31,7 +31,6 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
-
|
|
|
<el-table-column label="本月销售额" min-width="120" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
{{ unit2TenThousand(scope.row.monthinfo.msale_total) }}
|
|
@@ -66,14 +65,13 @@ export default {
|
|
|
const completion = subtraction(month, monthReturn)
|
|
|
/* 完成率 = 完成额 / 月指标 **/
|
|
|
const completionRate = multiplication(division(completion,total_tips) || 0, 100).toFixed(2)
|
|
|
-
|
|
|
return {
|
|
|
/* 月指标 **/
|
|
|
total_tips: unit2TenThousand(total_tips),
|
|
|
/* 完成额 **/
|
|
|
month: unit2TenThousand(completion),
|
|
|
/* 完成率 **/
|
|
|
- completionRate:completionRate + '%'
|
|
|
+ completionRate: completionRate + '%'
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -85,6 +83,7 @@ export default {
|
|
|
total_tips: 0,
|
|
|
monthReturn:0
|
|
|
},
|
|
|
+ companyName:"",
|
|
|
mapReponseType,
|
|
|
dataTime: this.date,
|
|
|
loading: false,
|
|
@@ -121,7 +120,8 @@ export default {
|
|
|
});
|
|
|
|
|
|
if (res.code === 0 && res.data && res.data.length > 0) {
|
|
|
- const { monthinfo = [], dayinfo = [], total_tips = 0 } = res.data[0] || [];
|
|
|
+ const { monthinfo = [], dayinfo = [], total_tips = 0, companyName } = res.data[0] || [];
|
|
|
+ this.companyName = companyName
|
|
|
const types = Object.keys(mapReponseType)
|
|
|
|
|
|
|