|
@@ -8,21 +8,87 @@ export default defineUniPages({
|
|
|
'^uni-(.*)': '@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue',
|
|
'^uni-(.*)': '@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue',
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
- pages: [],
|
|
|
|
|
|
|
+ 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: {
|
|
globalStyle: {
|
|
|
backgroundColor: '@bgColor',
|
|
backgroundColor: '@bgColor',
|
|
|
backgroundColorBottom: '@bgColorBottom',
|
|
backgroundColorBottom: '@bgColorBottom',
|
|
|
backgroundColorTop: '@bgColorTop',
|
|
backgroundColorTop: '@bgColorTop',
|
|
|
backgroundTextStyle: '@bgTxtStyle',
|
|
backgroundTextStyle: '@bgTxtStyle',
|
|
|
- navigationBarBackgroundColor: '#000000',
|
|
|
|
|
- navigationBarTextStyle: '@navTxtStyle',
|
|
|
|
|
|
|
+ navigationBarBackgroundColor: '#fff',
|
|
|
|
|
+ navigationBarTextStyle: 'black',
|
|
|
navigationBarTitleText: 'Vitesse-Uni',
|
|
navigationBarTitleText: 'Vitesse-Uni',
|
|
|
- navigationStyle: 'custom',
|
|
|
|
|
},
|
|
},
|
|
|
- // tabBar: {
|
|
|
|
|
- // backgroundColor: "@tabBgColor",
|
|
|
|
|
- // borderStyle: "@tabBorderStyle",
|
|
|
|
|
- // color: "@tabFontColor",
|
|
|
|
|
- // selectedColor: "@tabSelectedColor",
|
|
|
|
|
- // },
|
|
|
|
|
})
|
|
})
|