客户画像

@if (loading) {

加载客户信息...

} @if (error && !loading) {

{{ error }}

} @if (!loading && !error && contactInfo) {
@if (profile.basic.avatar) { 头像 } @else { 头像 }

{{ profile.basic.name }}

{{ profile.basic.source }}
@if (profile.basic.tags.length > 0) {
@for (tag of profile.basic.tags; track tag) { {{ tag }} }
}

基础信息

手机号

{{ profile.basic.mobile }}

微信号

{{ profile.basic.wechat || '未绑定' }}

@if (!canViewSensitiveInfo) {
仅客服和组长可查看完整联系方式
}

客户画像

风格偏好
@if (profile.preferences.style.length > 0) { @for (style of profile.preferences.style; track style) { {{ style }} } } @else { 未设置 }
预算范围
{{ formatBudget(profile.preferences.budget) }}
@if (profile.preferences.colorAtmosphere) {
色彩氛围
{{ profile.preferences.colorAtmosphere }}
} @if (profile.preferences.demandType) {
需求类型
{{ profile.preferences.demandType }}
}
@if (profile.groups.length > 0) {

所在群聊

点击可跳转到群聊

@for (item of profile.groups; track item.groupChat.id) {

{{ item.groupChat.get('name') }}

@if (item.project) {

{{ item.project.get('title') }}

} @else {

暂无关联项目

}
}
} @if (profile.projects.length > 0) {

历史项目

@for (project of profile.projects; track project.id) {

{{ project.get('title') }}

{{ project.get('status') }} {{ project.get('currentStage') }}

更新时间: {{ formatDate(project.get('updatedAt')) }}

}
} @if (profile.followUpRecords.length > 0) {

跟进记录

@for (record of profile.followUpRecords; track $index) {
{{ record.operator }}

{{ record.content }}

{{ formatDate(record.time) }}
{{ record.operator }}

{{ record.content }}

}
}
}