|
@@ -61,7 +61,12 @@
|
|
<!-- <sa-td name="业务类型" prop="itemTypeName" ></sa-td>-->
|
|
<!-- <sa-td name="业务类型" prop="itemTypeName" ></sa-td>-->
|
|
<sa-td name="日期" type="date" prop="dayTime" ></sa-td>
|
|
<sa-td name="日期" type="date" prop="dayTime" ></sa-td>
|
|
<sa-td name="数量" prop="num" ></sa-td>
|
|
<sa-td name="数量" prop="num" ></sa-td>
|
|
- <sa-td name="含税收入(元)" prop="taxMoney" ></sa-td>
|
|
|
|
|
|
+<!-- <sa-td name="含税收入(元)" prop="taxMoney" ></sa-td>-->
|
|
|
|
+ <el-table-column label="含税收入(元)" >
|
|
|
|
+ <template slot-scope="s">
|
|
|
|
+ <span>{{Number(s.row.taxMoney).toFixed(2)}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<!-- <sa-td name="税率" prop="taxRate" ></sa-td>-->
|
|
<!-- <sa-td name="税率" prop="taxRate" ></sa-td>-->
|
|
<el-table-column label="税率(%)" >
|
|
<el-table-column label="税率(%)" >
|
|
<template slot-scope="s">
|
|
<template slot-scope="s">
|
|
@@ -71,11 +76,16 @@
|
|
<!-- <sa-td name="税款(元)" prop="taxes" ></sa-td>-->
|
|
<!-- <sa-td name="税款(元)" prop="taxes" ></sa-td>-->
|
|
<el-table-column label="税款(元)" >
|
|
<el-table-column label="税款(元)" >
|
|
<template slot-scope="s">
|
|
<template slot-scope="s">
|
|
- <span v-if="s.row.taxes != null" >{{s.row.taxes}}</span>
|
|
|
|
- <span v-else >{{Math.round((s.row.taxMoney-s.row.noTaxMoney)*100)/100}}</span>
|
|
|
|
|
|
+ <span v-if="s.row.taxes != null" >{{Number(s.row.taxes).toFixed(2)}}</span>
|
|
|
|
+ <span v-else >{{Number(s.row.taxMoney-s.row.noTaxMoney).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>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <sa-td name="不含税收入(元)" prop="noTaxMoney" ></sa-td>
|
|
|
|
<sa-td name="支付方式" prop="payType" type="enum" :jv="{3: '微信支付'}"></sa-td>
|
|
<sa-td name="支付方式" prop="payType" type="enum" :jv="{3: '微信支付'}"></sa-td>
|
|
<!-- <el-table-column label="操作" fixed="right" width="240px">-->
|
|
<!-- <el-table-column label="操作" fixed="right" width="240px">-->
|
|
<!-- <template slot-scope="s">-->
|
|
<!-- <template slot-scope="s">-->
|