Преглед на файлове

费用报销对齐问题

cs преди 2 години
родител
ревизия
744a231d84
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      fhKeeper/formulahousekeeper/timesheet/src/views/corpreport/list.vue

+ 3 - 3
fhKeeper/formulahousekeeper/timesheet/src/views/corpreport/list.vue

@@ -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>