| | |
| | | ProFormTextArea, |
| | | } from '@bole-core/components'; |
| | | import { EnumEnterpriseWalletAccess } from '@/constants'; |
| | | import { toRound } from '@/utils'; |
| | | |
| | | defineOptions({ |
| | | name: 'EditAccountInfoDialog', |
| | |
| | | const settlementAmount = computed(() => sumSettlementAmount()); |
| | | |
| | | function sumSettlementAmount() { |
| | | return (form.value.timeoutFee ?? 0) + (form.value.serviceFee ?? 0) + (form.value.otherFee ?? 0); |
| | | return toRound( |
| | | (form.value.timeoutFee ?? 0) + (form.value.serviceFee ?? 0) + (form.value.otherFee ?? 0) |
| | | ); |
| | | } |
| | | |
| | | function onTimeoutHoursChange(val: number) { |