更新首页逻辑以支持动态标题生成,优化用户体验。调整管理后台资源文件,替换旧的 JavaScript 和 CSS 文件,提升页面性能和样式一致性。同时,更新数据库结构以支持更细粒度的推送状态。

This commit is contained in:
Alex-larget
2026-03-26 20:26:35 +08:00
parent af05740d6f
commit 7bf301a9c8
34 changed files with 1994 additions and 1774 deletions

View File

@@ -127,6 +127,21 @@ Page({
goBack() { getApp().goBackOrToHome() },
/** 分步向导时:齿轮 → 一页完整编辑(与「派对会员」资料同路径) */
onOpenFullEdit() {
if (!this.data.wizardMode) return
wx.showModal({
title: '切换到完整编辑',
content: '将在一页中展示全部资料项,便于一次性填写。当前分步进度不会丢失,可随时返回。',
confirmText: '进入完整编辑',
cancelText: '取消',
success: (r) => {
if (!r.confirm) return
wx.redirectTo({ url: '/pages/profile-edit/profile-edit?full=1&wizard=0' })
},
})
},
/**
* 是否走三步向导:资料未「手机号+昵称」齐全且未标记完成,且非 full=1、非 VIP 开通页强制单页。
* 老用户已齐全则自动写 DONE避免重复向导。