login.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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. <text class="code" @click="getCode">{{tips}}</text>
  31. </view>
  32. <view class="input u-flex" v-if="tabs==1">
  33. <u-input placeholder-style='font-size: 32rpx;
  34. font-family: PingFangSC, PingFang SC;
  35. font-weight: 400;
  36. color: #222222;opacity: 0.4;' placeholder='请输入密码' v-model="password" type="text" :border="false" :clearable='false' />
  37. </view>
  38. <view class="button" @click="toindex">
  39. 登录
  40. </view>
  41. <view class="zhu" v-if="tabs==0" @click='tozhuce'>
  42. <view class="">
  43. <text>没有账号,</text>
  44. <text style="color: #06A971;">立即注册</text>
  45. </view>
  46. </view>
  47. <view class="zhu u-row-between u-flex" v-if="tabs==1">
  48. <view class="" @click='tozhuce'>
  49. <text>没有账号,</text>
  50. <text style="color: #06A971;">立即注册</text>
  51. </view>
  52. <text @click="forget">忘记密码</text>
  53. </view>
  54. <view class="xie u-flex ">
  55. <u-checkbox shape="circle" v-model="checked"></u-checkbox>
  56. <view class="" style="margin-left: -12rpx;">
  57. <text>阅读并同意</text>
  58. <text style='color:#06A971;'>《隐私政策》</text>
  59. <text>和</text>
  60. <text style='color:#06A971;'>《服务协议》</text>
  61. </view>
  62. </view>
  63. </view>
  64. <u-verification-code :seconds="seconds" ref="uCode" @change="codeChange"></u-verification-code>
  65. </view>
  66. </template>
  67. <script>
  68. export default {
  69. data() {
  70. return {
  71. tabs: 0,
  72. phone: '',
  73. checked: false,
  74. code: '',
  75. password: '',
  76. tips: '',
  77. };
  78. },
  79. methods: {
  80. codeChange(text) {
  81. this.tips = text;
  82. },
  83. tozhuce() {
  84. uni.navigateTo({
  85. url: '/pages/login/register'
  86. })
  87. },
  88. getCode() {
  89. if (!this.$u.test.mobile(this.phone)) {
  90. this.$u.toast("请输入正确的手机号")
  91. return
  92. }
  93. if (this.$refs.uCode.canGetCode) {
  94. // 模拟向后端请求验证码
  95. uni.showLoading({
  96. title: '正在获取验证码',
  97. mask: true
  98. })
  99. this.$u.post('/api/sms/send', {
  100. mobile: this.tel,
  101. event: 'login'
  102. }).then(res => {
  103. if (res.code == 1) {
  104. uni.hideLoading();
  105. // 这里此提示会被this.start()方法中的提示覆盖
  106. this.$u.toast('验证码已发送');
  107. // 通知验证码组件内部开始倒计时
  108. this.$refs.uCode.start();
  109. } else {
  110. this.$u.toast(res.msg)
  111. }
  112. })
  113. } else {
  114. this.$u.toast('倒计时结束后再发送');
  115. }
  116. },
  117. change(index) {
  118. this.tabs = index
  119. },
  120. forget() {
  121. uni.navigateTo({
  122. url: '/pages/login/forgetPassword'
  123. })
  124. },
  125. toindex() {
  126. if (!this.checked) {
  127. this.$u.toast('请先勾选协议')
  128. return
  129. }
  130. this.$u.post('api/user/login', {
  131. account: this.phone,
  132. password: this.password
  133. }).then(res => {
  134. console.log(res);
  135. if (res.code == 1) {
  136. uni.setStorageSync('token', res.data.userinfo.token)
  137. this.$u.toast(res.msg)
  138. setTimeout(() => {
  139. uni.switchTab({
  140. url: '/pages/index/index'
  141. })
  142. }, 800)
  143. } else {
  144. this.$u.toast(res.msg)
  145. }
  146. })
  147. }
  148. }
  149. }
  150. </script>
  151. <style lang="scss">
  152. .xie {
  153. width: 96%;
  154. position: fixed;
  155. bottom: 86rpx;
  156. font-size: 22rpx;
  157. font-family: PingFangSC, PingFang SC;
  158. font-weight: 400;
  159. color: #666666;
  160. align-items: center;
  161. justify-content: center;
  162. }
  163. .page {
  164. height: 100vh;
  165. }
  166. .zhu {
  167. font-size: 24rpx;
  168. font-family: PingFangSC, PingFang SC;
  169. font-weight: 400;
  170. color: #444444;
  171. line-height: 34rpx;
  172. text-align: center;
  173. margin-top: 64rpx;
  174. }
  175. .button {
  176. // width: 656rpx;
  177. height: 92rpx;
  178. background: linear-gradient(316deg, #1EBE8C 0%, #06A971 100%);
  179. box-shadow: 0rpx 32rpx 48rpx -20rpx rgba(6, 169, 113, 0.5);
  180. border-radius: 12rpx;
  181. font-size: 32rpx;
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: 500;
  184. color: #FFFFFF;
  185. line-height: 92rpx;
  186. margin-top: 52rpx;
  187. text-align: center;
  188. }
  189. .code {
  190. font-size: 32rpx;
  191. font-family: PingFangSC, PingFang SC;
  192. font-weight: 400;
  193. color: #06A971;
  194. opacity: 1;
  195. }
  196. .input {
  197. height: 134rpx;
  198. display: flex;
  199. align-items: center;
  200. border-bottom: 2rpx solid rgba(0, 0, 0, 0.14);
  201. }
  202. .login {
  203. padding: 18rpx 25rpx 0 20rpx;
  204. .chat1 {
  205. font-size: 36rpx;
  206. font-family: PingFangSC, PingFang SC;
  207. font-weight: 500;
  208. color: #222222;
  209. opacity: 0.999;
  210. }
  211. .line {
  212. width: 2rpx;
  213. height: 30rpx;
  214. opacity: 0.3;
  215. background: #979797;
  216. margin: 0 20px 0 20px;
  217. }
  218. .chat2 {
  219. font-size: 36rpx;
  220. font-family: PingFangSC, PingFang SC;
  221. font-weight: 500;
  222. color: #222222;
  223. opacity: 0.5;
  224. }
  225. }
  226. .index-navbar {
  227. // position: sticky;
  228. // top: 0;
  229. // left: 0;
  230. // width: 100vw;
  231. // z-index: 100;
  232. // overflow: hidden;
  233. .back {
  234. position: absolute;
  235. top: 0;
  236. left: 0;
  237. z-index: -1;
  238. width: 100vw;
  239. height: 494rpx;
  240. background: linear-gradient(180deg, #D7F5EB 0%, #FFFFFF 100%);
  241. }
  242. }
  243. </style>