diff --git a/components/CustomerManagement.vue b/components/CustomerManagement.vue index 5525205..cdd1150 100644 --- a/components/CustomerManagement.vue +++ b/components/CustomerManagement.vue @@ -55,41 +55,14 @@ :key="customer.id" @click="handleCustomerClick(customer)" > - - - - {{ customer.name }} - - - - - - - - - {{ getStatusText(customer.status) }} - - - - - {{ getIntentLevelText(customer.intentLevel) }} - - - - - {{ intent }} - - + @@ -185,12 +158,10 @@ + + + + diff --git a/pages/customer/detail/index.vue b/pages/customer/detail/index.vue index 6c215da..89ae501 100644 --- a/pages/customer/detail/index.vue +++ b/pages/customer/detail/index.vue @@ -11,30 +11,12 @@ - - - 客户姓名 - {{ customerDetail.contactName || customerDetail.name || '--' }} - - - 客户状态 - - {{ getStatusText(customerDetail.status) }} - - - - - - - - 客户意向 - {{ formatIntents(customerDetail.intents) }} - - - 意向强度 - {{ getIntentStrengthText(customerDetail.intentLevel) }} - - + @@ -148,6 +130,7 @@ import { getCustomerDetail, getCustomerFollowupList, getCustomerProjects, delete import FollowupTab from '@/components/customer-detail/FollowupTab.vue'; import ProjectsTab from '@/components/customer-detail/ProjectsTab.vue'; import InfoTab from '@/components/customer-detail/InfoTab.vue'; +import CustomerSummaryBrief from '@/components/customer/CustomerSummaryBrief.vue'; import { getCustomerStatusText, getCustomerStatusClass,