login.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <!-- 密码登录 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="title-row">
  5. <view>登录携手熊猫</view>
  6. <view>登录以使用更多服务</view>
  7. </view>
  8. <view class="form-box">
  9. <view class="form-row">
  10. <view class="num-row">
  11. +86 <image src="../../static/sanjiao.png" class="sanjiao" mode="widthFix"></image>
  12. </view>
  13. <input type="text" value="" class="input" placeholder="请输入手机号" placeholder-class="placeholder" />
  14. </view>
  15. <view class="form-row">
  16. <input class="input" :password="!flag" value="" placeholder="请输入密码" placeholder-class="placeholder" />
  17. <image @click="flag=!flag" :src="flag ? '../../static/eye.png' : '../../static/eye-close.png'"
  18. class="eye-icon" mode="heightFix" />
  19. </view>
  20. <view class="msg">
  21. <text @tap="register">立即注册</text>
  22. <text @tap="forgotPassword">忘记密码?</text>
  23. </view>
  24. <view class="btn-box">
  25. <button type="default" class="active" @tap="go">登录</button>
  26. </view>
  27. <view class="login-box">
  28. <view @tap="messageLogin">验证码登录</view>
  29. <view @tap="mobileNumberLogin">一键登录</view>
  30. </view>
  31. <view class="type-box">
  32. <button type="default">
  33. <image src="../../static/type-2.png" mode=""></image>
  34. </button>
  35. <button type="default">
  36. <image src="../../static/type-1.png" mode=""></image>
  37. </button>
  38. </view>
  39. <view class="login-bottom-row">
  40. <view class="select-btn" @tap="selected">
  41. <image :src="select ? '../../static/circle-active.png' : '../../static/circle.png'" />
  42. </view>
  43. 登录即同意《中国移动认证服务条款》和《携手熊猫用户协议》
  44. </view>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. import { loginPasswordLogin } from '../../common/service.js';
  50. import { validatorFun } from '../../common/utils/util';
  51. export default {
  52. data() {
  53. return {
  54. //隐藏显示密码
  55. flag: false,
  56. select:true,
  57. params: {
  58. phone: '', // 手机号
  59. password: '', // 密码
  60. },
  61. }
  62. },
  63. methods: {
  64. login() {
  65. if (!this.select) {
  66. return uni.showToast({
  67. icon: 'none',
  68. title: '请阅读并同意《中国移动认证服务条款》和《携手熊猫用户协议》'
  69. });
  70. }
  71. const params = this.params;
  72. const errList = validatorFun(params, [
  73. ['phone', ['notNull', '请输入手机号'], ['isMobile', '请输入正确手机号']],
  74. ['password', ['notNull', '请输入密码']],
  75. ]);
  76. if (errList.length > 0) {
  77. return uni.showToast({
  78. icon: 'none',
  79. title: errList[0].errMsg,
  80. });
  81. }
  82. loginPasswordLogin({
  83. data: params,
  84. success: ({code, msg, data}) => {
  85. if (code == 1) {
  86. uni.setStorageSync('session_key', data.token);
  87. uni.reLaunch({
  88. url: '/pages/index/index',
  89. });
  90. } else {
  91. uni.showToast({
  92. icon: 'none',
  93. title: msg,
  94. });
  95. }
  96. }
  97. });
  98. },
  99. selected: function() {
  100. this.select = !this.select;
  101. },
  102. // 跳转注册
  103. register(){
  104. uni.navigateTo({
  105. url:'register/register'
  106. })
  107. },
  108. // 跳转验证码登录
  109. messageLogin(){
  110. uni.navigateTo({
  111. url:'message-login/message-login'
  112. })
  113. },
  114. // 跳转一键登录
  115. mobileNumberLogin(){
  116. uni.navigateTo({
  117. url:'mobile-number-login/mobile-number-login'
  118. })
  119. },
  120. // 跳转忘记密码
  121. forgotPassword(){
  122. uni.navigateTo({
  123. url:'forgot-password/forgot-password'
  124. })
  125. },
  126. // 跳转首页
  127. go() {
  128. uni.navigateTo({
  129. url: '../index/index'
  130. })
  131. },
  132. }
  133. }
  134. </script>
  135. <style scoped lang="scss">
  136. @import "./login.css";
  137. </style>