|
@@ -981,17 +981,17 @@
|
|
|
{{scope.row.invoiceType == null?'':(scope.row.invoiceType == 0 ? '增值税专用发票' : '增值税普通发票')}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="amount" :label="this.user.timeType.easyExpense==0?$t('amountof')+'('+ $t('tax') +')': $t('amountof')" align="right">
|
|
|
+ <el-table-column prop="amount" :label="this.user.timeType.easyExpense==0?$t('amountof')+'('+ $t('tax') +')': $t('amountof')">
|
|
|
<template slot-scope="scope">
|
|
|
{{scope.row.amount}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="amount" :label="$t('taxs')" align="right" v-if="this.user.timeType.easyExpense==0">
|
|
|
+ <el-table-column prop="amount" :label="$t('taxs')" v-if="this.user.timeType.easyExpense==0">
|
|
|
<template slot-scope="scope">
|
|
|
{{scope.row.taxValue == null?'0.00':scope.row.taxValue.toFixed(2)}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="amount" :label="$t('amountof')+'('+ $t('notax') +')'" align="right" v-if="this.user.timeType.easyExpense==0">
|
|
|
+ <el-table-column prop="amount" :label="$t('amountof')+'('+ $t('notax') +')'" v-if="this.user.timeType.easyExpense==0">
|
|
|
<template slot-scope="scope">
|
|
|
{{(scope.row.amount-scope.row.taxValue).toFixed(2)}}
|
|
|
</template>
|