refactor: 项目重构,仅保留 login 和 supplementPersonal 页面

删除 11 个旧页面、组件、lefu SDK、旧资源文件。
新增 request 封装(GET/POST/PUT)、api 层、utils/common 身份证工具。
重写 login(登录流程提取到 app.ts) 和 supplementPersonal(简化表单逻辑)。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
17792275749
2026-08-10 14:21:00 +08:00
co-authored by Claude Sonnet 4.6
parent 439f560218
commit 83d909b95b
96 changed files with 370 additions and 9040 deletions
@@ -1,45 +0,0 @@
<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>