index.axml 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <view class='page' ref='saveChildRef0'>
  2. <image class='bg' src='../../../static/images/bg.jpg'>
  3. </image>
  4. <image class='title' style='top: {{titleBarHeight+statusBarHeight+90}}px' src='../../../static/images/title.png'>
  5. </image>
  6. <view class='input-box'>
  7. <view>
  8. <custom-input placeholder-style='color: white' class='inputText' type='text' placeholder='请输入姓名' maxlength='50' value='{{inputName}}' onInput='getInputName'>
  9. </custom-input>
  10. <view class='margin-top-sm flex align-center' a:if='{{(warnName!=1&&warnName!=2)}}'>
  11. <view class='cuIcon-infofill text-warning text-sm'>
  12. </view>
  13. <text class='text-sm text-warning margin-left-xs'>
  14. {{warnName}} </text>
  15. </view>
  16. </view> <view>
  17. <custom-input placeholder-style='color: white' class='inputText' type='idcard' placeholder='请输入身份证号' maxlength='18' value='{{inputIdcard}}' onInput='getInputIdcard'>
  18. </custom-input>
  19. <view class='margin-top-sm flex align-center' a:if='{{(warnIdcard!=1&&warnIdcard!=2)}}'>
  20. <view class='cuIcon-infofill text-warning text-sm'>
  21. </view>
  22. <text class='text-sm text-warning margin-left-xs'>
  23. {{warnIdcard}} </text>
  24. </view>
  25. </view> <view style='text-align: center'>
  26. <btn class='btn2 text-xl' disabled='{{!(inputName&&inputIdcard&&warnIdcard===2&&warnName===2&&disableSubmit)}}' onTap='antmoveAction' data-antmove-tap='submit'>
  27. 提交
  28. </btn>
  29. <text class='sub-title' onTap='antmoveAction' data-antmove-tap='watch'>
  30. 点击查看操作说明 </text>
  31. </view>
  32. </view>
  33. </view>