You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.8 KiB

<!--pages/dataScreeningDetails/dataScreeningDetails.wxml-->
<view class="content">
<view class="content-title">请上传您的居民身份证照片</view>
<view class="content-img">
<van-uploader file-list="{{ photo.idCardFrontFileList }}" bind:after-read="afteruploadPhotoReadPositive" bind:delete="deleteImg" data-type="0" preview-size="100" preview-image preview-full-image max-count="1">
<image src="../../img/id-card-1.png" class="content-img-idCard" />
</van-uploader>
<van-uploader file-list="{{ photo.idCardBackFileList }}" bind:after-read="afteruploadPhotoRead" bind:delete="deleteImg" data-type="1" preview-size="100" preview-image preview-full-image max-count="1">
<image src="../../img/id-card-0.png" class="content-img-idCard" />
</van-uploader>
</view>
<view class="content-list-box">
<view class="content-list">
<text style="color: red;">*</text>
业主姓名
<input type="text" class="content-input" placeholder="请输入业主姓名" model:value="{{name}}" />
</view>
<view class="content-line"></view>
<view class="content-list">
<text style="color: red;">*</text>
联系电话
<input type="text" class="content-input" placeholder="请输入联系电话" model:value="{{phone}}" />
</view>
<view class="content-line"></view>
<view class="content-list">
<text style="color: red;">*</text>
身份证号码
<input type="text" class="content-input" placeholder="请输入身份证号码" model:value="{{idnum}}" />
</view>
<!-- <view class="content-line"></view>
<view class="content-list">
<text style="color: red;">*</text>
证件有效期
<input type="text" class="content-input" placeholder="请输入证件有效期" model:value="{{id}}" />
</view> -->
<view class="content-line"></view>
<view class="content-list">
<view class="content-address">
<picker mode="region" bindchange="bindRegionChange">
<view class="content-picker">
<text style="color: red;">*</text>安装地址
<view style="flex: 1; margin-left: 20rpx;" wx:if="{{region[0]&&region[1]&&region[2]}}">
{{region[0]}}{{region[1]}}{{region[2]}}
</view>
<view style="flex: 1; margin-left: 20rpx;color: gray;" wx:else>
请选择地址
</view>
<image src="../../img/arrow.png" class="content-img-right" />
</view>
</picker>
<input type="text" style="margin-left: 145rpx; margin-top:15rpx;" class="content-input" placeholder="请输入安装地址" model:value="{{address}}" />
</view>
</view>
</view>
</view>
<view class="from-submit-buttom">
<view class="from-submit-buttom-confirm" bindtap="submitFrom">提交登记</view>
</view>