From 2d7d7a42258d3d53443347e82645a91bb7bd0ad0 Mon Sep 17 00:00:00 2001 From: yinq Date: Thu, 20 Nov 2025 17:39:06 +0800 Subject: [PATCH] =?UTF-8?q?1.0.37=20=E7=BB=B4=E6=8A=A4=E5=90=88=E5=90=8C?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=8C=89=E9=92=AE=E3=80=81=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=90=88=E5=90=8C=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/oa/erp/contractInfo/types.ts | 15 ++ src/views/oa/base/printTemplate/index.vue | 16 +-- src/views/oa/erp/contractInfo/edit.vue | 14 +- src/views/oa/erp/contractInfo/index.vue | 160 ++++++++++++++++++--- src/views/oa/erp/projectInfo/index.vue | 13 +- src/views/oa/erp/projectPurchase/index.vue | 4 +- 6 files changed, 182 insertions(+), 40 deletions(-) diff --git a/src/api/oa/erp/contractInfo/types.ts b/src/api/oa/erp/contractInfo/types.ts index f867900..c5edbdc 100644 --- a/src/api/oa/erp/contractInfo/types.ts +++ b/src/api/oa/erp/contractInfo/types.ts @@ -14,6 +14,11 @@ export interface ContractInfoVO { */ contractCode: string; + /** + * 客户合同编号 + */ + customerContractCode: string; + /** * 合同名称 */ @@ -167,6 +172,11 @@ export interface ContractInfoForm extends BaseEntity { */ contractCode?: string; + /** + * 客户合同编号 + */ + customerContractCode?: string; + /** * 合同名称 */ @@ -323,6 +333,11 @@ export interface ContractInfoQuery extends PageQuery { */ contractCode?: string; + /** + * 客户合同编号 + */ + customerContractCode?: string; + /** * 合同名称 */ diff --git a/src/views/oa/base/printTemplate/index.vue b/src/views/oa/base/printTemplate/index.vue index 4dc3029..de7c346 100644 --- a/src/views/oa/base/printTemplate/index.vue +++ b/src/views/oa/base/printTemplate/index.vue @@ -90,12 +90,12 @@ {{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }} - + diff --git a/src/views/oa/erp/contractInfo/edit.vue b/src/views/oa/erp/contractInfo/edit.vue index 382b913..3e73655 100644 --- a/src/views/oa/erp/contractInfo/edit.vue +++ b/src/views/oa/erp/contractInfo/edit.vue @@ -1,6 +1,6 @@