2024-11-24 15:21:01 +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: '全能查',
|
|
|
|
navigationStyle: 'custom',
|
|
|
|
},
|
|
|
|
|
|
|
|
tabBar: {
|
|
|
|
backgroundColor: '@tabBgColor',
|
|
|
|
borderStyle: '@tabBorderStyle',
|
|
|
|
color: '@tabFontColor',
|
|
|
|
selectedColor: '@tabSelectedColor',
|
|
|
|
list: [
|
|
|
|
{
|
|
|
|
pagePath: 'pages/index',
|
|
|
|
text: '',
|
|
|
|
visible: false,
|
|
|
|
},
|
2025-03-14 03:40:55 +08:00
|
|
|
{
|
|
|
|
pagePath: 'pages/agent',
|
|
|
|
text: '',
|
|
|
|
visible: false,
|
|
|
|
},
|
2024-11-24 15:21:01 +08:00
|
|
|
{
|
|
|
|
pagePath: 'pages/ai',
|
|
|
|
text: '',
|
|
|
|
visible: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pagePath: 'pages/me',
|
|
|
|
text: '',
|
|
|
|
visible: false,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
})
|