index.axml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <view class="page">
  2. <view class="main" onTap="clickAudio">
  3. <top-title ref="saveRef" countdown="{{snDisposition.inputPhoneTimeout || 30}}" onFinish="finish" />
  4. <view class="input-box flex2">
  5. <view class="tit">
  6. 请输入手机号
  7. </view>
  8. <input
  9. placeholder="请输入手机号"
  10. placeholder-class="placeholder"
  11. value="{{numVal}}"
  12. onInput="getVal"
  13. type="number"
  14. maxlength="11"
  15. />
  16. <view class="btn transparent">确定</view>
  17. </view>
  18. <view class="num flex1">
  19. <button
  20. a:if="{{ item!='退格'}}"
  21. a:for="{{ numList }}"
  22. class="num-item magnify-btn"
  23. a:key="index"
  24. onTap="getVal"
  25. data-item="{{item}}"
  26. onLongTap="bindlongtap"
  27. >
  28. {{item}}
  29. </button>
  30. <view class="num-item magnify-btn" onTap="getVal" data-item="退格" onLongTap="bindlongtap">
  31. 退格
  32. </view>
  33. </view>
  34. <bottom-parnel suerName="{{'提交'}}" onSure="sure" />
  35. </view>
  36. </view>