restore: 恢复橙色逍遥梦UI版本(2ea2860)到主分支

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
XingQue
2026-07-09 00:17:03 +08:00
parent 267de7c780
commit 566aeaa3b7
228 changed files with 22076 additions and 11864 deletions

View File

@@ -0,0 +1,14 @@
/** 旧二维码兼容guanshiduan → 打手中心管事注册,逻辑不变 */
import { parseSceneOptions } from '../../utils/base-page.js';
Page({
onLoad(options) {
const parsed = parseSceneOptions(options || {});
const inviteCode = parsed.inviteCode || options.inviteCode || '';
let url = '/pages/fighter/fighter?registerType=guanshi';
if (inviteCode) {
url += `&inviteCode=${encodeURIComponent(inviteCode)}`;
}
wx.reLaunch({ url });
},
});

View File

@@ -0,0 +1 @@
{ "navigationBarTitleText": "加载中", "usingComponents": {} }

View File

@@ -0,0 +1 @@
<view class="tip">正在进入管事注册…</view>

View File

@@ -0,0 +1 @@
.tip { display:flex; align-items:center; justify-content:center; min-height:100vh; color:#999; font-size:28rpx; }