xinelu-doctor-app/pages/myinformation/myinformation.vue
2023-10-23 09:30:36 +08:00

45 lines
588 B
Vue

<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>