Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
43 lines
1.9 KiB
Plaintext
43 lines
1.9 KiB
Plaintext
<view class="confirm-modal" wx:if="{{ innerShow }}">
|
|
<view class="modal-mask {{ animVisible ? 'anim-visible' : '' }}" bind:tap="onTapMask"></view>
|
|
|
|
<view class="modal-content {{ animVisible ? 'anim-visible' : '' }}">
|
|
<view class="modal-header">
|
|
<view class="modal-title">当前身份证号已存在</view>
|
|
<view class="modal-sub-title">是否直接复用信息?</view>
|
|
</view>
|
|
|
|
<block wx:if="{{ userInfo }}">
|
|
<view class="modal-body">
|
|
<view class="modal-body-box">
|
|
<view class="info-row">
|
|
<view class="info-label">姓名:</view>
|
|
<view class="info-value">{{ userInfo.realname }}</view>
|
|
</view>
|
|
<view class="info-row">
|
|
<view class="info-label">身份证号:</view>
|
|
<view class="info-value">{{ userInfo.idCard }}</view>
|
|
</view>
|
|
<view class="info-row">
|
|
<view class="info-label">性别:</view>
|
|
<view class="info-value">{{ userInfo.sex_dictText }}</view>
|
|
</view>
|
|
<view class="info-row">
|
|
<view class="info-label">身高:</view>
|
|
<view class="info-value">{{ userInfo.height }}cm</view>
|
|
</view>
|
|
<view class="info-row">
|
|
<view class="info-label">体重:</view>
|
|
<view class="info-value">{{ userInfo.weight }}kg</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
|
|
<view class="modal-footer">
|
|
<view class="modal-btn modal-btn-cancel" bind:tap="onTapCancel">取消</view>
|
|
<view class="modal-btn modal-btn-confirm" bind:tap="onTapConfirm">确认</view>
|
|
</view>
|
|
</view>
|
|
</view>
|