1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!--pages/invoice/authentication/authentication.wxml-->
- <view class="page-auth">
- <view class="auth-user">
- <view class="icon">
- <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-user-round.png"></image>
- </view>
- </view>
- <view class="form-box">
- <view class="form-list">
- <view class="form-label">姓名</view>
- <input class="input-text" bindchange="changeInput" bindblur="validateForm" id="formData.name" value="{{formData.name}}" placeholder="请输入您的姓名" type="text" />
- </view>
- <view class="form-list">
- <view class="form-label">电话</view>
- <input class="input-text" disabled bindchange="changeInput" id="formData.mobile" value="{{formData.mobile}}" placeholder="请输入您的电话" type="text" />
- <button class="get-phone" bindgetphonenumber="getPhoneNumber" bindblur="validateForm" open-type="getPhoneNumber">获取手机号</button>
- </view>
- <view class="form-list">
- <view class="form-label">身份证号</view>
- <input class="input-text" bindchange="changeInput" id="formData.idNo" value="{{formData.idNo}}" placeholder="请输入您的身份证号码" type="text" />
- </view>
- <picker range="{{organizationPickList}}" range-key="desp" bindchange="organizationPickHandler" value="{{organizationPickValue}}" class="form-list">
- <view class="form-label">所属机构</view>
- <input class="input-text" value="{{organizationPickList[organizationPickValue].name}}" disabled placeholder="请选择" type="text" />
- <view class="icon-arrow"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-form-arrow.png"></image></view>
- </picker>
- <view class="form-list" wx:if="{{otherOrganization}}">
- <view class="form-label">请输入机构名称</view>
- <input class="input-text" bindchange="changeInput" bindblur="validateForm" id="formData.organName" value="{{formData.organName}}" placeholder="请输入机构名称" type="text" />
- </view>
- </view>
- <view class="user-card-box">
- <view class="card-img-box">
- <view wx:if="{{upFileInfoFont}}" class="img-wrap">
- <image mode="scaleToFill" src="{{upFileInfoFont.url}}"></image>
- <view bindtap="removeFileFront" class="close"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-close.png"></image></view>
- </view>
- <view bindtap="chooseFileFront" wx:if="{{!upFileInfoFont}}" class="item-info">
- <view class="icon">
- <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-add-file.png"></image>
- </view>
- <view class="text">点击上传身份证正面</view>
- </view>
- </view>
- <view class="card-img-box">
- <view wx:if="{{upFileInfoReverse}}" class="img-wrap">
- <image mode="scaleToFill" src="{{upFileInfoReverse.url}}"></image>
- <view bindtap="removeFileReverse" class="close"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-close.png"></image></view>
- </view>
- <view bindtap="chooseFileReverse" wx:if="{{!upFileInfoReverse}}" class="item-info">
- <view class="icon">
- <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-add-file.png"></image>
- </view>
- <view class="text">点击上传身份证反面</view>
- </view>
- </view>
- </view>
- <view bindtap="saveData" class="default-btn {{isValidate?'primary':''}}">提交</view>
- </view>
|