123456789101112131415161718192021222324252627282930313233 |
- <!--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">
- <picker bindchange="bindchange" mode="selector" range="{{schoolList}}" style="width: 655rpx;" class="inputTool {{school ? '' : 'placeholder-style'}}">
- {{school || "请选择学校"}}
- </picker>
- </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 wx:if="{{!inputed}}" class="buttom" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">一键获取手机号</button>
- </view>
- <view class="faceBtn" bindtap="toFace">
- 进行人脸识别
- </view>
- </view>
- </view>
|