个人信息
This commit is contained in:
parent
3082c4554b
commit
917ba55703
53
pages.json
53
pages.json
@ -3,6 +3,23 @@
|
||||
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
|
||||
},
|
||||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||||
{
|
||||
"path": "pages/login/login",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/myinformation/myinformation",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"path": "pages/myinformation/myinformation",
|
||||
"style": {
|
||||
@ -20,33 +37,27 @@
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationBarTitleText": "工单"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/index/index",
|
||||
"style": {
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
|
||||
}
|
||||
// {
|
||||
// "path": "pages/login/login",
|
||||
// "path": "pages/index/index",
|
||||
// "style": {
|
||||
// "navigationBarTitleText": "",
|
||||
// "enablePullDownRefresh": false,
|
||||
// "navigationStyle": "custom"
|
||||
// }
|
||||
// },
|
||||
{
|
||||
"path": "pages/myinformation/myinformation",
|
||||
"style": {
|
||||
"navigationBarTitleText": "我的",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationBarBackgroundColor": "#4ac4ab"
|
||||
// }
|
||||
|
||||
// "navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
||||
|
||||
,{
|
||||
"path" : "pages/Personalinfo/Personalinfo",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText": "个人信息",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
"navigationBarTextStyle": "white",
|
||||
"navigationBarTitleText": "",
|
||||
|
||||
72
pages/Personalinfo/Personalinfo.vue
Normal file
72
pages/Personalinfo/Personalinfo.vue
Normal file
@ -0,0 +1,72 @@
|
||||
<template>
|
||||
<view class="app">
|
||||
<view class="myorder titles">
|
||||
<view class="title">
|
||||
姓 名:99999
|
||||
</view>
|
||||
</view>
|
||||
<view class="myorder titles">
|
||||
<view class="title">
|
||||
性 别:99999
|
||||
</view>
|
||||
</view>
|
||||
<view class="myorder titles">
|
||||
<view class="title">
|
||||
身份证号:372926199812158850
|
||||
</view>
|
||||
</view>
|
||||
<view class="myorder titles">
|
||||
<view class="title">
|
||||
家庭住址:山东省济南市
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.app {
|
||||
background-color: #fff;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
|
||||
.myorder {
|
||||
position: relative;
|
||||
|
||||
.orderStatus {
|
||||
text-align: center;
|
||||
margin: 60rpx auto 30rpx;
|
||||
width: 90%;
|
||||
background: red;
|
||||
// display: flex;
|
||||
// justify-content: space-around;
|
||||
padding-bottom: 30rpx;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 28rpx;
|
||||
font-family: SourceHanSansSC-Medium, SourceHanSansSC;
|
||||
font-weight: 500;
|
||||
color: #333333;
|
||||
margin-left: 30rpx;
|
||||
height: 110rpx;
|
||||
line-height: 110rpx;
|
||||
border-bottom: 1rpx solid #E6E6E6;
|
||||
width: 93%;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
@ -15,8 +15,6 @@
|
||||
<view class="name">
|
||||
<u-form :model="form" ref="uForm" label-width="110">
|
||||
<u-form-item label="用户名:"><u-input placeholder="请输入用户名" /></u-form-item>
|
||||
</u-form>
|
||||
<u-form :model="form" ref="uForm">
|
||||
<u-form-item label="密码:">
|
||||
<u-input placeholder="请输入密码" :password-icon="true" type="password"/>
|
||||
<!-- <span class="pwd">忘记密码</span> -->
|
||||
|
||||
@ -70,7 +70,7 @@
|
||||
</view>
|
||||
<image src="../../static/time.png" mode="" class="fist"></image>
|
||||
<image src="../../static/see.png" mode="" class="two"></image>
|
||||
<view class="myorder titles">
|
||||
<view class="myorder titles" @tap="personlinfo">
|
||||
<view class="title">
|
||||
个人信息
|
||||
</view>
|
||||
@ -113,6 +113,15 @@
|
||||
|
||||
},
|
||||
methods: {
|
||||
// 个人信息
|
||||
personlinfo(){
|
||||
uni.navigateTo({
|
||||
url:'/pages/Personalinfo/Personalinfo'
|
||||
})
|
||||
|
||||
},
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user