feat: 我的、设置、打印指南页面开发完成

This commit is contained in:
R524809
2026-05-07 16:32:49 +08:00
parent 0737c6165e
commit c732111e12
43 changed files with 1702 additions and 837 deletions
+8 -3
View File
@@ -12,6 +12,7 @@ App<IAppOption>({
globalData: {
env: 'release',
uuid: '',
user: null,
printConfig: defaultPrintConfig,
pageConfig: undefined,
pageConfigReady: false,
@@ -41,9 +42,13 @@ App<IAppOption>({
}
// 静默登录(不阻塞页面渲染)
getUser().catch((err) => {
console.error('静默登录失败', err);
});
getUser()
.then((user) => {
this.globalData.user = user;
})
.catch((err) => {
console.error('静默登录失败', err);
});
void this.loadPageConfig();
},