|
@@ -85,9 +85,9 @@
|
|
|
|
|
|
<el-table-column label="营业收入(净)" align="center" min-width="115px">
|
|
|
<template slot-scope="scope">
|
|
|
- <div style="display:flex;justify-content:center" :style="`${scope.row.companyName === '合计-元隆雅图' ? '' :getCurrentValueStyle(scope.row.msale_total, scope.row.total_tips)}`">
|
|
|
+ <div style="display:flex;justify-content:center" :style="`${isAmountProp(scope.row.companyName) ? '' :getCurrentValueStyle(scope.row.msale_total, scope.row.total_tips)}`">
|
|
|
{{
|
|
|
- isAmountProp( scope.row.companyName)
|
|
|
+ isAmountProp(scope.row.companyName)
|
|
|
? unit2TenThousand(calcAmount('msale_total', scope.row.companyNo), isTenThound)
|
|
|
: unit2TenThousand(scope.row.msale_total, isTenThound)
|
|
|
}}
|
|
@@ -117,7 +117,7 @@
|
|
|
|
|
|
<el-table-column label="毛利完成" align="center" min-width="90px">
|
|
|
<template slot-scope="scope">
|
|
|
- <div :style="`${scope.row.companyName === '合计-元隆雅图' ? '' : getCurrentValueStyle(scope.row.gross_completion, scope.row.cost_tips)}`">
|
|
|
+ <div :style="`${isAmountProp(scope.row.companyName) ? '' : getCurrentValueStyle(scope.row.gross_completion, scope.row.cost_tips)}`">
|
|
|
{{ costField
|
|
|
? isAmountProp(scope.row.companyName) ? unit2TenThousand(calcAmount('gross_completion', scope.row.companyNo), isTenThound) : unit2TenThousand(scope.row.gross_completion, isTenThound)
|
|
|
: '***'
|
|
@@ -129,7 +129,7 @@
|
|
|
|
|
|
<el-table-column label="毛利完成%" align="center" min-width="85px">
|
|
|
<template slot-scope="scope">
|
|
|
- <div :style="scope.row.companyName === '合计-元隆雅图' ? '' : getCurrentRateStyle(scope.row.gross_completion_rate)">
|
|
|
+ <div :style="isAmountProp(scope.row.companyName) ? '' : getCurrentRateStyle(scope.row.gross_completion_rate)">
|
|
|
{{ isAmountProp(scope.row.companyName) ? calcAmountGrossCompletionRate(scope.row.companyNo) : scope.row.gross_completion_rate + '%' }}
|
|
|
</div>
|
|
|
</template>
|