diff --git a/src/api/oa/crm/crmQuoteInfo/types.ts b/src/api/oa/crm/crmQuoteInfo/types.ts index 6252b8d..b7356b2 100644 --- a/src/api/oa/crm/crmQuoteInfo/types.ts +++ b/src/api/oa/crm/crmQuoteInfo/types.ts @@ -84,6 +84,11 @@ export interface CrmQuoteInfoVO { */ paymentMethod: string; + /** + * 付款明细(文本说明) + */ + paymentDetail?: string; + /** * 币种(字典类型) */ @@ -297,6 +302,11 @@ export interface CrmQuoteInfoForm extends BaseEntity { */ paymentMethod?: string; + /** + * 付款明细(文本说明) + */ + paymentDetail?: string; + /** * 币种(字典类型) */ @@ -520,6 +530,11 @@ export interface CrmQuoteInfoQuery extends PageQuery { */ paymentMethod?: string; + /** + * 付款明细(文本说明) + */ + paymentDetail?: string; + /** * 币种(字典类型) */ diff --git a/src/views/oa/crm/crmQuoteInfo/edit.vue b/src/views/oa/crm/crmQuoteInfo/edit.vue index f45b41e..10781a1 100644 --- a/src/views/oa/crm/crmQuoteInfo/edit.vue +++ b/src/views/oa/crm/crmQuoteInfo/edit.vue @@ -118,6 +118,15 @@ + + + + + @@ -130,24 +139,24 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + +
@@ -251,7 +260,7 @@ - + @@ -280,8 +289,10 @@ - - + + + + @@ -437,7 +448,7 @@ - + @@ -540,6 +551,7 @@ const form = reactive({ warrantyPeriod: undefined, deliveryMethod: undefined, paymentMethod: undefined, + paymentDetail: undefined, currencyType: undefined, taxIncludedInfo: undefined, taxRate: undefined,