index.wxml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
  2. <view class="home">
  3. <view class="main">
  4. <text class="title">
  5. <text>请填写以下注册信息</text>
  6. </text>
  7. <view class="form">
  8. <form bindsubmit="formSubmit" bindreset="formReset">
  9. <view class='input-content'>
  10. <!-- <view class='input-col' style='border-bottom:none'>
  11. <input type='text' name="companyname" placeholder='请输入企业名称' placeholder-style="color:#888888;"></input>
  12. </view> -->
  13. <!-- <view class='input-col' style='border-bottom:none'>
  14. <input type='text' name="person" placeholder='请输入姓名' placeholder-style="color:#888888;"></input>
  15. </view> -->
  16. <view class='input-col'>
  17. <input type='number' name="phone" value="{{phone}}" bindinput="talks" placeholder='请输入您本人的手机号码' maxlength="11" placeholder-style="color:#888888;"></input>
  18. </view>
  19. <view class='input-col' style="position: relative;">
  20. <input type='number' value="{{yanzhengma}}" bindinput="getYanzhengma" name="yanzhengma" placeholder='请输入验证码' placeholder-style="color:#888888;"></input>
  21. <button disabled='{{disabled}}' size="mini" class="codeBtn" bindtap="getCode">{{code}}</button>
  22. </view>
  23. <view class='input-col' style='border-bottom:none;position: relative;'>
  24. <input bindinput="getPassword" value="{{password}}" password='{{passwordType}}' name="password" placeholder='请输入密码(8-20位字母数字组合)' placeholder-style="color:#888888;"></input>
  25. <image src='{{defaultType? "../images/eye_close.png": "../images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus'></image>
  26. </view>
  27. <view class='input-col' style='border-bottom:none;position: relative;'>
  28. <input value="{{againpassword}}" bindinput="getPassword1" password='{{passwordType1}}' name="againpassword" placeholder='请再次输入密码(8-20位字母数字组合)' placeholder-style="color:#888888;"></input>
  29. <image src='{{defaultType1? "../images/eye_close.png": "../images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus1'></image>
  30. </view>
  31. </view>
  32. <view class="save">
  33. <button class='save-btn' form-type="submit">注册</button>
  34. </view>
  35. <view class="agreement">
  36. <radio bindtap='radioClick' checked="{{radioCheck}}" color="#E9021D" />
  37. <view bindtap="agreementBtn">{{instructionBook}}<text>《用户服务及授权协议》</text></view>
  38. </view>
  39. </form>
  40. </view>
  41. </view>
  42. </view>