login.vue 6.1 KB

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