chore: v1 整理 — 清理历史文件、DDL 合并、文档归档

- 清理 1155 个已删除的历史文件(废弃 prompt_logs、tmp、旧 ops 脚本)
- export/ 数据文件从 git 移除(已在 .gitignore)
- demo-miniprogram 从 tmp/ 移入 apps/,添加 CLAUDE.md 注解
- DDL 合并:完整 schema 定义填充到 db/*/schemas/(从 docs/database/ddl/ 复制)
- 39 个 v1 迁移脚本归档到 db/_archived/migrations_v1_merged/
- 4 个迁移变更类 BD_Manual 文档归档到 docs/database/_archived/
- .gitignore 补充 .vite/ 和 apps/*.zip
- settings.json 添加 effortLevel 默认配置
- scripts/ops/ 新增运维脚本入库

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Neo
2026-04-06 00:39:27 +08:00
parent 6f8f12314f
commit 779b2f6d52
1340 changed files with 9124 additions and 132087 deletions

View File

@@ -0,0 +1,77 @@
<!--pages/login/login.wxml — 忠于 H5 原型,使用 TDesign 组件 -->
<view class="page" style="padding-top: {{statusBarHeight}}px;">
<!-- 动态背景层 -->
<image class="login-bg-layer" src="/assets/images/login-bg-animated.svg" mode="scaleToFill" />
<!-- 装饰元素:模拟 blur 圆形 -->
<view class="deco-circle deco-circle--1"></view>
<view class="deco-circle deco-circle--2"></view>
<view class="deco-circle deco-circle--3"></view>
<!-- 顶部区域 - Logo 和名称 -->
<view class="hero">
<!-- Logo浮动动画 -->
<view class="logo-wrap float-animation">
<view class="logo-box">
<image class="logo-icon" src="/assets/icons/logo-billiard.svg" mode="aspectFit" />
</view>
<!-- 装饰点 -->
<view class="logo-dot logo-dot--tr"></view>
<view class="logo-dot logo-dot--bl"></view>
</view>
<!-- 应用名称 -->
<text class="app-name">球房运营助手</text>
<text class="app-desc">为台球厅提升运营效率的内部管理工具</text>
<!-- 功能亮点 -->
<view class="features">
<view class="feature-item">
<view class="feature-icon-svg feature-icon-svg--task">
<image class="feature-svg-img" src="/assets/icons/feature-task.svg" mode="aspectFit" />
</view>
<text class="feature-text">任务管理</text>
</view>
<view class="feature-item">
<view class="feature-icon-svg feature-icon-svg--board">
<image class="feature-svg-img" src="/assets/icons/feature-board.svg" mode="aspectFit" />
</view>
<text class="feature-text">数据看板</text>
</view>
<view class="feature-item">
<view class="feature-icon-svg feature-icon-svg--ai">
<image class="feature-svg-img" src="/assets/icons/feature-ai.svg" mode="aspectFit" />
</view>
<text class="feature-text">智能助手</text>
</view>
</view>
</view>
<!-- 底部区域 - 登录按钮和协议 -->
<view class="bottom-area">
<!-- 微信登录按钮 -->
<view class="login-btn-wrap {{(!agreed || loading) ? 'login-btn--disabled' : 'login-btn--active'}}" bindtap="onLogin">
<image wx:if="{{!loading}}" class="wechat-icon" src="/assets/icons/icon-wechat.svg" mode="aspectFit" />
<t-loading wx:if="{{loading}}" theme="circular" size="32rpx" color="#fff" />
<text class="login-btn-text">使用微信登录</text>
</view>
<!-- 协议勾选 -->
<view class="agreement" bindtap="onAgreeChange">
<view class="checkbox {{agreed ? 'checkbox--checked' : ''}}">
<t-icon wx:if="{{agreed}}" name="check" size="18rpx" color="#fff" />
</view>
<view class="agreement-text-wrap">
<text class="agreement-text">我已阅读并同意</text>
<text class="link">《用户协议》</text>
<text class="agreement-text">和</text>
<text class="link">《隐私政策》</text>
</view>
</view>
<!-- 底部说明 -->
<text class="footer-tip">仅限球房内部员工使用</text>
</view>
</view>
<dev-fab />