客户管理添加客户备注
This commit is contained in:
parent
baf58613df
commit
afaa1d55f3
|
|
@ -93,6 +93,11 @@
|
||||||
|
|
||||||
<!-- 客户详细信息区域 -->
|
<!-- 客户详细信息区域 -->
|
||||||
<view class="customer-details">
|
<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">
|
<view class="detail-row">
|
||||||
<text class="detail-label">微信号:</text>
|
<text class="detail-label">微信号:</text>
|
||||||
|
|
@ -111,11 +116,7 @@
|
||||||
<text class="detail-value follow-content">{{ truncateText(customer.lastFollowRecord.content, 30) }}</text>
|
<text class="detail-value follow-content">{{ truncateText(customer.lastFollowRecord.content, 30) }}</text>
|
||||||
</view>
|
</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">
|
<view class="detail-row" v-if="customer.lastFollowTime">
|
||||||
|
|
@ -128,6 +129,12 @@
|
||||||
<text class="detail-label">下次跟进:</text>
|
<text class="detail-label">下次跟进:</text>
|
||||||
<text class="detail-value">{{ formatDateTime(customer.nextFollowTime) }}</text>
|
<text class="detail-value">{{ formatDateTime(customer.nextFollowTime) }}</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<!-- 分配用户 -->
|
||||||
|
<view class="detail-row">
|
||||||
|
<text class="detail-label">客户归属:</text>
|
||||||
|
<text class="detail-value">{{ customer.followName || '--' }}</text>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 操作按钮 -->
|
<!-- 操作按钮 -->
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user