调整Rooming List付款方式选项
This commit is contained in:
@@ -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: '',
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user