xinelu-doctor-app/pages/Personalinfo/Personalinfo.vue
2023-10-24 16:30:28 +08:00

78 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="app">
<view class="myorder titles">
<view class="title">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{list.personName}}
</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">
身份证号{{list.cardNo}}
</view>
</view>
<view class="myorder titles">
<view class="title">
家庭住址{{list.personAddress}}
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
list: [],
}
},
onLoad(e) {
console.log(e)
if (e) {
this.list = JSON.parse(e.list)
}
},
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>