login copy.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <template>
  2. <view class="container">
  3. <view style="padding: 68upx 0 0 56upx;color: #ffffff;">
  4. <view style="font-weight: bold;font-style: oblique;">
  5. <view style="font-size: 58upx;">欢迎来到</view>
  6. <view style="font-size: 62upx;">巨蜂本地生活</view>
  7. </view>
  8. <view style="margin-top: 12upx;;font-size: 30upx;">
  9. <text>数字化营销的领跑者</text>
  10. </view>
  11. </view>
  12. <view style="display: flex;flex-direction: column;justify-content: center;align-items: center;margin-top: 80upx;">
  13. <view
  14. v-if="(loginForm.terminal === 3) || (loginForm.terminal === 2)" style="text-align: center;"
  15. @click="handleWXLogin"
  16. >
  17. <image style="width: 118upx;height: 98upx;" src="../../static/images/icon/we-chat.png" mode="" />
  18. <tui-button type="white" width="480rpx" height="82rpx" margin="40upx 0 0" shape="circle" @click="handleWXLogin">
  19. 微信一键登录
  20. </tui-button>
  21. </view>
  22. <!-- #ifdef MP-ALIPAY -->
  23. <tui-button type="danger" width="480rpx" height="82rpx" margin="70upx 0 0" shape="circle">
  24. 支付宝登录
  25. </tui-button>
  26. <!-- #endif -->
  27. <tui-button
  28. type="white" width="480rpx" height="82rpx" margin="70upx 0 0"
  29. shape="circle"
  30. @click="$switchTab('/pages/index/index')"
  31. >
  32. 去首页逛逛
  33. </tui-button>
  34. </view>
  35. <view class="otherLoginButton">
  36. <view class="orderButtonItem">
  37. <view style="display: flex;flex-direction: column;align-items: center;">
  38. <view style="width: fit-content;padding: 12upx;background-color: #ffffff;border-radius: 48upx;">
  39. <tui-icon name="pwd" color="#ce2601" :size="24" @click="go('/pages/login/accountLogin')"></tui-icon>
  40. </view>
  41. <view style="margin-top: 12upx;font-size: 26upx;color: #ffffff;">密码登录</view>
  42. </view>
  43. <view style="display: flex;flex-direction: column;align-items: center;">
  44. <view style="width: fit-content;padding: 12upx;background-color: #ffffff;border-radius: 48upx;">
  45. <tui-icon
  46. name="wealth-fill" color="#ce2601" :size="24"
  47. @click="$redirectTo('/pages/register/register?type=register')"
  48. ></tui-icon>
  49. </view>
  50. <view style="margin-top: 12upx;font-size: 26upx;color: #ffffff;">注册</view>
  51. </view>
  52. <view style="display: flex;flex-direction: column;align-items: center;">
  53. <view style="width: fit-content;padding: 12upx;background-color: #ffffff;border-radius: 48upx;">
  54. <tui-icon
  55. name="mail-fill" color="#ce2601" :size="24"
  56. @click="$redirectTo('/pages/register/register?type=forgetPwd')"
  57. ></tui-icon>
  58. </view>
  59. <view style="margin-top: 12upx;font-size: 26upx;color: #ffffff;">找回密码</view>
  60. </view>
  61. </view>
  62. </view>
  63. <view class="agreement">
  64. 登录即同意<text class="colorText">《联通统一认证服务条款》</text>和<text class="colorText">《巨蜂商城用户 服务协议》</text>、<text
  65. class="colorText"
  66. >
  67. 《隐私政策》
  68. </text>并使用本机号码登陆
  69. </view>
  70. </view>
  71. </template>
  72. <script>
  73. import { userLoginApi, wxLoginApi, updateNotBindingWxPhone } from '../../api/auth'
  74. import {
  75. J_USER_INFO,
  76. J_USER_TOKEN,
  77. J_TOKEN_EXPIRE,
  78. J_USER_ID,
  79. J_BRAND_ID,
  80. J_NEW_BIND_TYPE
  81. } from '../../constant'
  82. import { getUrlCode, isInWx } from '../../utils'
  83. export default {
  84. name: 'Login',
  85. data() {
  86. return {
  87. type: '',
  88. redirect: '',
  89. loginForm: {
  90. username: '',
  91. password: '',
  92. terminal: ''
  93. }
  94. }
  95. },
  96. onLoad(options) {
  97. if (isInWx()) {
  98. this.loginForm.terminal = 3
  99. } else {
  100. // #ifdef H5
  101. this.loginForm.terminal = 5 // H5包含pc和移动端浏览器和微信浏览器的可能
  102. // #endif
  103. // #ifdef APP
  104. this.loginForm.terminal = 1
  105. // #endif
  106. // #ifdef MP-WEIXIN
  107. this.loginForm.terminal = 2
  108. // #endif
  109. // #ifdef MP-ALIPAY
  110. this.loginForm.terminal = 4
  111. // #endif
  112. }
  113. this.type = options.type
  114. this.redirect = options.redirect
  115. if (this.type === 'register') {
  116. this.$showToast('注册成功', 'success')
  117. } else if (uni.getStorageSync(J_NEW_BIND_TYPE)) {
  118. if (uni.getStorageSync(J_USER_ID) && uni.getStorageSync(J_USER_INFO)) {
  119. uni.redirectTo({ url: '/pages/jump/jump' })
  120. }
  121. } else if (this.type === 'forget') {
  122. this.$showToast('密码重置成功', 'success')
  123. }
  124. },
  125. onShow() {
  126. // #ifdef H5
  127. const code = getUrlCode().code
  128. if (code) this.handleWXLogin()
  129. // #endif
  130. },
  131. methods: {
  132. handleLogin() {
  133. const { username, password } = this.loginForm
  134. if (!username || !password) {
  135. this.$showToast('手机号或密码不能为空')
  136. return
  137. }
  138. if (
  139. !/^1[3456789]\d{9}$/.test(username)
  140. ) {
  141. uni.showToast({
  142. title: '手机号格式不正确',
  143. duration: 2000,
  144. icon: 'none'
  145. })
  146. return
  147. }
  148. if (password.length < 6) {
  149. this.$showToast('密码不能小于六位')
  150. return
  151. }
  152. userLoginApi({
  153. ...this.loginForm
  154. }).then((res) => {
  155. uni.setStorageSync(J_USER_INFO, res.data.userInfo)
  156. uni.setStorageSync(J_USER_TOKEN, res.data.token)
  157. uni.setStorageSync(J_USER_ID, res.data.userInfo.userId)
  158. uni.setStorageSync(J_BRAND_ID, res.data.userInfo.brandId)
  159. uni.setStorageSync(J_TOKEN_EXPIRE, new Date(res.data.tokenExpire).getTime())
  160. this.$parent.$root.connectSocket()
  161. this.$showToast('登录成功', 'success')
  162. this.handleLoginSuccess()
  163. })
  164. },
  165. // 点击微信登录
  166. async handleWXLogin() {
  167. // #ifdef H5
  168. const appid = 'wx603b04a561e4683e'
  169. const local = 'https://h5.jfcmei.com/#/pages/login/login'
  170. const code = getUrlCode().code
  171. // console.log('获取code', code)
  172. if (code === null || code === undefined || code === '') {
  173. window.location.href =
  174. 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' +
  175. appid +
  176. '&redirect_uri=' +
  177. encodeURIComponent(local) +
  178. '&response_type=code&scope=snsapi_userinfo#wechat_redirect'
  179. } else {
  180. const { data } = await wxLoginApi({ code })
  181. console.log(data) // {token,status,userInfo}
  182. uni.setStorageSync(J_USER_ID, data.userInfo.userId)
  183. uni.setStorageSync(J_USER_INFO, data.userInfo)
  184. uni.setStorageSync(J_USER_TOKEN, data.token)
  185. this.$parent.$root.connectSocket()
  186. // ofxYi6eg9rdj8qZx3rwSecysgePo
  187. if (!data.status) {
  188. uni.showModal({
  189. title: '提示',
  190. content: '您还未绑定手机号,请先绑定',
  191. success: ({ confirm }) => {
  192. if (confirm) {
  193. uni.navigateTo({
  194. url: '/pages/login/bind-phone?openId=' + data.userInfo.openId
  195. })
  196. } else {
  197. uni.showLoading()
  198. updateNotBindingWxPhone({
  199. // openId: data.userInfo.openId,
  200. // nickname: data.userInfo.nickname,
  201. // sex: data.userInfo.gender,
  202. // headimgurl: data.userInfo.avatarUrl,
  203. // unionid: data.userInfo.unionid
  204. ...data.userInfo
  205. })
  206. .then((res) => {
  207. uni.hideLoading()
  208. this.$showToast('正在跳转...')
  209. this.handleLoginSuccess('WX')
  210. })
  211. .catch(() => {
  212. uni.removeStorageSync(J_USER_ID, data.userInfo.userId)
  213. uni.removeStorageSync(J_USER_INFO, data.userInfo)
  214. uni.removeStorageSync(J_USER_TOKEN, data.token)
  215. uni.hideLoading()
  216. })
  217. }
  218. }
  219. })
  220. } else {
  221. this.$showToast('登录成功', 'success')
  222. this.handleLoginSuccess('WX')
  223. }
  224. }
  225. // #endif
  226. },
  227. handleLoginSuccess(type) {
  228. if (type === 'WX') {
  229. setTimeout(() => {
  230. if (uni.getStorageSync(J_NEW_BIND_TYPE)) {
  231. window.location.replace('https://h5.jfcmei.com/#/pages/jump/jump')
  232. } else if (this.redirect) {
  233. window.location.replace(`https://h5.jfcmei.com/#${this.redirect}`)
  234. } else {
  235. window.location.replace('https://h5.jfcmei.com/#/pages/store/store')
  236. }
  237. }, 2000)
  238. } else {
  239. setTimeout(() => {
  240. if (uni.getStorageSync(J_NEW_BIND_TYPE)) {
  241. uni.redirectTo({ url: '/pages/jump/jump' })
  242. } else if (this.redirect) {
  243. uni.redirectTo({
  244. url: this.redirect
  245. })
  246. } else {
  247. this.$switchTab('/pages/store/store')
  248. }
  249. }, 2000)
  250. }
  251. }
  252. }
  253. }
  254. </script>
  255. <style lang="less" scoped>
  256. .container {
  257. background-color: #b9452b;
  258. min-height: 100vh;
  259. .otherLoginButton {
  260. margin-top: 195rpx;
  261. display: flex;
  262. flex-direction: column;
  263. align-items: center;
  264. .orderButtonItem {
  265. display: flex;
  266. justify-content: space-around;
  267. white-space: nowrap;
  268. &>view:not(:first-child) {
  269. padding-left: 48upx;
  270. }
  271. }
  272. }
  273. .agreement {
  274. margin-top: 120rpx;
  275. padding: 75upx;
  276. font-size: 24rpx;
  277. text-align: center;
  278. color: #000000;
  279. .colorText {
  280. color: #faf9f9;
  281. }
  282. }
  283. }
  284. </style>