调整Rooming List付款方式选项

This commit is contained in:
andy
2026-07-22 17:31:55 +07:00
parent 7e2cd8969f
commit 0de960372b
14 changed files with 74 additions and 25 deletions

View File

@@ -141,6 +141,9 @@
:class="validationClass('paymentType')"
v-bind="validationAria('paymentType')"
>
<option value="BTQR">
{{ t('roomingList.paymentTypeBtqr') }}
</option>
<option value="CA">
{{ t('roomingList.paymentTypeCa') }}
</option>
@@ -265,7 +268,7 @@ type RoomingListFieldKey =
| 'paymentType'
| 'nationality'
const allowedPaymentTypes = new Set(['CA'])
const allowedPaymentTypes = new Set(['BTQR', 'CA'])
const allowedNationalities = new Set(['KR', 'CHN'])
const { t, te } = useI18n()
@@ -275,7 +278,7 @@ const form = reactive({
file: null as File | null,
peoplePerRoom: '',
roomType: '',
paymentType: 'CA',
paymentType: 'BTQR',
nationality: '',
})