diff --git a/src/api/oa/erp/contractInfo/types.ts b/src/api/oa/erp/contractInfo/types.ts
index 42e8685..b3ccaef 100644
--- a/src/api/oa/erp/contractInfo/types.ts
+++ b/src/api/oa/erp/contractInfo/types.ts
@@ -149,6 +149,16 @@ export interface ContractInfoVO {
*/
remark: string;
+ /**
+ * 签订地点
+ */
+ signingPlace?: string;
+
+ /**
+ * 合同物料备注
+ */
+ materialRemark?: string;
+
/**
* 激活标识(1是 0否)
*/
@@ -327,6 +337,16 @@ export interface ContractInfoForm extends BaseEntity {
*/
remark?: string;
+ /**
+ * 签订地点
+ */
+ signingPlace?: string;
+
+ /**
+ * 合同物料备注
+ */
+ materialRemark?: string;
+
/**
* 激活标识(1是 0否)
*/
diff --git a/src/views/oa/erp/contractInfo/edit.vue b/src/views/oa/erp/contractInfo/edit.vue
index 75b9364..25f13a8 100644
--- a/src/views/oa/erp/contractInfo/edit.vue
+++ b/src/views/oa/erp/contractInfo/edit.vue
@@ -81,6 +81,11 @@
+
+
+
+
+
@@ -104,12 +109,12 @@
-
+
-
+
@@ -261,6 +266,12 @@
+
+
+
+
+
+
@@ -334,7 +345,9 @@
allow-create
default-first-option
>
+
+
@@ -590,7 +603,9 @@ const initFormData: ContractInfoFormEx = {
variables: undefined,
activeFlag: '1',
contractMaterialList: [],
- file: undefined
+ file: undefined,
+ signingPlace: undefined,
+ materialRemark: undefined
} as any;
const data = reactive<{ form: ContractInfoFormEx; rules: any }>({