login.vue 6.2 KB

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