95 lines
5.1 KiB
Plaintext
95 lines
5.1 KiB
Plaintext
<!-- 头部 -->
|
|
<nav-bar isBack="{{isBack}}" pageTitle="{{pageTitle}}" system="{{system}}"></nav-bar>
|
|
<!-- view/logistics/appLogistics/appLogistics.wxml -->
|
|
<view class="appLogistics">
|
|
<view class="applog-bac">
|
|
<image class="applog-bac-img" mode="widthFix" src="http://cdn.yishaxiyi.com/afe349ecd5a329573547637704c703f1.png" />
|
|
</view>
|
|
<form bindsubmit="submit">
|
|
<view class="list_text pd30 mt20">
|
|
<view class="text_row">
|
|
<view class="text_row1 flex-con2">姓名</view>
|
|
<view class="text_row2 flex-con2">
|
|
<input placeholder-style="color:#cccccc;" maxlength="16" name="name" type="text" value="" placeholder="请输入您的真实姓名" />
|
|
</view>
|
|
<view class="text_row3 flex-con3"></view>
|
|
</view>
|
|
<view class="text_row">
|
|
<view class="text_row1 flex-con2">身份证</view>
|
|
<view class="text_row2 flex-con2">
|
|
<input placeholder-style="color:#cccccc;" maxlength="18" name="id" type="idcard" value="" placeholder="请输入您的身份证号" />
|
|
</view>
|
|
<view class="text_row3 flex-con3"></view>
|
|
</view>
|
|
<view class="text_row">
|
|
<view class="text_row1 flex-con2">年龄</view>
|
|
<view class="text_row2 flex-con2">
|
|
<input placeholder-style="color:#cccccc;" maxlength="2" name="age" type="number" value="" placeholder="请输入您的真实年龄" />
|
|
</view>
|
|
<view class="text_row3 flex-con3"></view>
|
|
</view>
|
|
<view class="text_row">
|
|
<view class="text_row1 flex-con2">手机</view>
|
|
<view class="text_row2 flex-con2">
|
|
<input placeholder-style="color:#cccccc;" maxlength="11" name="tel" type="number" value="" placeholder="请输入您的手机号" />
|
|
</view>
|
|
<view class="text_row3 flex-con3"></view>
|
|
</view>
|
|
<view class="text_row">
|
|
<view class="text_row1 flex-con2">性别</view>
|
|
<view class="text_row2 flex-con2">
|
|
<wux-segmented-control style="width:260rpx;" current="{{ sex }}" theme="balanced" values="{{ ['男', '女'] }}" bind:change="onChange" />
|
|
</view>
|
|
<view class="text_row3 flex-con3"></view>
|
|
</view>
|
|
<picker mode="multiSelector" value="{{dateValue}}" range-key="name" range="{{dateAdd}}" bindchange="bindDateChange" bindcolumnchange="bindMultiPickerColumnChange">
|
|
<view class="text_row">
|
|
<view class="text_row1 flex-con2">区域</view>
|
|
<view class="text_row2 flex-con2">
|
|
<input placeholder-style="color:#cccccc;" type="text" value="{{dateName}}" placeholder="请选择您所在的区域" disabled="{{true}}" />
|
|
</view>
|
|
<view class="text_row3 flex-con3">
|
|
<image src="/static/img/icon/rthyrthertherth.png" />
|
|
</view>
|
|
</view>
|
|
</picker>
|
|
<view class="text_row">
|
|
<view class="text_row1 flex-con2">详情</view>
|
|
<view class="text_row2 flex-con2">
|
|
<input placeholder-style="color:#cccccc;" name="detail" type="text" value="" placeholder="输入街道或社区" />
|
|
</view>
|
|
<view class="text_row3 flex-con3"></view>
|
|
</view>
|
|
</view>
|
|
<view class="list_text_p">
|
|
<view class="list_text_tit">上传身份证照片</view>
|
|
<view class="list_text_tit_img">
|
|
<view class="pr10 dis-flex flex1" data-type="0" bind:tap="ChooseImage">
|
|
<view wx:if="{{!!updateImg[0]}}" class="dis-flex flex1 updateImg">
|
|
<image class="flex1" src="{{updateImg[0]}}" />
|
|
</view>
|
|
<view wx:else class="flex-con3 flex1 update-all">
|
|
<view class="update">
|
|
<image class="update-icon" src="/static/img/icon/update-icon.png" />
|
|
<view class="update-text">上传身份证正面照</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="pr10 dis-flex flex1" data-type="1" bind:tap="ChooseImage">
|
|
<view wx:if="{{!!updateImg[1]}}" class="dis-flex flex1 updateImg">
|
|
<image class="flex1" src="{{updateImg[1]}}" />
|
|
</view>
|
|
<view wx:else class="flex-con3 flex1 update-all">
|
|
<view class="update">
|
|
<image class="update-icon" src="/static/img/icon/update-icon.png" />
|
|
<view class="update-text">上传身份证反面照</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<button class="sub" form-type="submit">提交申请</button>
|
|
</form>
|
|
</view>
|
|
<!-- toasta提示 -->
|
|
<i-toast id="toast" /> |