个人信息

This commit is contained in:
shidongli 2023-10-23 16:34:26 +08:00
parent 3082c4554b
commit 917ba55703
4 changed files with 114 additions and 24 deletions

View File

@ -3,6 +3,23 @@
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
}, },
"pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages "pages": [ //pageshttps://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", "path": "pages/myinformation/myinformation",
"style": { "style": {
@ -20,33 +37,27 @@
"enablePullDownRefresh": false, "enablePullDownRefresh": false,
"navigationBarTitleText": "工单" "navigationBarTitleText": "工单"
} }
}, { }
"path": "pages/index/index",
"style": {
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
// { // {
// "path": "pages/login/login", // "path": "pages/index/index",
// "style": { // "style": {
// "navigationBarTitleText": "",
// "enablePullDownRefresh": false, // "enablePullDownRefresh": false,
// "navigationStyle": "custom" // "navigationStyle": "custom"
// } // }
// }, // }
{
"path": "pages/myinformation/myinformation",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#4ac4ab"
// "navigationStyle": "custom"
}
} ,{
], "path" : "pages/Personalinfo/Personalinfo",
"style" :
{
"navigationBarTitleText": "个人信息",
"enablePullDownRefresh": false
}
}
],
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "white", "navigationBarTextStyle": "white",
"navigationBarTitleText": "", "navigationBarTitleText": "",

View File

@ -0,0 +1,72 @@
<template>
<view class="app">
<view class="myorder titles">
<view class="title">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;99999
</view>
</view>
<view class="myorder titles">
<view class="title">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;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>

View File

@ -15,8 +15,6 @@
<view class="name"> <view class="name">
<u-form :model="form" ref="uForm" label-width="110"> <u-form :model="form" ref="uForm" label-width="110">
<u-form-item label="用户名:"><u-input placeholder="请输入用户名" /></u-form-item> <u-form-item label="用户名:"><u-input placeholder="请输入用户名" /></u-form-item>
</u-form>
<u-form :model="form" ref="uForm">
<u-form-item label="密码:"> <u-form-item label="密码:">
<u-input placeholder="请输入密码" :password-icon="true" type="password"/> <u-input placeholder="请输入密码" :password-icon="true" type="password"/>
<!-- <span class="pwd">忘记密码</span> --> <!-- <span class="pwd">忘记密码</span> -->

View File

@ -70,7 +70,7 @@
</view> </view>
<image src="../../static/time.png" mode="" class="fist"></image> <image src="../../static/time.png" mode="" class="fist"></image>
<image src="../../static/see.png" mode="" class="two"></image> <image src="../../static/see.png" mode="" class="two"></image>
<view class="myorder titles"> <view class="myorder titles" @tap="personlinfo">
<view class="title"> <view class="title">
个人信息 个人信息
</view> </view>
@ -113,6 +113,15 @@
}, },
methods: { methods: {
//
personlinfo(){
uni.navigateTo({
url:'/pages/Personalinfo/Personalinfo'
})
},
} }
} }