add tab bar

yhy
FrozenArcher 2024-03-03 19:25:29 +08:00
parent 14b302bd1a
commit d15067f2fe
12 changed files with 89 additions and 42 deletions

View File

@ -2,7 +2,7 @@
"miniprogramRoot": "dist/", "miniprogramRoot": "dist/",
"projectname": "EVA-Notify", "projectname": "EVA-Notify",
"description": "A Wechat miniprogram project of EVA platform", "description": "A Wechat miniprogram project of EVA platform",
"appid": "wx636eb7cf2b84f305", "appid": "wxa76ef89a218f32f8",
"setting": { "setting": {
"urlCheck": true, "urlCheck": true,
"es6": false, "es6": false,

View File

@ -1,11 +1,29 @@
export default defineAppConfig({ export default defineAppConfig({
pages: [ pages: [
'pages/index/index' 'pages/index/index',
'pages/repair/repair',
'pages/user/user',
], ],
window: { window: {
backgroundTextStyle: 'light', backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff', navigationBarBackgroundColor: '#fff',
navigationBarTitleText: 'WeChat', navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'black' navigationBarTextStyle: 'black'
},
tabBar: {
list: [
{
pagePath: 'pages/index/index',
text: '主页'
},
{
pagePath: 'pages/repair/repair',
text: '维修'
},
{
pagePath: 'pages/user/user',
text: '我的'
}
]
} }
}) })

View File

@ -1,6 +1,6 @@
import { PropsWithChildren } from 'react' import { PropsWithChildren } from 'react'
import { useLaunch } from '@tarojs/taro' import { useLaunch } from '@tarojs/taro'
import 'taro-ui/dist/style/index.scss' //import 'taro-ui/dist/style/index.scss'
import './app.scss' import './app.scss'
function App({ children }: PropsWithChildren<any>) { function App({ children }: PropsWithChildren<any>) {

View File

@ -1,3 +1,4 @@
export default definePageConfig({ export default definePageConfig({
navigationBarTitleText: '首页' navigationBarTitleText: '首页',
usingComponents: {}
}) })

View File

@ -14,9 +14,7 @@ class Index extends Component {
render(): ReactNode { render(): ReactNode {
return ( return (
<View> <View>
<Text> <Text>{this.state.msg}</Text>
{this.state.msg}
</Text>
</View> </View>
) )
} }

View File

@ -0,0 +1,3 @@
export default definePageConfig({
usingComponents: {},
})

View File

View File

@ -0,0 +1,12 @@
import { View, Text } from "@tarojs/components";
import { Component, ReactNode } from "react";
export default class RepairPage extends Component {
render(): ReactNode {
return (
<View>
<Text>Repair Page</Text>
</View>
)
}
}

View File

@ -0,0 +1,3 @@
export default definePageConfig({
usingComponents: {},
})

View File

View File

@ -0,0 +1,12 @@
import { View, Text } from "@tarojs/components";
import { Component, ReactNode } from "react";
export default class UserPage extends Component {
render(): ReactNode {
return (
<View>
<Text>User Page</Text>
</View>
)
}
}