增加来访核验

This commit is contained in:
chenglijuan
2026-04-29 15:35:20 +08:00
parent 1ae4ba166a
commit f1d1c9b460
5 changed files with 98 additions and 3 deletions
+13
View File
@@ -65,5 +65,18 @@
<text class="detail-value">{{record.area}}</text>
</view>
</view>
<!-- 核销状态与操作 -->
<view class="detail-section">
<view class="detail-row">
<text class="detail-label">核销状态</text>
<text class="detail-value {{record.checkStatus === '1' ? 'text-success' : 'text-warning'}}">{{record.checkStatusText}}</text>
</view>
<view class="verify-btn-wrap" wx:if="{{record.checkStatus === '0'}}">
<view class="verify-btn {{verifying ? 'verify-btn-disabled' : ''}}" bindtap="onVerify">
{{verifying ? '核销中...' : '确认核销'}}
</view>
</view>
</view>
</view>
</view>