最后跟进和下次跟进

This commit is contained in:
WindowBird 2025-11-11 14:23:59 +08:00
parent 6838928533
commit a96d4c8f10

View File

@ -116,6 +116,18 @@
<text class="detail-label">客户归属</text>
<text class="detail-value">{{ customer.followName || '--' }}</text>
</view>
<!-- 最后跟进时间 -->
<view class="detail-row" v-if="customer.lastFollowTime">
<text class="detail-label">最后跟进</text>
<text class="detail-value">{{ formatDateTime(customer.lastFollowTime) }}</text>
</view>
<!-- 下次跟进时间 -->
<view class="detail-row" v-if="customer.nextFollowTime">
<text class="detail-label">下次跟进</text>
<text class="detail-value">{{ formatDateTime(customer.nextFollowTime) }}</text>
</view>
</view>
<!-- 操作按钮 -->