diff --git a/src/api/oa/crm/customerContact/types.ts b/src/api/oa/crm/customerContact/types.ts
index 2150546..1330355 100644
--- a/src/api/oa/crm/customerContact/types.ts
+++ b/src/api/oa/crm/customerContact/types.ts
@@ -84,6 +84,12 @@ export interface CustomerContactVO {
*/
activeFlag: string;
+ /** 所属客户名称 */
+ customerName?: string;
+
+ /** 所属客户在客户表中的创建人 */
+ customerCreateBy?: string | number;
+
}
export interface CustomerContactForm extends BaseEntity {
diff --git a/src/api/oa/crm/customerInfo/types.ts b/src/api/oa/crm/customerInfo/types.ts
index 750ba1c..6f4098b 100644
--- a/src/api/oa/crm/customerInfo/types.ts
+++ b/src/api/oa/crm/customerInfo/types.ts
@@ -144,6 +144,9 @@ export interface CustomerInfoVO {
*/
ourCompanyFlag?: string;
+ /** 创建人用户ID */
+ createBy?: string | number;
+
}
export interface CustomerInfoForm extends BaseEntity {
diff --git a/src/views/oa/crm/customerDetail/index.vue b/src/views/oa/crm/customerDetail/index.vue
index 8b10e7f..0807a88 100644
--- a/src/views/oa/crm/customerDetail/index.vue
+++ b/src/views/oa/crm/customerDetail/index.vue
@@ -43,7 +43,6 @@
{{ customerInfo?.technicalContact || '-' }}
{{ customerInfo?.technicalContactPhone || '-' }}
{{ customerInfo?.legalRepresentative || '-' }}
- {{ customerInfo?.businessLicenseNumber || '-' }}
{{ customerInfo?.taxNumber || '-' }}
{{ customerInfo?.bankAccountOpening || '-' }}
{{ customerInfo?.bankNumber || '-' }}