|
@@ -59,14 +59,29 @@
|
|
|
:jv="{1: '核酸检测',2: '消杀作业', 3: '装卸作业', 4: '停车费', 5: '过磅费', 6: '入场管理费', 7: '充电打冷作业'}"></sa-td>
|
|
|
<sa-td name="月份" prop="month" ></sa-td>
|
|
|
<sa-td name="数量" prop="num" ></sa-td>
|
|
|
- <sa-td name="含税收入(元)" prop="statisticsMoney"></sa-td>
|
|
|
+<!-- <sa-td name="含税收入(元)" prop="statisticsMoney"></sa-td>-->
|
|
|
+ <el-table-column label="含税收入(元)" >
|
|
|
+ <template slot-scope="s">
|
|
|
+ <span>{{Number(s.row.statisticsMoney).toFixed(2)}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="税率(%)" >
|
|
|
<template slot-scope="s">
|
|
|
<span>{{s.row.taxRate * 100}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <sa-td name="税款(元)" prop="taxes" ></sa-td>
|
|
|
- <sa-td name="不含税收入(元)" prop="noTaxMoney" ></sa-td>
|
|
|
+<!-- <sa-td name="税款(元)" prop="taxes" ></sa-td>-->
|
|
|
+ <el-table-column label="税款(元)" >
|
|
|
+ <template slot-scope="s">
|
|
|
+ <span>{{Number(s.row.taxes).toFixed(2)}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+<!-- <sa-td name="不含税收入(元)" prop="noTaxMoney" ></sa-td>-->
|
|
|
+ <el-table-column label="不含税收入(元)" >
|
|
|
+ <template slot-scope="s">
|
|
|
+ <span>{{Number(s.row.noTaxMoney).toFixed(2)}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<!-- <el-table-column label="操作" fixed="right" width="240px">-->
|
|
|
<!-- <template slot-scope="s">-->
|
|
|
<!-- <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>-->
|