accountLogin.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <view class="container flex-column">
  3. <view style="padding: 30upx 20upx 0;color: #000000;">
  4. <JHeader width="50" height="50" title=""></JHeader>
  5. </view>
  6. <view class="register" @click="handleClickRegister">
  7. 注册
  8. </view>
  9. <view class="PhoneAuthentication">
  10. <text class="textRL">手机号快捷登录</text>
  11. <text class="textTips">请先注册账号再登录</text>
  12. </view>
  13. <view class="LoginForm">
  14. <view class="iphoneNum-box">
  15. <text class="labels">手机号</text>
  16. <input v-model="loginForm.username" type="text" placeholder="请输入手机号">
  17. </view>
  18. <view class="iphoneNum-box">
  19. <text class="labels">密码</text>
  20. <input v-model="loginForm.password" password type="text" placeholder="请输入密码">
  21. </view>
  22. <view class="ReadingAgreement">
  23. <radio
  24. style="transform:scale(0.8)" color="#CE2601" :checked="isReadAgreement"
  25. @click="isReadAgreement = !isReadAgreement"
  26. />
  27. <view class="Agreement">
  28. 我已阅读并同意<text class="redText">《巨蜂商城用户服务协议》</text>以及<text class="redText">《隐私政策》</text>
  29. </view>
  30. </view>
  31. </view>
  32. <tui-button
  33. :disabled="!isReadAgreement" type="danger" width="650rpx" margin="0 auto"
  34. height="82rpx"
  35. style="margin-top: 60rpx;" @click="handleLogin"
  36. >
  37. 立即登录
  38. </tui-button>
  39. <view class="problem">
  40. <text @click="handleClickRegister">没有账号?<text class="redText">去注册</text></text>
  41. <text>无法接收验证码?</text>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. import { userLoginApi } from '../../api/auth'
  47. import {
  48. J_USER_INFO,
  49. J_USER_TOKEN,
  50. J_TOKEN_EXPIRE,
  51. J_USER_ID,
  52. J_BRAND_ID,
  53. J_NEW_BIND_TYPE
  54. } from '../../constant'
  55. export default {
  56. name: 'Login',
  57. data() {
  58. return {
  59. redirect: '',
  60. loginForm: {
  61. username: '',
  62. password: ''
  63. },
  64. isReadAgreement: false
  65. }
  66. },
  67. onLoad(options) {
  68. this.redirect = options.redirect
  69. },
  70. methods: {
  71. handleClickRegister() {
  72. uni.reLaunch({ url: '/pages/register/register?type=register' })
  73. },
  74. handleLogin() {
  75. const { username, password } = this.loginForm
  76. if (!username || !password) {
  77. this.$showToast('手机号或密码不能为空')
  78. return
  79. }
  80. if (
  81. !/^1[3456789]\d{9}$/.test(username)
  82. ) {
  83. uni.showToast({
  84. title: '手机号格式不正确',
  85. duration: 2000,
  86. icon: 'none'
  87. })
  88. return
  89. }
  90. if (password.length < 6) {
  91. this.$showToast('密码不能小于六位')
  92. return
  93. }
  94. userLoginApi({
  95. ...this.loginForm
  96. }).then((res) => {
  97. uni.setStorageSync(J_USER_INFO, res.data.userInfo)
  98. uni.setStorageSync(J_USER_TOKEN, res.data.token)
  99. uni.setStorageSync(J_USER_ID, res.data.userInfo.userId)
  100. uni.setStorageSync(J_BRAND_ID, res.data.userInfo.brandId)
  101. uni.setStorageSync(J_TOKEN_EXPIRE, new Date(res.data.tokenExpire).getTime())
  102. this.$parent.$root.connectSocket()
  103. this.$showToast('登录成功', 'success')
  104. setTimeout(() => {
  105. if (uni.getStorageSync(J_NEW_BIND_TYPE)) {
  106. uni.redirectTo({ url: '/pages/jump/jump' })
  107. } else if (this.redirect) {
  108. uni.redirectTo({
  109. url: this.redirect
  110. })
  111. } else {
  112. this.$switchTab('/pages/store/store')
  113. }
  114. }, 2000)
  115. })
  116. }
  117. }
  118. }
  119. </script>
  120. <style lang="less" scoped>
  121. .container {
  122. box-sizing: border-box;
  123. background-color: #FFFFFF;
  124. .redText {
  125. color: #CE2601;
  126. }
  127. .register {
  128. margin-top: 30rpx;
  129. position: relative;
  130. text-align: right;
  131. padding-right: 40rpx;
  132. }
  133. .PhoneAuthentication {
  134. margin-top: 15rpx;
  135. font-family: Source Han Sans CN;
  136. width: 466rpx;
  137. height: 100rpx;
  138. display: flex;
  139. flex-direction: column;
  140. padding: 0px 30rpx;
  141. gap: 8rpx;
  142. .textRL {
  143. font-size: 44rpx;
  144. font-weight: 600;
  145. line-height: 60rpx;
  146. color: #222229;
  147. }
  148. .textTips {
  149. font-size: 24rpx;
  150. font-weight: 350;
  151. line-height: 32rpx;
  152. color: #888889;
  153. }
  154. }
  155. .LoginForm {
  156. margin-top: 50rpx;
  157. width: 750rpx;
  158. .iphoneNum-box {
  159. /* 自动布局 */
  160. margin: 0 auto;
  161. height: 114rpx;
  162. display: flex;
  163. flex-direction: row;
  164. align-items: center;
  165. gap: 32rpx;
  166. border-bottom: 2rpx solid #E6E6E8;
  167. width: 690rpx;
  168. color: #222229;
  169. .labels {
  170. font-size: 32rpx;
  171. font-weight: normal;
  172. line-height: 48rpx;
  173. }
  174. }
  175. .ReadingAgreement {
  176. width: 710rpx;
  177. margin: 0 auto;
  178. margin-top: 33rpx;
  179. gap: 32rpx;
  180. display: flex;
  181. align-items: center;
  182. font-size: 24rpx;
  183. .Agreement {
  184. margin-left: -15rpx;
  185. }
  186. }
  187. }
  188. .problem {
  189. margin: 0 auto;
  190. margin-top: 30rpx;
  191. width: 654rpx;
  192. display: flex;
  193. justify-content: space-between;
  194. font-size: 24rpx;
  195. font-weight: 350;
  196. line-height: 32rpx;
  197. color: #878788;
  198. }
  199. }
  200. </style>