login.vue 6.3 KB

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