1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <view class="container">
- <image mode="aspectFit" src="/static/images/upgrade/logo.png" class="logo">
- </image>
- <view class="main">
- <view class="info-block">
- <view class="head-top">加入鲸致生活</view>
- <view class="head-tips">请务必正确、真实填写</view>
- <view class="info-item">
- <view class="item-title">
- <text>* </text>
- <view class="question"> 1. 您的完整姓名:</view>
- <view class="remark">(请填答该题)</view>
- </view>
- <view class="input-block">
- <input class="input" bindinput="bindName" value="{{name}}" type="text" maxlength="10" placeholder="请输入姓名" placeholder-class="placeholder"/>
- </view>
- </view>
- <view class="info-item">
- <view class="item-title">
- <text>* </text>
- <view class="question"> 2. 您的手机号码:</view>
- <view class="remark">(请填答该题)</view>
- </view>
- <view class="input-tips">请填写正确手机号,以免错失机会</view>
- <view class="input-block">
- <input class="input" bindinput="bindMobile" value="{{mobile}}" type="number" maxlength="11" placeholder="请输入手机号码" placeholder-class="placeholder"/>
- </view>
- </view>
- <view class="info-item">
- <view class="item-title">
- <text>* </text>
- <view class="question"> 3. 3. 您期望的工作城市:</view>
- <view class="remark">(请填答该题)</view>
- </view>
- <view class="input-tips">请点击选择 </view>
- <view class="input-block">
- <view class="input-wrapper" bindtap="cityTap">
- <input class="input" bindinput="bindMobile" value="{{city}}" type="text" disabled placeholder="请选择城市" placeholder-class="placeholder"/>
- <van-icon name="arrow-down" size="12px" color="#000"/>
- </view>
- </view>
- </view>
- </view>
- <view class="submit-btn" bindtap="submit">
- 确认提交
- </view>
- </view>
- </view>
- <!-- 弹框 -->
- <van-popup show="{{showPicker}}" position="bottom">
- <van-picker show-toolbar columns="{{columns}}"
- bind:cancel="pickerCancel" bind:confirm="pickerConfirm"
- />
- </van-popup>
|