register.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <view class="page">
  3. <view class="index-navbar">
  4. <view class="" style="position: relative;;">
  5. <view class="back"></view>
  6. <u-navbar title-width='300' title='' :border-bottom="false" :background="{background:'rgba(0,0,0,0)'}"
  7. :isFixed="true"></u-navbar>
  8. </view>
  9. </view>
  10. <view class="login">
  11. <view class="tabs u-flex">
  12. <view @click="change(0)" :class="tabs==0?'chat1':'chat2'">账号注册</view>
  13. </view>
  14. <view class="input" style="margin-top: 23px;">
  15. <u-input placeholder-style='font-size: 32rpx;
  16. font-family: PingFangSC, PingFang SC;
  17. font-weight: 400;
  18. color: #222222;opacity: 0.4;' placeholder='请输入手机号' v-model="phone" type="text" :border="false" :clearable='false' />
  19. </view>
  20. <view class="input u-flex" v-if="tabs==0">
  21. <u-input placeholder-style='font-size: 32rpx;
  22. font-family: PingFangSC, PingFang SC;
  23. font-weight: 400;
  24. color: #222222;opacity: 0.4;' placeholder='请输入验证码' v-model="code" type="text" :border="false" :clearable='false' />
  25. <view class="code">
  26. 获取验证码
  27. </view>
  28. </view>
  29. <view class="input">
  30. <u-input placeholder-style='font-size: 32rpx;
  31. font-family: PingFangSC, PingFang SC;
  32. font-weight: 400;
  33. color: #222222;opacity: 0.4;' placeholder='请输入2-10位字符以内的中文或英文名' v-model="name" type="text" :border="false"
  34. :clearable='false' />
  35. </view>
  36. <view class="input">
  37. <u-input placeholder-style='font-size: 32rpx;
  38. font-family: PingFangSC, PingFang SC;
  39. font-weight: 400;
  40. color: #222222;opacity: 0.4;' placeholder='请输入密码' v-model="passwoed" type="text" :border="false"
  41. :clearable='false' />
  42. </view>
  43. <view class="button" @click="toindex">
  44. 注册
  45. </view>
  46. <view class="zhu" v-if="tabs==0" @click='tologin'>
  47. <view class="">
  48. <text>已有账号,</text>
  49. <text style="color: #06A971;">立即登录</text>
  50. </view>
  51. </view>
  52. <view class="xie u-flex ">
  53. <u-checkbox shape="circle" v-model="checked"></u-checkbox>
  54. <view class="" style="margin-left: -12rpx;">
  55. <text>阅读并同意</text>
  56. <text style='color:#06A971;'>《隐私政策》</text>
  57. <text>和</text>
  58. <text style='color:#06A971;'>《服务协议》</text>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </template>
  64. <script>
  65. export default {
  66. data() {
  67. return {
  68. tabs: 0,
  69. phone: '',
  70. checked: false,
  71. passwoed: '',
  72. name: '',
  73. code: ''
  74. };
  75. },
  76. methods: {
  77. tologin() {
  78. uni.navigateTo({
  79. url: '/pages/login/login'
  80. })
  81. },
  82. change(index) {
  83. this.tabs = index
  84. },
  85. toindex() {
  86. if (!this.checked) {
  87. this.$u.toast('请先勾选协议')
  88. return
  89. }
  90. this.$u.post('api/user/register', {
  91. username: this.name,
  92. password: this.passwoed,
  93. mobile: this.phone,
  94. code: this.code
  95. }).then(res => {
  96. if (res.code == 1) {
  97. this.$u.toast(res.msg)
  98. setTimeout(() => {
  99. uni.navigateTo({
  100. url: '/pages/login/login'
  101. })
  102. }, 800)
  103. } else {
  104. this.$u.toast(res.msg)
  105. }
  106. })
  107. }
  108. }
  109. }
  110. </script>
  111. <style lang="scss">
  112. .xie {
  113. width: 96%;
  114. position: fixed;
  115. bottom: 86rpx;
  116. font-size: 22rpx;
  117. font-family: PingFangSC, PingFang SC;
  118. font-weight: 400;
  119. color: #666666;
  120. align-items: center;
  121. justify-content: center;
  122. }
  123. .page {
  124. height: 100vh;
  125. }
  126. .zhu {
  127. font-size: 24rpx;
  128. font-family: PingFangSC, PingFang SC;
  129. font-weight: 400;
  130. color: #444444;
  131. line-height: 34rpx;
  132. text-align: center;
  133. margin-top: 64rpx;
  134. }
  135. .button {
  136. // width: 656rpx;
  137. height: 92rpx;
  138. background: linear-gradient(316deg, #1EBE8C 0%, #06A971 100%);
  139. box-shadow: 0rpx 32rpx 48rpx -20rpx rgba(6, 169, 113, 0.5);
  140. border-radius: 12rpx;
  141. font-size: 32rpx;
  142. font-family: PingFangSC, PingFang SC;
  143. font-weight: 500;
  144. color: #FFFFFF;
  145. line-height: 92rpx;
  146. margin-top: 52rpx;
  147. text-align: center;
  148. }
  149. .code {
  150. font-size: 32rpx;
  151. font-family: PingFangSC, PingFang SC;
  152. font-weight: 400;
  153. color: #06A971;
  154. opacity: 1;
  155. }
  156. .input {
  157. height: 134rpx;
  158. display: flex;
  159. align-items: center;
  160. border-bottom: 2rpx solid rgba(0, 0, 0, 0.14);
  161. }
  162. .login {
  163. padding: 18rpx 25rpx 0 20rpx;
  164. .chat1 {
  165. font-size: 36rpx;
  166. font-family: PingFangSC, PingFang SC;
  167. font-weight: 500;
  168. color: #222222;
  169. opacity: 0.999;
  170. }
  171. .line {
  172. width: 2rpx;
  173. height: 30rpx;
  174. opacity: 0.3;
  175. background: #979797;
  176. margin: 0 20px 0 20px;
  177. }
  178. .chat2 {
  179. font-size: 36rpx;
  180. font-family: PingFangSC, PingFang SC;
  181. font-weight: 500;
  182. color: #222222;
  183. opacity: 0.5;
  184. }
  185. }
  186. .index-navbar {
  187. // position: sticky;
  188. // top: 0;
  189. // left: 0;
  190. // width: 100vw;
  191. // z-index: 100;
  192. // overflow: hidden;
  193. .back {
  194. position: absolute;
  195. top: 0;
  196. left: 0;
  197. z-index: -1;
  198. width: 100vw;
  199. height: 494rpx;
  200. background: linear-gradient(180deg, #D7F5EB 0%, #FFFFFF 100%);
  201. }
  202. }
  203. </style>