first commit
This commit is contained in:
42
pages.config.js
Normal file
42
pages.config.js
Normal 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',
|
||||
},
|
||||
],
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user