register.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <template>
  2. <view class="content">
  3. <view class="form vflex">
  4. <u-input v-model="userInfo.userName" placeholder="请输入昵称"></u-input>
  5. <u-input v-model="userInfo.name" placeholder="请输入手机号码"></u-input>
  6. <u-input v-model="code" placeholder="请输入验证码">
  7. <template slot="suffix">
  8. <u-code ref="uCode" @change="codeChange" seconds="60" changeText="X秒重新获取"></u-code>
  9. <view class="code" @tap="getCode" :text="tips"></view>
  10. </template>
  11. </u-input>
  12. <u-input :type="pwd_type" v-model="userInfo.password" placeholder="请输入密码">
  13. <template slot="suffix">
  14. <view @click="show_pwd" v-if="pwd_type == 'password'">
  15. <image src="/static/images/login/biyanjing.png" class="pwd_icon"></image>
  16. </view>
  17. <view @click="show_pwd" v-if="pwd_type == 'text'">
  18. <image src="/static/images/login/yanjing.png" class="pwd_icon"></image>
  19. </view>
  20. </template>
  21. </u-input>
  22. </view>
  23. <view class="button hflex acenter jcenter" @click="submit">
  24. <view>提交</view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import $api from '@/static/js/api.js'
  30. var that = ''
  31. export default {
  32. data() {
  33. return {
  34. userInfo: {
  35. name: '',
  36. password: ''
  37. },
  38. code: '',
  39. tips: '获取验证码',
  40. pwd_type: 'password',
  41. }
  42. },
  43. onLoad() {
  44. that = this
  45. },
  46. watch: {
  47. value(newValue,oldValue) {
  48. }
  49. },
  50. methods: {
  51. // 验证码文字
  52. codeChange(text) {
  53. that.tips = text
  54. },
  55. // 获取验证码
  56. getCode() {
  57. if(that.$refs.uCode.canGetCode) {
  58. uni.showLoading({
  59. title: '正在获取验证码'
  60. })
  61. setTimeout(()=> {
  62. uni.hideLoading();
  63. uni.$u.toast('验证码已发送')
  64. this.$refs.uCode.start()
  65. },2000)
  66. } else {
  67. uni.$u.toast('倒计时结束后再发送')
  68. }
  69. },
  70. // 提交
  71. submit() {
  72. if ($api.formCheck(that.userInfo.name,"phone") && $api.formCheck(that.code, "code6") && $api.formCheck(that.userInfo.password,"password")) {
  73. if (!that.agree) {
  74. $api.info('请先阅读并同意用户协议和隐私协议')
  75. } else {
  76. wx.setStorageSync("token",true)
  77. $api.jump('/pages/tabbar/mine/mine',3)
  78. }
  79. }
  80. }
  81. },
  82. }
  83. </script>
  84. <style lang="scss" scoped>
  85. .content::v-deep {
  86. padding: 0 60rpx;
  87. .form {
  88. width: 100%;
  89. padding-top: 64rpx;
  90. .u-input {
  91. width: 630rpx !important;
  92. height: 104rpx !important;
  93. background-color: #f4f4f4;
  94. border-radius: 52rpx;
  95. font-size: 30rpx !important;
  96. box-sizing: border-box;
  97. padding: 30rpx 48rpx !important;
  98. margin: 26rpx 0;
  99. }
  100. .pwd_icon {
  101. width: 40rpx;
  102. height: 40rpx;
  103. }
  104. .code {
  105. font-size: 30rpx;
  106. color: #506dff;
  107. }
  108. }
  109. .button {
  110. width: 100%;
  111. height: 96rpx;
  112. background-color: #506dff;
  113. border-radius: 50rpx;
  114. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  115. font-size: 40rpx;
  116. color: #fff;
  117. margin: 40rpx 0 36rpx;
  118. }
  119. }
  120. </style>