diff --git a/src/pages/05_quotation/QuotationFormInfo.vue b/src/pages/05_quotation/QuotationFormInfo.vue index f46ddd95..c3684639 100644 --- a/src/pages/05_quotation/QuotationFormInfo.vue +++ b/src/pages/05_quotation/QuotationFormInfo.vue @@ -57,9 +57,10 @@ const payType = defineModel< const paySplitCount = defineModel('paySplitCount', { default: 1, }); -const paySplit = defineModel<{ no: number; amount: number }[]>('paySplit', { - required: true, -}); +const paySplit = defineModel<{ no: number; name?: string; amount: number }[]>( + 'paySplit', + { required: true }, +); const summaryPrice = defineModel<{ totalPrice: number; totalDiscount: number; @@ -269,6 +270,15 @@ watch( :class="{ 'q-mb-sm': i !== paySplit.length }" > {{ `${$t('quotation.periodNo')} ${i + 1}` }} +