客户管理添加客户备注

This commit is contained in:
WindowBird 2025-11-11 16:05:16 +08:00
parent baf58613df
commit afaa1d55f3

View File

@ -93,6 +93,11 @@
<!-- 客户详细信息区域 -->
<view class="customer-details">
<!-- 备注 -->
<view class="detail-row">
<text class="detail-label">备注</text>
<text class="detail-value">{{ customer.remark || '--' }}</text>
</view>
<!-- 微信号 -->
<view class="detail-row">
<text class="detail-label">微信号</text>
@ -111,11 +116,7 @@
<text class="detail-value follow-content">{{ truncateText(customer.lastFollowRecord.content, 30) }}</text>
</view>
<!-- 分配用户 -->
<view class="detail-row">
<text class="detail-label">客户归属</text>
<text class="detail-value">{{ customer.followName || '--' }}</text>
</view>
<!-- 最后跟进时间 -->
<view class="detail-row" v-if="customer.lastFollowTime">
@ -128,6 +129,12 @@
<text class="detail-label">下次跟进</text>
<text class="detail-value">{{ formatDateTime(customer.nextFollowTime) }}</text>
</view>
<!-- 分配用户 -->
<view class="detail-row">
<text class="detail-label">客户归属</text>
<text class="detail-value">{{ customer.followName || '--' }}</text>
</view>
</view>
<!-- 操作按钮 -->