123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
- <view class="home">
- <view class="main">
- <text class="title">
- <text>请填写以下注册信息</text>
- </text>
- <view class="form">
- <form bindsubmit="formSubmit" bindreset="formReset">
- <view class='input-content'>
- <!-- <view class='input-col' style='border-bottom:none'>
- <input type='text' name="companyname" placeholder='请输入企业名称' placeholder-style="color:#888888;"></input>
- </view> -->
- <!-- <view class='input-col' style='border-bottom:none'>
- <input type='text' name="person" placeholder='请输入姓名' placeholder-style="color:#888888;"></input>
- </view> -->
- <view class='input-col'>
- <input type='number' name="phone" value="{{phone}}" bindinput="talks" placeholder='请输入您本人的手机号码' maxlength="11" placeholder-style="color:#888888;"></input>
- </view>
- <view class='input-col' style="position: relative;">
- <input type='number' value="{{yanzhengma}}" bindinput="getYanzhengma" name="yanzhengma" placeholder='请输入验证码' placeholder-style="color:#888888;"></input>
- <button disabled='{{disabled}}' size="mini" class="codeBtn" bindtap="getCode">{{code}}</button>
- </view>
- <view class='input-col' style='border-bottom:none;position: relative;'>
- <input bindinput="getPassword" value="{{password}}" password='{{passwordType}}' name="password" placeholder='请输入密码(8-20位字母数字组合)' placeholder-style="color:#888888;"></input>
- <image src='{{defaultType? "../images/eye_close.png": "../images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus'></image>
- </view>
- <view class='input-col' style='border-bottom:none;position: relative;'>
- <input value="{{againpassword}}" bindinput="getPassword1" password='{{passwordType1}}' name="againpassword" placeholder='请再次输入密码(8-20位字母数字组合)' placeholder-style="color:#888888;"></input>
- <image src='{{defaultType1? "../images/eye_close.png": "../images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus1'></image>
- </view>
- </view>
- <view class="save">
- <button class='save-btn' form-type="submit">注册</button>
- </view>
- <view class="agreement">
- <radio bindtap='radioClick' checked="{{radioCheck}}" color="#E9021D" />
- <view bindtap="agreementBtn">{{instructionBook}}<text>《用户服务及授权协议》</text></view>
- </view>
- </form>
- </view>
- </view>
- </view>
|