123456789101112131415161718192021222324252627282930313233 |
- <view class='page' ref='saveChildRef0'>
- <image class='bg' src='../../../static/images/bg.jpg'>
- </image>
- <image class='title' style='top: {{titleBarHeight+statusBarHeight+90}}px' src='../../../static/images/title.png'>
- </image>
- <view class='input-box'>
- <view>
- <custom-input placeholder-style='color: white' class='inputText' type='text' placeholder='请输入姓名' maxlength='50' value='{{inputName}}' onInput='getInputName'>
- </custom-input>
- <view class='margin-top-sm flex align-center' a:if='{{(warnName!=1&&warnName!=2)}}'>
- <view class='cuIcon-infofill text-warning text-sm'>
- </view>
- <text class='text-sm text-warning margin-left-xs'>
- {{warnName}} </text>
- </view>
- </view> <view>
- <custom-input placeholder-style='color: white' class='inputText' type='idcard' placeholder='请输入身份证号' maxlength='18' value='{{inputIdcard}}' onInput='getInputIdcard'>
- </custom-input>
- <view class='margin-top-sm flex align-center' a:if='{{(warnIdcard!=1&&warnIdcard!=2)}}'>
- <view class='cuIcon-infofill text-warning text-sm'>
- </view>
- <text class='text-sm text-warning margin-left-xs'>
- {{warnIdcard}} </text>
- </view>
- </view> <view style='text-align: center'>
- <btn class='btn2 text-xl' disabled='{{!(inputName&&inputIdcard&&warnIdcard===2&&warnName===2&&disableSubmit)}}' onTap='antmoveAction' data-antmove-tap='submit'>
- 提交
- </btn>
- <text class='sub-title' onTap='antmoveAction' data-antmove-tap='watch'>
- 点击查看操作说明 </text>
- </view>
- </view>
- </view>
|