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/",
"projectname": "EVA-Notify",
"description": "A Wechat miniprogram project of EVA platform",
"appid": "wx636eb7cf2b84f305",
"appid": "wxa76ef89a218f32f8",
"setting": {
"urlCheck": true,
"es6": false,

View File

@ -1,11 +1,29 @@
export default defineAppConfig({
pages: [
'pages/index/index'
'pages/index/index',
'pages/repair/repair',
'pages/user/user',
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff',
navigationBarTitleText: 'WeChat',
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 { useLaunch } from '@tarojs/taro'
import 'taro-ui/dist/style/index.scss'
//import 'taro-ui/dist/style/index.scss'
import './app.scss'
function App({ children }: PropsWithChildren<any>) {

View File

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

View File

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