first commit

This commit is contained in:
Mrx
2026-05-16 15:47:07 +08:00
commit 03de10f800
146 changed files with 33663 additions and 0 deletions

42
pages.config.js Normal file
View File

@@ -0,0 +1,42 @@
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
export default defineUniPages({
pages: [],
globalStyle: {
backgroundColor: '@bgColor',
backgroundColorBottom: '@bgColorBottom',
backgroundColorTop: '@bgColorTop',
backgroundTextStyle: '@bgTxtStyle',
navigationBarBackgroundColor: '#000000',
navigationBarTextStyle: '@navTxtStyle',
navigationBarTitleText: 'Uni Creator',
navigationStyle: 'custom',
},
subPackages: [],
tabBar: {
color: '#7A7E83',
selectedColor: '#1768FF',
borderStyle: 'black',
backgroundColor: '#ffffff',
list: [
{
pagePath: 'pages/index',
text: '首页',
iconPath: 'static/tabbar/home.png',
selectedIconPath: 'static/tabbar/home-active.png',
},
{
pagePath: 'pages/report',
text: '报告',
iconPath: 'static/tabbar/report.png',
selectedIconPath: 'static/tabbar/report-active.png',
},
{
pagePath: 'pages/mine',
text: '我的',
iconPath: 'static/tabbar/mine.png',
selectedIconPath: 'static/tabbar/mine-active.png',
},
],
},
})