123456789101112131415161718192021222324252627282930313233343536 |
- <view class="page">
- <view class="main" onTap="clickAudio">
- <top-title ref="saveRef" countdown="{{snDisposition.inputPhoneTimeout || 30}}" onFinish="finish" />
- <view class="input-box flex2">
- <view class="tit">
- 请输入手机号
- </view>
- <input
- placeholder="请输入手机号"
- placeholder-class="placeholder"
- value="{{numVal}}"
- onInput="getVal"
- type="number"
- maxlength="11"
- />
- <view class="btn transparent">确定</view>
- </view>
- <view class="num flex1">
- <button
- a:if="{{ item!='退格'}}"
- a:for="{{ numList }}"
- class="num-item magnify-btn"
- a:key="index"
- onTap="getVal"
- data-item="{{item}}"
- onLongTap="bindlongtap"
- >
- {{item}}
- </button>
- <view class="num-item magnify-btn" onTap="getVal" data-item="退格" onLongTap="bindlongtap">
- 退格
- </view>
- </view>
- <bottom-parnel suerName="{{'提交'}}" onSure="sure" />
- </view>
- </view>
|