Files
bodyWeight/miniprogram/components/userInfoConfirmModal/userInfoConfirmModal.wxml
T

46 lines
1.5 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>
<!-- 用户信息展示 -->
<view class="modal-body" wx:if="{{ userInfo }}">
<view class="modal-body-box">
<view class="info-row">
<text class="info-label">姓名:</text>
<text class="info-value">{{ userInfo.realname }}</text>
</view>
<view class="info-row">
<text class="info-label">身份证号:</text>
<text class="info-value">{{ userInfo.idCard }}</text>
</view>
<view class="info-row">
<text class="info-label">性别:</text>
<text class="info-value">{{ userInfo.sex_dictText }}</text>
</view>
<view class="info-row">
<text class="info-label">身高:</text>
<text class="info-value">{{ userInfo.height }}cm</text>
</view>
<view class="info-row">
<text class="info-label">体重:</text>
<text class="info-value">{{ userInfo.weight }}kg</text>
</view>
</view>
</view>
<!-- 按钮区域 -->
<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>