login.vue 5.0 KB

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