refactor: usr format nuber deciml
This commit is contained in:
parent
9e70383d3b
commit
25f21cd158
1 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
import { QTableProps } from 'quasar';
|
||||
import { dateFormat } from 'src/utils/datetime';
|
||||
|
||||
import { formatNumberDecimal, commaInput } from 'stores/utils';
|
||||
import BadgeComponent from 'components/BadgeComponent.vue';
|
||||
import KebabAction from 'components/shared/KebabAction.vue';
|
||||
|
||||
|
|
@ -105,7 +106,7 @@ defineEmits<{
|
|||
</q-td>
|
||||
|
||||
<q-td v-if="visibleColumns.includes('summaryPrice')">
|
||||
{{ props.row.finalPrice }}
|
||||
{{ formatNumberDecimal(props.row.finalPrice, 2) }}
|
||||
</q-td>
|
||||
|
||||
<q-td v-if="visibleColumns.includes('payCondition')">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue