|
@@ -78,17 +78,17 @@
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
- <template v-if="costField">
|
|
|
+ <!-- <template v-if="costField"> -->
|
|
|
<el-table-column label="毛利目标" align="center" min-width="90px">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ unit2TenThousand(scope.row.cost_tips, isTenThound) }}
|
|
|
+ {{ costField ? unit2TenThousand(scope.row.cost_tips, isTenThound) : '***' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="毛利完成" align="center" min-width="90px">
|
|
|
<template slot-scope="scope">
|
|
|
<div :style="`${getCurrentValueStyle(scope.row.gross_completion, scope.row.cost_tips)}`">
|
|
|
- {{ unit2TenThousand(scope.row.gross_completion, isTenThound) }}
|
|
|
+ {{ costField ? unit2TenThousand(scope.row.gross_completion, isTenThound) : '***' }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -104,7 +104,7 @@
|
|
|
|
|
|
<el-table-column label="成本合计" align="center" min-width="125px">
|
|
|
<template slot-scope="scope">
|
|
|
- <div style="display:flex;justify-content:center">
|
|
|
+ <div style="display:flex;justify-content:center" v-if="costField">
|
|
|
{{ unit2TenThousand(scope.row.mcost_total, isTenThound) }}
|
|
|
<el-popover placement="right" :width="200" trigger="click">
|
|
|
<div class="table-size">
|
|
@@ -118,17 +118,19 @@
|
|
|
</template>
|
|
|
</el-popover>
|
|
|
</div>
|
|
|
+
|
|
|
+ <p v-else>***</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="实际毛利率" align="center" width="85px">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <div :style="`${getCurrentRateStyle(scope.row.gross_sale_completion_rate)}`"> -->
|
|
|
- {{ unit2TenThousand(scope.row.gross_sale_completion_rate) + "%" }}
|
|
|
+ {{ costField ? unit2TenThousand(scope.row.gross_sale_completion_rate) + "%" : '***' }}
|
|
|
<!-- </div> -->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- </template>
|
|
|
+ <!-- </template> -->
|
|
|
</el-table>
|
|
|
</el-row>
|
|
|
|