xinelu-applet-ui/pagesC/Filinginformation/Filinginformation.vue
2023-10-09 10:40:10 +08:00

193 lines
3.8 KiB
Vue

<template>
<view class="app">
<view class="content">
<view class="name">
姓名
<u-input v-model="value" :type="type" :border="border" placeholder="请输入姓名" />
</view>
<view class="name">
身份证号
<u-input v-model="value" :type="type" :border="border" placeholder="请输入身份证号" />
</view>
<view class="name">
手机号码
<u-input v-model="value" :type="type" :border="border" placeholder="请输入手机号码" />
</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>
</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="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;
::v-deep .u-input {
width: 636rpx;
height: 63rpx;
background: #F6F6F6;
margin: 12rpx auto;
border: none;
border-radius: 5rpx;
}
::v-deep .u-input__input.data-v-fdbb9fe6 {
font-size: 26rpx !important;
}
::v-deep.input-placeholder {
color: #8E8E8E !important;
font-size: 20rpx;
}
.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>