register.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view class="login">
  3. <view class="dk" style="margin-top: 30px">
  4. <view class="bg">
  5. <text class="icon">&#xe8b9;</text>
  6. <input type="number" v-model="form.phone" placeholder="请输入手机号" />
  7. </view>
  8. <view class="bg">
  9. <text class="icon">&#xe624;</text>
  10. <input type="number" v-model="form.smsCode" placeholder="验证码" />
  11. <view class="label">获取验证码</view>
  12. </view>
  13. <view class="bg">
  14. <text class="icon">&#xe8b2;</text>
  15. <input :password="show" v-model="form.password" placeholder="请输入密码" />
  16. <view class="label"><view class="icon" :class="{ active: !show }" @click="show = !show">&#xe7a6;</view></view>
  17. </view>
  18. <view class="bg">
  19. <text class="icon">&#xe8b2;</text>
  20. <input :password="show" v-model="form.rePassword" placeholder="确认密码" />
  21. <view class="label"><view class="icon" :class="{ active: !show }" @click="show = !show">&#xe7a6;</view></view>
  22. </view>
  23. <view class="xy">
  24. <u-checkbox-group class="checkbox" v-model="form.checked">
  25. <u-checkbox size="15" shape="circle" label="我已阅读并同意" labelSize="13" name="true"></u-checkbox>
  26. </u-checkbox-group>
  27. <text class="a" @click="getAgreement(1)">《用户协议》</text>
  28. <text>和</text>
  29. <text class="a" @click="getAgreement(2)">《隐私政策》</text>
  30. </view>
  31. <button class="btn" @click="submit()">确定</button>
  32. <button class="btn register" @click="toLogin()">返回</button>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. show: true,
  41. time: 60,
  42. code: '获取验证码',
  43. form: {}
  44. };
  45. },
  46. onLoad(option) {
  47. this.form.type = option.type;
  48. },
  49. created() {},
  50. methods: {
  51. startCount() {
  52. setTimeout(() => {
  53. let time = this.time;
  54. if (time == 0) {
  55. this.code = '重新获取';
  56. this.time = 60;
  57. return;
  58. }
  59. this.time = --time;
  60. this.code = time + '后重新获取';
  61. this.startCount();
  62. }, 1000);
  63. },
  64. getCode() {
  65. let time = this.time;
  66. if (time > 0 && time < 60) {
  67. return;
  68. }
  69. let phone = this.form.phone;
  70. if (!this.$common.isPhone(phone)) {
  71. this.$common.toast('请输入正确的手机号');
  72. return;
  73. }
  74. this.startCount();
  75. this.$api.getPhoneSmsCode().then(resp => {
  76. this.$common.toast('已发送');
  77. });
  78. },
  79. submit() {
  80. let rule = [
  81. { name: 'phone', checkType: 'phone', errorMsg: '请输入正确的手机号码' },
  82. { name: 'smsCode', checkType: 'notnull', errorMsg: '请输入验证码' },
  83. { name: 'password', checkType: 'notnull', errorMsg: '请输入密码' },
  84. { name: 'rePassword', checkType: 'same', checkRule: this.form.password, errorMsg: '两次输入不一致' },
  85. { name: 'checked', checkType: 'notnull', errorMsg: '请同意并勾选协议' }
  86. ];
  87. if (!this.verify.check(this.form, rule)) {
  88. uni.showModal({ content: this.verify.error, showCancel: false });
  89. return false;
  90. }
  91. this.$api.doRefister(this.form).then(res => {
  92. if (res.code == 200) {
  93. uni.$u.toast('注册成功');
  94. uni.navigateTo({
  95. url: '/pages/login/login'
  96. });
  97. }
  98. });
  99. },
  100. toLogin() {
  101. uni.navigateTo({
  102. url: '/pages/login/login'
  103. });
  104. },
  105. getAgreement(id) {
  106. uni.navigateTo({ url: '/pages/login/userAgreement?id=' + id });
  107. }
  108. }
  109. };
  110. </script>
  111. <style lang="scss"></style>