2026-05-16 15:47:07 +08:00
|
|
|
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',
|
|
|
|
|
},
|
|
|
|
|
{
|
2026-05-21 12:00:38 +08:00
|
|
|
pagePath: 'pages/toolbox/index',
|
|
|
|
|
text: '工具',
|
|
|
|
|
iconPath: 'static/tabbar/toolbox.png',
|
|
|
|
|
selectedIconPath: 'static/tabbar/toolbox-active.png',
|
2026-05-16 15:47:07 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
pagePath: 'pages/mine',
|
|
|
|
|
text: '我的',
|
|
|
|
|
iconPath: 'static/tabbar/mine.png',
|
|
|
|
|
selectedIconPath: 'static/tabbar/mine-active.png',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
})
|