diff --git a/src/api/oa/erp/contractInfo/types.ts b/src/api/oa/erp/contractInfo/types.ts index 97f524c..4b51b84 100644 --- a/src/api/oa/erp/contractInfo/types.ts +++ b/src/api/oa/erp/contractInfo/types.ts @@ -104,6 +104,11 @@ export interface ContractInfoVO { */ ossId: string | number; + /** + * 付款账户ID + */ + paymentAccountId?: string | number; + /** * 付款方式 */ @@ -292,6 +297,11 @@ export interface ContractInfoForm extends BaseEntity { */ ossId?: string | number; + /** + * 付款账户ID + */ + paymentAccountId?: string | number; + /** * 付款方式 */ diff --git a/src/views/oa/base/printTemplate/index.vue b/src/views/oa/base/printTemplate/index.vue index de7c346..05d21a2 100644 --- a/src/views/oa/base/printTemplate/index.vue +++ b/src/views/oa/base/printTemplate/index.vue @@ -294,7 +294,7 @@ const handleUpdate = async (row?: PrintTemplateVO) => { const updateTemplate = (row) => { const _templateId = row?.templateId || ids.value[0]; - router.push({ path: '/template/templateUpdate', query: { templateId: _templateId } }); + router.push({ path: '/template/templateUpdate', query: { templateId: _templateId, templateType: row.templateType } }); }; /** 提交按钮 */ diff --git a/src/views/oa/base/templateVariable/index.vue b/src/views/oa/base/templateVariable/index.vue index 9468542..b34dc5d 100644 --- a/src/views/oa/base/templateVariable/index.vue +++ b/src/views/oa/base/templateVariable/index.vue @@ -62,8 +62,8 @@ - - + +