wupengfei
2025-11-01 6017810e587ac5f477677379aa3cce392e882cdb
src/views/ServiceChargeManage/components/EditAccountInfoDialog.vue
@@ -140,6 +140,7 @@
  ProFormTextArea,
} from '@bole-core/components';
import { EnumEnterpriseWalletAccess } from '@/constants';
import { toRound } from '@/utils';
defineOptions({
  name: 'EditAccountInfoDialog',
@@ -175,7 +176,9 @@
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) {