index.wxml 915 B

123456789101112131415161718192021222324
  1. <!--pages/entry/index.wxml-->
  2. <view class="page">
  3. <view class="title">登记选手信息</view>
  4. <view class="main">
  5. <view class="label">
  6. 姓名
  7. </view>
  8. <view class="input">
  9. <input value="{{nickName}}" bindinput="bindKeyInput" type="text" style="width: 655rpx;" class="inputTool" placeholder-class="placeholder-style" placeholder="请输入姓名" />
  10. </view>
  11. <view class="label">
  12. 手机号
  13. </view>
  14. <view class="input">
  15. <input disabled="{{inputed}}" value="{{phoneNumber}}" bindinput="phoneinput" type="number" class="inputTool" placeholder-class="placeholder-style" placeholder="请输入手机号" />
  16. <button disabled="{{inputed}}" class="buttom" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">一键获取手机号</button>
  17. </view>
  18. <view class="faceBtn" bindtap="toFace">
  19. 进行人脸识别
  20. </view>
  21. </view>
  22. </view>