|
@@ -3,10 +3,9 @@
|
|
|
<h3 class="table-header">{{name}}业绩报表</h3>
|
|
|
|
|
|
<div class="table-sub__header">
|
|
|
- <span>月指标:</span>{{ stats.month }}
|
|
|
- <span>完成额:</span> {{ stats.total_tips }}
|
|
|
+ <span>月指标:</span>{{ stats.total_tips }}
|
|
|
+ <span>完成额:</span> {{ stats.month }}
|
|
|
<span>完成率:</span> {{ stats.completionRate }}
|
|
|
- <span>本日销售额:</span> {{ stats.day }}
|
|
|
</div>
|
|
|
|
|
|
<el-table
|
|
@@ -26,39 +25,25 @@
|
|
|
{{ mapReponseType[String(scope.row.type)] }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="本日金额" min-width="120" align="center">
|
|
|
- <el-table-column label="销售">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ unit2TenThousand(scope.row.dayinfo.sale_total) }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="退货">
|
|
|
- <template slot-scope="scope">
|
|
|
+ <el-table-column label="本日销售额" min-width="120" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
{{ unit2TenThousand(scope.row.dayinfo.sale_total) }}
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
- <el-table-column label="本月金额" min-width="120" align="center">
|
|
|
- <el-table-column label="销售">
|
|
|
- <template slot-scope="scope">
|
|
|
+ <el-table-column label="本月销售额" min-width="120" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
{{ unit2TenThousand(scope.row.monthinfo.msale_total) }}
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="退货">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ unit2TenThousand(scope.row.monthinfo.mth_total) }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="月占比" prop="proportion" />
|
|
|
+ <el-table-column label="月占比" prop="proportion" align="center" />
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { mapReponseType, addition, division, multiplication, unit2TenThousand} from "./_utils"
|
|
|
+import { mapReponseType, addition, division, multiplication, unit2TenThousand, subtraction} from "./_utils"
|
|
|
import asyncRequest from "@/api/report";
|
|
|
import setHeight from "@/mixins/index";
|
|
|
|
|
@@ -76,13 +61,19 @@ export default {
|
|
|
},
|
|
|
computed:{
|
|
|
stats(){
|
|
|
- const { day, month ,total_tips} = this.total;
|
|
|
-
|
|
|
+ const { month,monthReturn ,total_tips} = this.total;
|
|
|
+ /* 完成额 = 月销售额 - 月退货额 **/
|
|
|
+ const completion = subtraction(month, monthReturn)
|
|
|
+ /* 完成率 = 完成额 / 月指标 **/
|
|
|
+ const completionRate = multiplication(division(completion,total_tips) || 0, 100).toFixed(2)
|
|
|
+
|
|
|
return {
|
|
|
- day: unit2TenThousand(day),
|
|
|
- month: unit2TenThousand(month),
|
|
|
+ /* 月指标 **/
|
|
|
total_tips: unit2TenThousand(total_tips),
|
|
|
- completionRate:multiplication(division(month,total_tips) || 0, 100) + '%'
|
|
|
+ /* 完成额 **/
|
|
|
+ month: unit2TenThousand(completion),
|
|
|
+ /* 完成率 **/
|
|
|
+ completionRate:completionRate + '%'
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -91,7 +82,8 @@ export default {
|
|
|
total:{
|
|
|
day:0,
|
|
|
month:0,
|
|
|
- total_tips: 0
|
|
|
+ total_tips: 0,
|
|
|
+ monthReturn:0
|
|
|
},
|
|
|
mapReponseType,
|
|
|
dataTime: this.date,
|
|
@@ -136,7 +128,8 @@ export default {
|
|
|
this.total = {
|
|
|
total_tips: Number(total_tips),
|
|
|
day: dayinfo.reduce((prev, {sale_total = "0"}) => addition(prev,sale_total),0),
|
|
|
- month: monthinfo.reduce((prev, {msale_total = "0"}) => addition(prev,msale_total),0)
|
|
|
+ month: monthinfo.reduce((prev, {msale_total = "0"}) => addition(prev,msale_total),0),
|
|
|
+ monthReturn: monthinfo.reduce((prev, {mth_total = "0"}) => addition(prev,mth_total),0),
|
|
|
}
|
|
|
|
|
|
this.tableData = types.map(type => {
|
|
@@ -145,12 +138,20 @@ export default {
|
|
|
const currentMonthSale = Number(_monthinfo.msale_total) || 0
|
|
|
return {
|
|
|
type,
|
|
|
- dayinfo: _dayinfo,
|
|
|
- monthinfo:_monthinfo,
|
|
|
- /* 占比 = (当前业绩类型月销售额 / 总月销售额) / 100 **/
|
|
|
+ dayinfo: {
|
|
|
+ ..._dayinfo,
|
|
|
+ /** 日销售额 = 日销售额 - 日退货额 */
|
|
|
+ sale_total:subtraction(_dayinfo.sale_total,_dayinfo.th_total)
|
|
|
+ },
|
|
|
+ monthinfo:{
|
|
|
+ ..._monthinfo,
|
|
|
+ /** 月销售额 = 月销售额 - 月退货额 */
|
|
|
+ msale_total:subtraction(_monthinfo.msale_total,_monthinfo.mth_total)
|
|
|
+ },
|
|
|
+ /* 月占比 = (当前业绩类型月销售额 / 总月销售额) / 100 **/
|
|
|
proportion:multiplication(
|
|
|
division(currentMonthSale,this.total.month) || 0
|
|
|
- ,100) + '%'
|
|
|
+ ,100).toFixed(2) + '%'
|
|
|
}
|
|
|
})
|
|
|
|