123456789101112131415161718192021222324 |
- <!--pages/entry/index.wxml-->
- <view class="page">
- <view class="title">登记选手信息</view>
- <view class="main">
- <view class="label">
- 姓名
- </view>
- <view class="input">
- <input value="{{nickName}}" bindinput="bindKeyInput" type="text" style="width: 655rpx;" class="inputTool" placeholder-class="placeholder-style" placeholder="请输入姓名" />
- </view>
- <view class="label">
- 手机号
- </view>
- <view class="input">
- <input disabled="{{inputed}}" value="{{phoneNumber}}" bindinput="phoneinput" type="number" class="inputTool" placeholder-class="placeholder-style" placeholder="请输入手机号" />
- <button disabled="{{inputed}}" class="buttom" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">一键获取手机号</button>
- </view>
- <view class="faceBtn" bindtap="toFace">
- 进行人脸识别
- </view>
- </view>
- </view>
|