|
@@ -167,17 +167,17 @@
|
|
|
<el-table-column align="center"
|
|
|
prop="actualSalary"
|
|
|
label="应发课酬">
|
|
|
- <template slot-scope="scope">{{scope.row.actualSalary + '元'}}</template>
|
|
|
+ <template slot-scope="scope">{{(scope.row.actualSalary) |moneyFormat }}元</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
prop="reduceSalary"
|
|
|
label="课酬扣款">
|
|
|
- <template slot-scope="scope">{{scope.row.reduceSalary + '元'}}</template>
|
|
|
+ <template slot-scope="scope">{{(scope.row.reduceSalary) | moneyFormat}}元</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
prop="finalSalary"
|
|
|
label="结算课酬">
|
|
|
- <template slot-scope="scope">{{scope.row.finalSalary + '元'}}</template>
|
|
|
+ <template slot-scope="scope">{{(scope.row.finalSalary) | moneyFormat}}元</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
prop
|