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 @@