xinelu-doctor-app/pages/Personalinfo/Personalinfo.vue

78 lines
1.3 KiB
Vue
Raw Normal View History

2023-10-23 16:34:26 +08:00
<template>
<view class="app">
<view class="myorder titles">
<view class="title">
2023-10-24 16:30:28 +08:00
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{list.personName}}
2023-10-23 16:34:26 +08:00
</view>
</view>
<view class="myorder titles">
<view class="title">
2023-10-24 16:40:21 +08:00
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{list.sex}}
2023-10-23 16:34:26 +08:00
</view>
</view>
<view class="myorder titles">
<view class="title">
2023-10-24 16:30:28 +08:00
身份证号{{list.cardNo}}
2023-10-23 16:34:26 +08:00
</view>
</view>
<view class="myorder titles">
<view class="title">
2023-10-24 16:30:28 +08:00
家庭住址{{list.personAddress}}
2023-10-23 16:34:26 +08:00
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
2023-10-24 16:30:28 +08:00
list: [],
}
},
onLoad(e) {
if (e) {
this.list = JSON.parse(e.list)
2023-10-23 16:34:26 +08:00
}
},
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%;
}
}
}
2023-10-24 16:40:21 +08:00
</style>