This commit is contained in:
闫晓茹 2023-10-23 09:30:36 +08:00
parent 91c617fe77
commit 5a3f9eff36
4 changed files with 112 additions and 4 deletions

View File

@ -1,17 +1,55 @@
{
"pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"path": "pages/homepage/homepage",
"style": {
"navigationBarTitleText": "uni-app"
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}, {
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}, {
"path": "pages/myinformation/myinformation",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#4ac4ab"
// "navigationStyle": "custom"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {}
"uniIdRouter": {},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#435950",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/homepage/homepage",
"iconPath": "static/homepage.png",
"selectedIconPath": "static/homepage.png",
"text": "首页"
},
{
"pagePath": "pages/myinformation/myinformation",
"iconPath": "static/myinformation.png",
"selectedIconPath": "static/myinformations.png",
"text": "我的"
}
]
}
}

View File

@ -0,0 +1,25 @@
<template>
<view class="app">
<view class="content">
111
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss">
</style>

View File

@ -0,0 +1,45 @@
<template>
<view class="app">
<view class="content">
个人信息
<view class="title">
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
form:{
name:''
}
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss">
.app {
background-color: #fff;
height: 100vh;
.content{
// width: 111px;
// height: 27px;
font-size: 28rpx;
font-family: SourceHanSansSC-Medium, SourceHanSansSC;
font-weight: 500;
color: #333333;
line-height: 38rpx;
padding-left: 20rpx;
}
}
</style>

BIN
static/homepage.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB