diff --git a/src/api/crm/business/index.ts b/src/api/crm/business/index.ts index 8dd06563..05b0d5cd 100644 --- a/src/api/crm/business/index.ts +++ b/src/api/crm/business/index.ts @@ -27,6 +27,19 @@ export interface BusinessVO { creatorName?: string // 创建人名称 createTime: Date // 创建时间 updateTime: Date // 更新时间 + products?: [ + { + id: number + productId: number + productName: string + productNo: string + productUnit: number + productPrice: number + businessPrice: number + count: number + totalPrice: number + } + ] } // 查询 CRM 商机列表 diff --git a/src/views/crm/business/detail/BusinessProductList.vue b/src/views/crm/business/detail/BusinessProductList.vue new file mode 100644 index 00000000..f995f3e5 --- /dev/null +++ b/src/views/crm/business/detail/BusinessProductList.vue @@ -0,0 +1,66 @@ + + diff --git a/src/views/crm/business/detail/index.vue b/src/views/crm/business/detail/index.vue index dd8787c2..2d17f39d 100644 --- a/src/views/crm/business/detail/index.vue +++ b/src/views/crm/business/detail/index.vue @@ -23,6 +23,10 @@ :customer-id="business.customerId" /> + + + +