| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
- export default defineUniPages({
- easycom: {
- autoscan: true,
- custom: {
- // uni-ui 规则如下配置
- '^uni-(.*)': '@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue',
- },
- },
- pages: [
- {
- path: 'pages/feed-calculator/index',
- type: 'page',
- style: {
- navigationBarTitleText: '喂养计算器',
- },
- },
- {
- path: 'pages/feed-plan/index',
- type: 'page',
- style: {
- navigationBarTitleText: '喂养计划',
- },
- },
- {
- path: 'pages/me/index',
- type: 'page',
- style: {
- navigationBarTitleText: '我的',
- },
- },
- {
- path: 'pages/pet-manual/index',
- type: 'page',
- style: {
- navigationBarTitleText: '宠物手册',
- },
- },
- {
- path: 'pages/setting/index',
- type: 'page',
- },
- {
- path: 'pages/start-filing/index',
- type: 'page',
- style: {
- navigationBarTitleText: '开始建档',
- },
- },
- {
- path: 'pages/userInfo/index',
- type: 'page',
- },
- {
- path: 'pages/feed-calculator/components/FeedFlogan',
- type: 'page',
- },
- {
- path: 'pages/feed-calculator/components/FeedForm',
- type: 'page',
- },
- {
- path: 'pages/feed-calculator/components/FeedQuestionnaire',
- type: 'page',
- },
- {
- path: 'pages/feed-calculator/components/FeedStart',
- type: 'page',
- },
- {
- path: 'pages/feed-calculator/components/FeedStep',
- type: 'page',
- },
- {
- path: 'pages/feed-calculator/components/ProgressBar',
- type: 'page',
- },
- {
- path: 'pages/pet-manual/components/CardList',
- type: 'page',
- },
- ],
- globalStyle: {
- backgroundColor: '@bgColor',
- backgroundColorBottom: '@bgColorBottom',
- backgroundColorTop: '@bgColorTop',
- backgroundTextStyle: '@bgTxtStyle',
- navigationBarBackgroundColor: '#fff',
- navigationBarTextStyle: 'black',
- navigationBarTitleText: 'Vitesse-Uni',
- },
- })
|