recycapp/pages/mine/apply.vue

238 lines
5.0 KiB
Vue
Raw Normal View History

2025-10-25 10:29:50 +08:00
<template>
<view class="content">
<view class="moduleWrap">
2025-10-25 19:46:23 +08:00
<view class="moduleBox" style="padding-bottom: 40rpx;">
2025-10-25 10:29:50 +08:00
<view class="monthBox">
2025-10-25 10:55:02 +08:00
<view class="text1">身份证信息</view>
<text class="text2">上传本人身份证照片保持图片清晰完整</text>
2025-10-25 10:29:50 +08:00
</view>
2025-10-25 10:55:02 +08:00
<view class="flex-between" style="margin-top: 20rpx;">
<view>
<u-upload
:fileList="fileList1"
@afterRead="afterRead"
@delete="deletePic"
name="1"
multiple
:maxCount="10"
>
<image
:src="path+'/assets/img/icon/IDbgz.png'"
mode="widthFix"
style="width: 300rpx;height: 190rpx;"
></image>
</u-upload>
2025-10-25 10:29:50 +08:00
</view>
2025-10-25 10:55:02 +08:00
<view>
<u-upload
:fileList="fileList1"
@afterRead="afterRead"
@delete="deletePic"
name="1"
multiple
:maxCount="10"
>
<image
:src="path+'/assets/img/icon/IDbgz.png'"
mode="widthFix"
style="width: 300rpx;height: 190rpx;"
></image>
</u-upload>
2025-10-25 10:29:50 +08:00
</view>
</view>
</view>
</view>
2025-10-25 19:46:23 +08:00
<view class="moduleWrap">
<view class="moduleBox">
<view class="text4">真实姓名</view>
<view class="inputBox">
<input class="input1" type="text" placeholder="输入和身份证姓名一致" />
2025-10-25 10:29:50 +08:00
</view>
2025-10-25 19:46:23 +08:00
</view>
<view class="moduleBox">
<view class="text4">身份证号</view>
<view class="inputBox">
<input class="input1" type="text" placeholder="输入18位身份证号" />
2025-10-25 10:29:50 +08:00
</view>
</view>
2025-10-25 19:46:23 +08:00
<view class="moduleBox">
<view class="text4">有效日期</view>
<view class="inputBox inputTwoBox">
<input class="input1" type="text" placeholder="开始日期" />
<text class="centerIcon"></text>
<input class="input2" type="text" placeholder="开始日期" />
</view>
</view>
<view class="moduleBox">
<view class="text4">证件地址</view>
<view class="inputBox">
<input class="input1" type="text" placeholder="与身份证住址保持一致" />
</view>
</view>
<view class="moduleBox">
<view class="text4">联系电话</view>
<view class="inputBox">
<input class="input1" type="text" placeholder="输入您的联系方式" />
</view>
</view>
<view class="moduleBox" style="padding-bottom: 60rpx;">
<view class="text4">代理区域</view>
<view class="inputBox inputTwoBox2">
<input class="input1" type="text" placeholder="请选择省份" />
<text class="centerIcon">-</text>
<input class="input2" type="text" placeholder="请选择城市" />
</view>
</view>
</view>
<view class="tipBox">
Tips我们会在3个工作日内审核并与您联系请注意接听电话
</view>
<view style="height: 130rpx;"></view>
<view class="btnBox">
<view class="btnEle flex-center">
提交申请
</view>
2025-10-25 10:29:50 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
components:{
},
onLoad() {
},
onShow() {
},
methods: {
}
}
</script>
<style lang="scss">
page{
height: 100%;
}
.content{
padding: 20rpx 35rpx;
background: #F5F5FA;
height: 100%;
2025-10-25 19:46:23 +08:00
overflow: auto;
2025-10-25 10:29:50 +08:00
}
.monthBox{
display: flex;
2025-10-25 10:55:02 +08:00
flex-direction: column;
2025-10-25 10:29:50 +08:00
.text1{
2025-10-25 10:55:02 +08:00
font-weight: bold;
font-size: 32rpx;
2025-10-25 10:29:50 +08:00
color: #333333;
}
.text2{
2025-10-25 10:55:02 +08:00
font-weight: 400;
font-size: 24rpx;
color: #999999;
margin-top: 10rpx;
2025-10-25 10:29:50 +08:00
}
}
.moduleBox{
background: #fff;
2025-10-25 19:46:23 +08:00
padding: 34rpx 30rpx 28rpx;
// border-bottom: 1rpx solid #DEDEDE;
2025-10-25 10:29:50 +08:00
.text4{
2025-10-25 19:46:23 +08:00
font-weight: bold;
font-size: 28rpx;
color: #333333;
2025-10-25 10:29:50 +08:00
}
2025-10-25 19:46:23 +08:00
.input1{
margin-top: 40rpx;
font-size: 28rpx;
2025-10-25 10:29:50 +08:00
}
2025-10-25 19:46:23 +08:00
.input2{
margin-top: 40rpx;
font-size: 28rpx;
text-align: right;
}
.centerIcon{
font-weight: 400;
font-size: 28rpx;
color: #333333;
}
.inputBox{
border-bottom: 1rpx solid #DEDEDE;
padding-bottom: 22rpx;
2025-10-25 10:29:50 +08:00
}
}
.moduleBox:last-child{
border-bottom: none;
}
.moduleWrap{
margin-bottom: 20rpx;
border-radius: 30rpx;
2025-10-25 10:55:02 +08:00
overflow: hidden;
2025-10-25 10:29:50 +08:00
}
2025-10-25 19:46:23 +08:00
.inputTwoBox{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
2025-10-25 10:29:50 +08:00
}
2025-10-25 19:46:23 +08:00
.inputTwoBox2{
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-end;
.input1{
margin-top: 40rpx;
font-size: 28rpx;
width: 200rpx;
2025-10-25 10:29:50 +08:00
}
2025-10-25 19:46:23 +08:00
.input2{
margin-top: 40rpx;
font-size: 28rpx;
width: 200rpx;
2025-10-25 10:29:50 +08:00
}
}
2025-10-25 19:46:23 +08:00
.tipBox{
width: 680rpx;
height: 110rpx;
background: #FFF4ED;
border-radius: 20rpx;
2025-10-25 10:29:50 +08:00
font-weight: 400;
2025-10-25 19:46:23 +08:00
font-size: 28rpx;
color: #FF9348;
line-height: 36rpx;
padding: 0 30rpx;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
2025-10-25 10:29:50 +08:00
}
2025-10-25 19:46:23 +08:00
.btnBox{
padding: 10rpx 35rpx;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: #fff;
.btnEle{
width: 100%;
height: 90rpx;
background: linear-gradient(90deg, #FFAD38 0%, #FF884E 100%);
border-radius: 10rpx;
font-weight: 500;
font-size: 30rpx;
color: #FFFFFF;
line-height: 36rpx;
}
2025-10-25 10:29:50 +08:00
}
</style>