健康档案
This commit is contained in:
parent
10fd12076b
commit
9d12708736
10
pages.json
10
pages.json
@ -347,6 +347,14 @@
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"path": "Filinginformation/Filinginformation",
|
||||
"style": {
|
||||
"navigationBarTitleText": "查看建档信息",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "Screeningdetails/Screeningdetails",
|
||||
"style": {
|
||||
@ -425,4 +433,4 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
176
pagesC/Filinginformation/Filinginformation.vue
Normal file
176
pagesC/Filinginformation/Filinginformation.vue
Normal file
@ -0,0 +1,176 @@
|
||||
<template>
|
||||
<view class="app">
|
||||
<view class="content">
|
||||
<view class="name">
|
||||
姓名
|
||||
<u-input v-model="value" :type="type" :border="border" placeholder="请输入姓名" placeholder-style="font-size: 20rpx;
|
||||
font-family: Source Han Sans CN;font-weight: 400;color: #8E8E8E;" />
|
||||
</view>
|
||||
<view class="name">
|
||||
身份证号
|
||||
<u-input v-model="value" :type="type" :border="border" placeholder="请输入身份证号" placeholder-style="font-size: 20rpx;
|
||||
font-family: Source Han Sans CN;font-weight: 400;color: #8E8E8E;" />
|
||||
</view>
|
||||
<view class="name">
|
||||
手机号码
|
||||
<u-input v-model="value" :type="type" :border="border" placeholder="请输入手机号码" placeholder-style="font-size: 20rpx;
|
||||
font-family: Source Han Sans CN;font-weight: 400;color: #8E8E8E;" />
|
||||
</view>
|
||||
<view class="name">
|
||||
现任区县
|
||||
<view class="select">
|
||||
<text>请选择现任区县</text>
|
||||
<image src="../../static/huijiantou.png" mode=""></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="name">
|
||||
乡镇
|
||||
<view class="select">
|
||||
<text>请选择乡镇</text>
|
||||
<image src="../../static/huijiantou.png" mode=""></image>
|
||||
</view>
|
||||
<!-- <u-input v-model="value" :type="type" :border="border" placeholder="请选择乡镇" placeholder-style="font-size: 20rpx;
|
||||
font-family: Source Han Sans CN;font-weight: 400;color: #8E8E8E;" /> -->
|
||||
</view>
|
||||
<view class="name">
|
||||
村/社区
|
||||
<view class="select">
|
||||
<text>请选择村/社区</text>
|
||||
<image src="../../static/huijiantou.png" mode=""></image>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="name">
|
||||
详细地址
|
||||
<u-input v-model="value" :type="type" :border="border" placeholder="请输入详细地址" placeholder-style="font-size: 20rpx;
|
||||
font-family: Source Han Sans CN;font-weight: 400;color: #8E8E8E;" />
|
||||
</view>
|
||||
<view class="cancelitem">
|
||||
<view class="cancel">
|
||||
取消
|
||||
</view>
|
||||
<view class="submit">
|
||||
提交申请
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
value: '',
|
||||
type: 'text',
|
||||
border: true
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
// goapponint() {
|
||||
// uni.navigateTo({
|
||||
// url: '/pagesC/Screeningdetails/Screeningdetails'
|
||||
// });
|
||||
// },
|
||||
// gohealth() {
|
||||
// uni.navigateTo({
|
||||
// url: '/pagesC/Filinginformation/Filinginformation'
|
||||
// });
|
||||
// },
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.app {
|
||||
height: 100vh;
|
||||
background-color: #F7F5F5;
|
||||
padding: 30rpx 0 0 0;
|
||||
|
||||
.content {
|
||||
background-color: #fff;
|
||||
position: relative;
|
||||
width: 95%;
|
||||
height: 100%;
|
||||
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||||
border-radius: 5rpx;
|
||||
margin: 15rpx auto;
|
||||
position: relative;
|
||||
.cancelitem{
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
padding-top: 60rpx;
|
||||
.cancel{
|
||||
width: 290rpx;
|
||||
height: 62rpx;
|
||||
background: #FFFFFF;
|
||||
border: 1rpx solid #26A888;
|
||||
border-radius: 5rpx;
|
||||
line-height:62rpx;
|
||||
color: #26A888;
|
||||
text-align: center;
|
||||
}
|
||||
.submit{
|
||||
width: 290rpx;
|
||||
height: 62rpx;
|
||||
background: #26A888;
|
||||
border-radius: 5rpx;
|
||||
line-height:62rpx;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.name {
|
||||
padding: 25rpx 30rpx 0 30rpx;
|
||||
font-size: 30rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
line-height: 38rpx;
|
||||
|
||||
::v-deep .u-input {
|
||||
width: 636rpx;
|
||||
height: 63rpx;
|
||||
background: #F6F6F6;
|
||||
margin: 12rpx auto;
|
||||
border: none;
|
||||
border-radius: 5rpx;
|
||||
}
|
||||
|
||||
.select {
|
||||
width: 636rpx;
|
||||
height: 63rpx;
|
||||
background: #F6F6F6;
|
||||
margin: 12rpx auto;
|
||||
// border: 1rpx solid #F6F6F6;
|
||||
border-radius: 5rpx;
|
||||
display: flex;
|
||||
position: relative;
|
||||
|
||||
text {
|
||||
padding-left: 20rpx;
|
||||
line-height: 63rpx;
|
||||
font-size: 20rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #8E8E8E;
|
||||
}
|
||||
|
||||
image {
|
||||
width: 9rpx;
|
||||
height: 17rpx;
|
||||
position: absolute;
|
||||
right: 40rpx;
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,7 +1,10 @@
|
||||
<template>
|
||||
<view class="app">
|
||||
<view class="content">
|
||||
<view class="health">
|
||||
<view class="picture">
|
||||
引导图示
|
||||
</view>
|
||||
<view class="health" @tap="gohealth">
|
||||
前往建档
|
||||
</view>
|
||||
</view>
|
||||
@ -13,13 +16,18 @@
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
|
||||
|
||||
methods: {
|
||||
goapponint() {
|
||||
uni.navigateTo({
|
||||
url: '/pagesC/Screeningdetails/Screeningdetails'
|
||||
});
|
||||
},
|
||||
gohealth() {
|
||||
uni.navigateTo({
|
||||
url: '/pagesC/Filinginformation/Filinginformation'
|
||||
});
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
@ -29,7 +37,7 @@
|
||||
height: 100vh;
|
||||
background-color: #F7F5F5;
|
||||
padding: 30rpx 0 0 0;
|
||||
|
||||
|
||||
.content {
|
||||
background-color: #fff;
|
||||
position: relative;
|
||||
@ -38,7 +46,30 @@
|
||||
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||||
border-radius: 5rpx;
|
||||
margin: 15rpx auto;
|
||||
.health{
|
||||
|
||||
.picture {
|
||||
position: absolute;
|
||||
// display: flex;
|
||||
// width: 100rpx;
|
||||
// background-color: red;
|
||||
// flex-direction: row;
|
||||
// flex-direction: column;
|
||||
// justify-content: center;
|
||||
align-items: center;
|
||||
height: 100rpx;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateY(-50%);
|
||||
transform: translateX(-50%);
|
||||
// align-items: center;
|
||||
font-size: 28rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 500;
|
||||
color: #868585;
|
||||
line-height: 38rpx;
|
||||
}
|
||||
|
||||
.health {
|
||||
margin: 0 auto;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
@ -52,5 +83,6 @@
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
}}
|
||||
</style>
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -71,6 +71,7 @@
|
||||
height: 100vh;
|
||||
background-color: #F7F5F5;
|
||||
padding: 30rpx 0 0 0;
|
||||
overflow: scroll;
|
||||
|
||||
.content {
|
||||
background-color: #fff;
|
||||
@ -137,4 +138,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user