index.wxml 1.5 KB

12345678910111213141516171819202122232425262728
  1. <!--pages/temporary_prove/index.wxml-->
  2. <view class="page">
  3. <image class="bg" src="../../../static/images/bg.jpg"></image>
  4. <!-- <image class="logo2" style="top: {{CustomBar+20}}px" src="../../../static/images/logo2.png"></image> -->
  5. <image class="title" style="top: {{CustomBar+90}}px" src="../../../static/images/title.png"></image>
  6. <view class="input-box">
  7. <view>
  8. <input placeholder-style="color: white" class="inputText" type="text" placeholder="请输入姓名" maxlength="50"
  9. value="{{inputName}}" bindinput="getInputName"></input>
  10. <view class="margin-top-sm flex align-center" wx:if="{{(warnName!=1&&warnName!=2)}}">
  11. <view class="cuIcon-infofill text-warning text-sm"></view><text class="text-sm text-warning margin-left-xs">{{warnName}}</text>
  12. </view>
  13. </view>
  14. <view>
  15. <input placeholder-style="color: white" class="inputText" type="idcard" placeholder="请输入身份证号"
  16. maxlength="18" value="{{inputIdcard}}" bindinput="getInputIdcard"></input>
  17. <view class="margin-top-sm flex align-center" wx:if="{{(warnIdcard!=1&&warnIdcard!=2)}}">
  18. <view class="cuIcon-infofill text-warning text-sm"></view><text class="text-sm text-warning margin-left-xs">{{warnIdcard}}</text>
  19. </view>
  20. </view>
  21. <view style="text-align: center">
  22. <button class="btn2 text-xl" disabled="{{!(inputName&&inputIdcard&&warnIdcard===2&&warnName===2&&disableSubmit)}}" bindtap="submit">提交</button>
  23. <text class="sub-title" bindtap="watch">点击查看操作说明</text>
  24. </view>
  25. </view>
  26. </view>