|
@@ -1,12 +1,13 @@
|
|
<template>
|
|
<template>
|
|
<div class="SalesReportRejectedNew">
|
|
<div class="SalesReportRejectedNew">
|
|
- <h3 class="table-header">{{companyName || '--'}}业绩报表</h3>
|
|
|
|
|
|
+ <div class="table-header">{{companyName || '--'}}业绩报表</div>
|
|
|
|
|
|
- <div class="table-sub__header">
|
|
|
|
- <span>月指标:</span>{{ stats.total_tips }}
|
|
|
|
- <span>完成额:</span> {{ stats.month }}
|
|
|
|
- <span>完成率:</span> {{ stats.completionRate }}
|
|
|
|
- </div>
|
|
|
|
|
|
+ <el-table class="table-sub__header" :data="[stats]" size="mini" border style="margin-top:10px;margin-bottom:-1px">
|
|
|
|
+ <!-- <span>月指标:</span>{{ stats.total_tips }} -->
|
|
|
|
+ <el-table-column align="center" prop="total_tips" label="月指标" />
|
|
|
|
+ <el-table-column align="center" prop="month" label="完成额" />
|
|
|
|
+ <el-table-column align="center" prop="completionRate" label="完成率" />
|
|
|
|
+ </el-table>
|
|
|
|
|
|
<el-table
|
|
<el-table
|
|
:data="tableData"
|
|
:data="tableData"
|
|
@@ -20,22 +21,22 @@
|
|
:row-class-name="tableRowClassName"
|
|
:row-class-name="tableRowClassName"
|
|
:tree-props="{ children: 'child', hasChildren: 'hasChildren' }"
|
|
:tree-props="{ children: 'child', hasChildren: 'hasChildren' }"
|
|
>
|
|
>
|
|
- <el-table-column prop="type" label="业绩类型" fixed="left" min-width="120">
|
|
|
|
|
|
+ <el-table-column prop="type" label="业绩类型" width="70">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ getTypeLabel(scope.row.type) }}
|
|
{{ getTypeLabel(scope.row.type) }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="本日销售额" min-width="120" align="center">
|
|
|
|
|
|
+ <el-table-column label="本日销售额" max-width="120" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ unit2TenThousand(scope.row.dayinfo.sale_total) }}
|
|
{{ unit2TenThousand(scope.row.dayinfo.sale_total) }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="本月销售额" min-width="120" align="center">
|
|
|
|
|
|
+ <el-table-column label="本月销售额" max-width="120" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ unit2TenThousand(scope.row.monthinfo.msale_total) }}
|
|
{{ unit2TenThousand(scope.row.monthinfo.msale_total) }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="月占比" prop="proportion" align="center" />
|
|
|
|
|
|
+ <el-table-column label="月占比(%)" prop="proportion" align="center" />
|
|
</el-table>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -70,7 +71,7 @@ export default {
|
|
/* 月指标 **/
|
|
/* 月指标 **/
|
|
total_tips: unit2TenThousand(total_tips),
|
|
total_tips: unit2TenThousand(total_tips),
|
|
/* 完成率 **/
|
|
/* 完成率 **/
|
|
- completionRate: completionRate ? completionRate.toFixed(2) + '%' : completionRate + '%'
|
|
|
|
|
|
+ completionRate: completionRate ? completionRate.toFixed(2) + '%' : completionRate + '%'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -151,7 +152,7 @@ export default {
|
|
/* 月占比 = (当前业绩类型月销售额 / 总月销售额) / 100 **/
|
|
/* 月占比 = (当前业绩类型月销售额 / 总月销售额) / 100 **/
|
|
proportion:multiplication(
|
|
proportion:multiplication(
|
|
division(currentMonthSale,this.total.month) || 0
|
|
division(currentMonthSale,this.total.month) || 0
|
|
- ,100).toFixed(2) + '%'
|
|
|
|
|
|
+ ,100).toFixed(2)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
|
|
@@ -167,11 +168,10 @@ export default {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.table-header {
|
|
.table-header {
|
|
- line-height: 22px;
|
|
|
|
|
|
+ font-size: 14px;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
border-bottom: none;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
-
|
|
|
|
.table-sub__header {
|
|
.table-sub__header {
|
|
|
|
|
|
span{
|
|
span{
|