黑龙江
This commit is contained in:
138
src/project/hljjm/AppChildrenInfo/AppChildrenInfo.vue
Normal file
138
src/project/hljjm/AppChildrenInfo/AppChildrenInfo.vue
Normal file
@@ -0,0 +1,138 @@
|
||||
<template>
|
||||
<section class="AppChildrenInfo">
|
||||
<div class="form">
|
||||
<div class="item">
|
||||
<span class="requier">*</span>
|
||||
<div class="item-content">
|
||||
<div class="label">儿童类型</div>
|
||||
<div class="value">请选择</div>
|
||||
<img src="https://cdn.sinoecare.com/i/2024/09/06/66da67b778d99.png" alt="" class="right-icon">
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span class="requier">*</span>
|
||||
<div class="item-content">
|
||||
<div class="label">儿童姓名</div>
|
||||
<div class="value">
|
||||
<u-input type="text" placeholder="请输入" placeholder-style="color:#999;font-size:14px;" height="40" v-model="value" maxlength="10"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span class="requier">*</span>
|
||||
<div class="item-content">
|
||||
<div class="label">儿童身份证号</div>
|
||||
<div class="value">
|
||||
<u-input type="text" placeholder="请输入" placeholder-style="color:#999;font-size:14px;" height="40" v-model="value" maxlength="10"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-btn">
|
||||
<div class="btn primary">扫描身份证</div>
|
||||
<div class="btn primary" @click="toList()">查询</div>
|
||||
<div class="btn">返回</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "AppChildrenInfo",
|
||||
appName: "各类儿童信息查询",
|
||||
data() {
|
||||
return {
|
||||
value: ''
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
uni.setNavigationBarColor({
|
||||
frontColor: '#ffffff',
|
||||
backgroundColor: '#2183FF'
|
||||
})
|
||||
uni.setNavigationBarTitle({
|
||||
title: '各类儿童信息查询'
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
toList() {
|
||||
uni.navigateTo({url: './AppChildrenList'})
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
uni-page-body {
|
||||
background-color: #F5F6F7;
|
||||
}
|
||||
.AppChildrenInfo {
|
||||
.form {
|
||||
background-color: #fff;
|
||||
.item {
|
||||
display: flex;
|
||||
padding-top: 16px;
|
||||
.requier {
|
||||
line-height: 44px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 32px;
|
||||
color: #F46;
|
||||
padding: 0 4px 0 12px;
|
||||
}
|
||||
.item-content {
|
||||
width: calc(100% - 32px);
|
||||
padding-bottom: 16px;
|
||||
border-bottom: 1px solid #F4F4F5;
|
||||
font-family: PingFangSC-Regular;
|
||||
position: relative;
|
||||
.label {
|
||||
line-height: 44px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 32px;
|
||||
color: #666;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.value {
|
||||
line-height: 40px;
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
}
|
||||
.right-icon {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
right: 0;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer-btn {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding: 16px 32px 52px 16px;
|
||||
box-sizing: border-box;
|
||||
background-color: #fff;
|
||||
.btn {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
height: 96px;
|
||||
line-height: 94px;
|
||||
border: 1px solid #2183FF;
|
||||
border-radius: 8px;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 32px;
|
||||
color: #2183FF;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.primary {
|
||||
background-color: #2183FF;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user