| | |
| | | align="right" |
| | | > |
| | | <template #default="scope"> |
| | | <span>{{ scope.row.amount?.toFixed(2) }}</span> |
| | | <span>{{ scope.row.amount?.toFixed(3) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | |
| | | align="right" |
| | | > |
| | | <template #default="scope"> |
| | | <span>{{ scope.row.liters?.toFixed(2) }}</span> |
| | | <span>{{ scope.row.liters?.toFixed(3) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | |
| | | <span |
| | | :style="scope.row.isAbnormal ? 'color:#F56C6C;font-weight:600;' : ''" |
| | | > |
| | | {{ scope.row.fuelConsumption != null ? scope.row.fuelConsumption.toFixed(2) : '-' }} |
| | | {{ scope.row.fuelConsumption != null ? scope.row.fuelConsumption.toFixed(3) : '-' }} |
| | | </span> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | > |
| | | <template #default="scope"> |
| | | <span> |
| | | {{ scope.row.avgConsumption != null ? scope.row.avgConsumption.toFixed(2) : '-' }} |
| | | {{ scope.row.avgConsumption != null ? scope.row.avgConsumption.toFixed(3) : '-' }} |
| | | </span> |
| | | </template> |
| | | </el-table-column> |