|
@@ -14,62 +14,62 @@
|
|
|
:row-class-name="tableRowClassName"
|
|
|
:tree-props="{ children: 'child', hasChildren: 'hasChildren' }"
|
|
|
>
|
|
|
- <el-table-column prop="p" label="业绩类型" fixed="left" width="120">
|
|
|
+ <el-table-column prop="p" label="业绩类型" fixed="left" min-width="120">
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="本日金额" width="120" align="center">
|
|
|
- <el-table-column show-overflow-tooltip label="销售" width="120">
|
|
|
+ <el-table-column label="本日金额" min-width="120" align="center">
|
|
|
+ <el-table-column show-overflow-tooltip label="销售" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.dtotal | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="退款" width="120">
|
|
|
+ <el-table-column show-overflow-tooltip label="退款" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.thfee | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column label="本周金额" width="120" align="center">
|
|
|
- <el-table-column show-overflow-tooltip label="销售" width="120">
|
|
|
+ <el-table-column label="本周金额" min-width="120" align="center">
|
|
|
+ <el-table-column show-overflow-tooltip label="销售" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.wtotal | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="退款" width="120">
|
|
|
+ <el-table-column show-overflow-tooltip label="退款" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.wthfee | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column label="本月金额" width="120" align="center">
|
|
|
- <el-table-column show-overflow-tooltip label="销售指标" width="120">
|
|
|
+ <el-table-column label="本月金额" min-width="120" align="center">
|
|
|
+ <el-table-column show-overflow-tooltip label="销售指标" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.tips | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column show-overflow-tooltip label="销售" width="120">
|
|
|
+ <el-table-column show-overflow-tooltip label="销售" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.total | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="销售完成率" width="95">
|
|
|
+ <el-table-column show-overflow-tooltip label="销售完成率" min-width="95">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.rate ? scope.row.rate + "%" : "" }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="退款" width="120">
|
|
|
+ <el-table-column show-overflow-tooltip label="退款" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.mthfee | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="净销售" width="120">
|
|
|
+ <el-table-column show-overflow-tooltip label="净销售" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.thtotal | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="净销售完成率" width="95">
|
|
|
+ <el-table-column show-overflow-tooltip label="净销售完成率" min-width="95">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.thrate ? scope.row.thrate + "%" : "" }}</span>
|
|
|
</template>
|