mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
refactor: 重构用户信息存储和主题管理逻辑 fix: 修正登录类型字段缺失问题 style: 统一页面导航栏样式和布局 docs: 更新README和文档内容 chore: 清理无用代码和资源文件 perf: 优化网络请求和错误处理逻辑 test: 更新API测试用例 build: 更新依赖版本和构建配置 ci: 调整CI/CD脚本配置
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
// pages.config.ts
|
|
import { defineUniPages } from "@uni-helper/vite-plugin-uni-pages";
|
|
|
|
export default defineUniPages({
|
|
// 你也可以定义 pages 字段,它具有最高的优先级。
|
|
pages: [],
|
|
globalStyle: {
|
|
// 导航栏配置
|
|
navigationBarBackgroundColor: "@navBgColor",
|
|
navigationBarTextStyle: "@navTxtStyle",
|
|
navigationBarTitleText: "FastApp",
|
|
|
|
// 页面背景配置
|
|
backgroundColor: "@bgColor",
|
|
backgroundTextStyle: "@bgTxtStyle",
|
|
backgroundColorTop: "@bgColorTop",
|
|
backgroundColorBottom: "@bgColorBottom",
|
|
|
|
// 下拉刷新配置
|
|
enablePullDownRefresh: false,
|
|
onReachBottomDistance: 50,
|
|
|
|
// 动画配置
|
|
animationType: "pop-in",
|
|
animationDuration: 300,
|
|
},
|
|
|
|
tabBar: {
|
|
custom: true,
|
|
// #ifdef MP-ALIPAY
|
|
customize: true,
|
|
// 暂时不生效。4.71.2025061206-alpha已修复:https://uniapp.dcloud.net.cn/release-note-alpha.html#_4-71-2025061206-alpha,我们等正式版发布后更新。
|
|
overlay: true,
|
|
// #endif
|
|
height: "0",
|
|
color: "@tabColor",
|
|
selectedColor: "@tabSelectedColor",
|
|
backgroundColor: "@tabBgColor",
|
|
borderStyle: "@tabBorderStyle",
|
|
list: [
|
|
{
|
|
pagePath: "pages/index/index",
|
|
},
|
|
{
|
|
pagePath: "pages/work/index",
|
|
},
|
|
{
|
|
pagePath: "pages/mine/index",
|
|
},
|
|
],
|
|
},
|
|
});
|