43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
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',
|
|
},
|
|
],
|
|
},
|
|
})
|