auth.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. import { T_REDIRECT_TYPE, USER_INFO, USER_ID, USER_TOKEN, T_USER_TOKEN, T_STORAGE_KEY, clearAllCache } from '../../constant'
  2. import { A_TF_MAIN } from '../../config'
  3. import { CHNAGE_USER_INFO, CHNAGE_USER_TOKEN, CHNAGE_USER_IDENTITY } from './type'
  4. import store from '../index'
  5. import { getUrlCode } from '../../utils'
  6. import { getIsShopByUserApi, updatePhoneLoginRegisterApi, updateWXLoginApi, updateWXAppLoginApi, updateAlipayLoginApi, getUserInfoApi, updateUserInfoApi } from '../../api/anotherTFInterface'
  7. export default {
  8. namespaced: true,
  9. state() {
  10. return {
  11. userInfo: uni.getStorageSync(T_STORAGE_KEY) || {}, // 新团蜂的
  12. userToken: uni.getStorageSync(T_USER_TOKEN) || '', // 新团蜂的
  13. identityInfo: {
  14. type: [], // 9商家或8商家员工,1加盟商,2代理商
  15. shopInfo: {}
  16. }
  17. }
  18. },
  19. mutations: {
  20. [CHNAGE_USER_INFO](state, userInfo) {
  21. state.userInfo = userInfo
  22. uni.setStorageSync(T_STORAGE_KEY, userInfo)
  23. },
  24. [CHNAGE_USER_TOKEN](state, token) {
  25. state.userToken = token
  26. uni.setStorageSync(T_USER_TOKEN, token)
  27. },
  28. [CHNAGE_USER_IDENTITY](state, data) {
  29. if (data.type) state.identityInfo.type = data.type
  30. if (data.shopInfo) state.identityInfo.shopInfo = data.shopInfo
  31. }
  32. },
  33. actions: {
  34. // 手机验证码登录或手机密码登录或手机验证码密码注册
  35. phoneLoginRegisterAction({ state, commit, dispatch }, { isAfter, loginData } = { loginData: {} }) {
  36. return new Promise((resolve, reject) => {
  37. uni.showLoading({ mask: true })
  38. updatePhoneLoginRegisterApi({ ...loginData })
  39. .then(({ data }) => {
  40. console.log(data)
  41. if (data.phone && data.oldShopUserInfo && data.oldShopUserInfo.userInfo && data.oldShopUserInfo.userInfo.phone) {
  42. try {
  43. uni.hideLoading()
  44. uni.showToast({ title: '登录成功', icon: 'none' })
  45. if (isAfter) dispatch('LoginAfterAction', { type: 'phone', data })
  46. resolve(data)
  47. } catch (err) {
  48. uni.hideLoading()
  49. uni.showToast({ title: JSON.stringify(err), icon: 'none' })
  50. reject(err)
  51. }
  52. } else {
  53. uni.hideLoading()
  54. uni.showToast({ title: '系统错误,未能注册手机号', icon: 'none' })
  55. reject()
  56. }
  57. })
  58. .catch((err) => {
  59. uni.hideLoading()
  60. // // #ifdef MP
  61. // uni.showToast({ title: (err && err.message) || JSON.stringify(err), icon: 'none' })
  62. // // #endif
  63. reject(err)
  64. })
  65. })
  66. },
  67. // 微信登陆
  68. wxLoginAction({ state, commit, dispatch }, { isAfter, pageUrl } = {}) {
  69. uni.showLoading({ mask: true })
  70. return new Promise((resolve, reject) => {
  71. const loginData = {
  72. terminal: store.state.app.terminal,
  73. headImage: '',
  74. code: ''
  75. }
  76. if ((loginData.terminal === 6) || (loginData.terminal === 3)) {
  77. loginData.terminal = 3
  78. const appid = 'wxb19ccb829623be12' // 团蜂wxb19ccb829623be12,新巨蜂wx603b04a561e4683e,别的wxdf390bb4f8a67641
  79. const local = store.state.app.isInMiniProgram ? `${A_TF_MAIN}/#${pageUrl || '/pages/login/login'}?miniProgram=1` : `${A_TF_MAIN}/#${pageUrl || '/pages/login/login'}`
  80. const code = getUrlCode().code
  81. if (!code) {
  82. // 如https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxb19ccb829623be12&redirect_uri=http%3A%2F%2Flocalhost%3A8988%2FTFShop_Uni_H5%2F%23%2Fpages%2Flogin%2Flogin&response_type=code&scope=snsapi_userinfo#wechat_redirect
  83. window.location.href =
  84. 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' +
  85. appid +
  86. '&redirect_uri=' +
  87. encodeURIComponent(local) +
  88. '&response_type=code&scope=snsapi_userinfo#wechat_redirect'
  89. } else {
  90. updateWXLoginApi({ ...loginData, code })
  91. .then(({ data }) => {
  92. try {
  93. uni.hideLoading()
  94. if (isAfter) dispatch('LoginAfterAction', { type: 'wx', data })
  95. resolve(data)
  96. } catch (err) {
  97. uni.hideLoading()
  98. uni.showToast({ title: JSON.stringify(err), icon: 'none' })
  99. reject(err)
  100. }
  101. })
  102. .catch((err) => {
  103. uni.hideLoading()
  104. reject(err)
  105. })
  106. }
  107. } else if (loginData.terminal === 5) {
  108. uni.hideLoading()
  109. uni.showToast({ title: '暂不支持!', icon: 'none' })
  110. reject()
  111. } else if (loginData.terminal === 1) {
  112. uni.login({
  113. provider: 'weixin',
  114. success(loginRes) {
  115. uni.getUserInfo({ // 获取用户信息
  116. provider: 'weixin',
  117. success(infoRes) {
  118. updateWXAppLoginApi({ wechatOpenId: infoRes.userInfo.openId }).then(({ data }) => {
  119. uni.hideLoading()
  120. if (isAfter) dispatch('LoginAfterAction', { type: 'wx', data: { ...data, wechatOpenId: infoRes.userInfo.openId, headImage: infoRes.userInfo.avatarUrl } })
  121. resolve(data)
  122. })
  123. .catch((err) => {
  124. uni.hideLoading()
  125. reject(err)
  126. })
  127. },
  128. fail: (err) => {
  129. uni.hideLoading()
  130. uni.showToast({ title: '微信登录授权失败', icon: 'none' })
  131. reject(err)
  132. }
  133. })
  134. },
  135. fail: (err) => {
  136. uni.hideLoading()
  137. uni.showToast({ title: '微信登录授权失败', icon: 'none' })
  138. reject(err)
  139. }
  140. })
  141. } else if (loginData.terminal === 2) {
  142. uni.login({
  143. provider: 'weixin',
  144. success: (res) => {
  145. loginData.code = res.code
  146. },
  147. fail: (err) => {
  148. uni.hideLoading()
  149. uni.showToast({ title: '微信登录授权失败', icon: 'none' })
  150. }
  151. })
  152. uni.getUserProfile({
  153. desc: '正在获取', // 不写不弹提示框
  154. success: (res) => {
  155. updateWXLoginApi({ ...loginData, headImage: res.userInfo.avatarUrl })
  156. .then((data) => {
  157. uni.hideLoading()
  158. if (isAfter) dispatch('LoginAfterAction', { type: 'wx', data })
  159. resolve(data)
  160. })
  161. .catch((err) => {
  162. uni.hideLoading()
  163. reject(err)
  164. })
  165. },
  166. fail: (err) => {
  167. uni.hideLoading()
  168. uni.showToast({ title: '微信登录授权失败', icon: 'none' })
  169. reject(err)
  170. }
  171. })
  172. } else if (loginData.terminal === 4) {
  173. uni.hideLoading()
  174. uni.showToast({ title: '暂不支持!', icon: 'none' })
  175. reject()
  176. } else {
  177. uni.hideLoading()
  178. uni.showToast({ title: '未能获取系统信息', icon: 'none' })
  179. reject()
  180. }
  181. })
  182. },
  183. // 支付宝登陆
  184. aliPayLoginAction({ commit, dispatch }, { isAfter } = {}) {
  185. uni.showLoading({ mask: true })
  186. return new Promise((resolve, reject) => {
  187. uni.login({
  188. provider: 'alipay',
  189. scopes: 'auth_user',
  190. success(res) {
  191. updateAlipayLoginApi({
  192. code: res.authCode
  193. })
  194. .then(({ data }) => {
  195. uni.hideLoading()
  196. if (isAfter) dispatch('LoginAfterAction', { type: 'alipay', data })
  197. resolve(data)
  198. })
  199. .catch((err) => {
  200. uni.hideLoading()
  201. reject(err)
  202. })
  203. }
  204. })
  205. })
  206. },
  207. LoginAfterAction({ state, commit, dispatch }, { type, data }) {
  208. try {
  209. const tabbarList = ['pages/index/index', 'pages/business-district/business-district', '/pages/community-center/community-center', 'pages/order/order', '/pages/user/user']
  210. const redirect = uni.getStorageSync(T_REDIRECT_TYPE)
  211. console.log(type)
  212. if (type === 'phone') {
  213. setTimeout(() => {
  214. uni.setStorageSync(USER_ID, data.oldShopUserInfo.userInfo.userId)
  215. uni.setStorageSync(USER_TOKEN, data.oldShopUserInfo.token)
  216. uni.setStorageSync(USER_INFO, data.oldShopUserInfo.userInfo)
  217. commit(CHNAGE_USER_TOKEN, data.token)
  218. commit(CHNAGE_USER_INFO, data)
  219. if (data.roleId) commit(CHNAGE_USER_IDENTITY, { type: [ ...new Set([...state.identityInfo.type, data.roleId]) ] })
  220. dispatch('updateIdentityInfo')
  221. if (redirect) {
  222. uni.removeStorageSync(T_REDIRECT_TYPE)
  223. if (tabbarList.includes(this.redirect)) {
  224. uni.switchTab({
  225. url: this.redirect
  226. })
  227. } else {
  228. uni.redirectTo({
  229. url: this.redirect
  230. })
  231. }
  232. // } else if (uni.getStorageSync(T_NEW_BIND_TYPE)) {
  233. // uni.redirectTo({
  234. // url: '/pages/jump/jump'
  235. // })
  236. } else {
  237. uni.switchTab({
  238. url: '/pages/index/index'
  239. })
  240. }
  241. }, 2000)
  242. } else if (type === 'wx') {
  243. if (data.ifFirst == 0) {
  244. if (data.phone && data.oldShopUserInfo && data.oldShopUserInfo.userInfo && data.oldShopUserInfo.userInfo.phone) {
  245. uni.setStorageSync(USER_ID, data.oldShopUserInfo.userInfo.userId)
  246. uni.setStorageSync(USER_TOKEN, data.oldShopUserInfo.token)
  247. uni.setStorageSync(USER_INFO, data.oldShopUserInfo.userInfo)
  248. commit(CHNAGE_USER_TOKEN, data.token)
  249. commit(CHNAGE_USER_INFO, data)
  250. if (data.roleId) commit(CHNAGE_USER_IDENTITY, { type: [ ...new Set([...state.identityInfo.type, data.roleId]) ] })
  251. dispatch('updateIdentityInfo')
  252. if (this.redirect) {
  253. uni.removeStorageSync(T_REDIRECT_TYPE)
  254. window.location.replace(`${A_TF_MAIN}/#${this.redirect}`)
  255. // } else if (uni.getStorageSync(T_NEW_BIND_TYPE)) {
  256. // window.location.replace(`${A_TF_MAIN}/#/pages/jump/jump`)
  257. } else {
  258. window.location.replace(`${A_TF_MAIN}/#/`)
  259. }
  260. } else if (data.phone && (!data.oldShopUserInfo || !data.oldShopUserInfo.userInfo)) {
  261. uni.showToast({ title: '系统错误,未能同步用户数据', icon: 'none' })
  262. } else if (data.phone && data.oldShopUserInfo && data.oldShopUserInfo.userInfo && !data.oldShopUserInfo.userInfo.phone) {
  263. uni.showToast({ title: '系统错误,未能同步用户手机号', icon: 'none' })
  264. } else {
  265. uni.showToast({ title: '未能识别的错误', icon: 'none' })
  266. }
  267. } else {
  268. window.location.replace(`${A_TF_MAIN}/#/another-tf/another-serve/bindPhone/index?wechatOpenId=${data.wechatOpenId || ''}&headImage=${data.headImage || ''}&wechatName=${data.wechatName || ''}&buyerUserId=${data.buyerUserId || ''}`) // data=${JSON.stringify(data)}&
  269. }
  270. } else if (type === 'alipay') {
  271. if (data.ifFirst == 0) {
  272. uni.setStorageSync(USER_ID, data.oldShopUserInfo.userInfo.userId)
  273. uni.setStorageSync(USER_TOKEN, data.oldShopUserInfo.token)
  274. uni.setStorageSync(USER_INFO, data.oldShopUserInfo.userInfo)
  275. commit(CHNAGE_USER_TOKEN, data.token)
  276. commit(CHNAGE_USER_INFO, data)
  277. if (data.roleId) commit(CHNAGE_USER_IDENTITY, { type: [ ...new Set([...state.identityInfo.type, data.roleId]) ] })
  278. dispatch('updateIdentityInfo')
  279. if (redirect) {
  280. uni.removeStorageSync(T_REDIRECT_TYPE)
  281. if (tabbarList.includes(this.redirect)) {
  282. uni.switchTab({
  283. url: this.redirect
  284. })
  285. } else {
  286. uni.redirectTo({
  287. url: this.redirect
  288. })
  289. }
  290. // } else if (uni.getStorageSync(T_NEW_BIND_TYPE)) {
  291. // uni.redirectTo({
  292. // url: '/pages/jump/jump'
  293. // })
  294. } else {
  295. uni.switchTab({
  296. url: '/pages/index/index'
  297. })
  298. }
  299. } else { // 第一次登录,绑定手机号
  300. uni.redirectTo({
  301. url: `/another-tf/another-serve/bindPhone/index?wechatOpenId=${data.wechatOpenId || ''}&headImage=${data.headImage || ''}&wechatName=${data.wechatName || ''}&buyerUserId=${data.buyerUserId || ''}`
  302. })
  303. }
  304. }
  305. } catch (err) {
  306. uni.showToast({ title: JSON.stringify(err), icon: 'none' })
  307. }
  308. },
  309. logoutAction({ commit }, isQuiet) {
  310. uni.removeStorageSync(USER_ID)
  311. uni.removeStorageSync(USER_INFO)
  312. uni.removeStorageSync(USER_TOKEN)
  313. uni.removeStorageSync(T_USER_TOKEN)
  314. commit(CHNAGE_USER_INFO, {})
  315. commit(CHNAGE_USER_TOKEN, '')
  316. clearAllCache()
  317. if (isQuiet) {
  318. uni.showToast({ title: '退出成功', icon: 'none' })
  319. setTimeout(() => {
  320. uni.switchTab({
  321. url: '/pages/index/index'
  322. })
  323. }, 2000)
  324. }
  325. },
  326. updateUserInfoAction({ state, dispatch }, updateData) {
  327. return new Promise((resolve, reject) => {
  328. uni.showLoading()
  329. updateUserInfoApi(updateData)
  330. .then((res) => {
  331. uni.hideLoading()
  332. uni.showToast({ title: '修改成功', icon: 'success' })
  333. dispatch('refrshUserInfoAction')
  334. resolve(res)
  335. })
  336. .catch((err) => {
  337. uni.hideLoading()
  338. reject(err)
  339. })
  340. })
  341. },
  342. // 刷新用户信息
  343. refrshUserInfoAction({ state, dispatch, commit }, cb) {
  344. return new Promise((resolve, reject) => {
  345. getUserInfoApi({})
  346. .then((res) => {
  347. // if (uni.getStorageSync(USER_ID)) {
  348. // refrshUserInfoApi({
  349. // userId: uni.getStorageSync(USER_ID)
  350. // })
  351. // .then((result) => {
  352. // uni.setStorageSync(USER_ID, result.data.userId)
  353. // uni.setStorageSync(USER_INFO, result.data)
  354. const tempUserInfo = uni.getStorageSync(T_STORAGE_KEY)
  355. commit(CHNAGE_USER_INFO, Object.assign(res.data, {
  356. ifFirst: tempUserInfo.ifFirst,
  357. oldShopUserInfo: tempUserInfo.oldShopUserInfo,
  358. refreshToken: tempUserInfo.refreshToken,
  359. sessionKey: tempUserInfo.sessionKey,
  360. ssoUserInfo: tempUserInfo.ssoUserInfo,
  361. token: tempUserInfo.token
  362. }))
  363. if (res.data.roleId) commit(CHNAGE_USER_IDENTITY, { type: [ ...new Set([...state.identityInfo.type, res.data.roleId]) ] })
  364. dispatch('updateIdentityInfo')
  365. // cb && typeof cb === 'function' && cb(result.data)
  366. // resolve(result.data)
  367. cb && typeof cb === 'function' && cb()
  368. resolve()
  369. // })
  370. // .catch((err) => {
  371. // reject(err)
  372. // })
  373. // } else {
  374. // reject()
  375. // }
  376. })
  377. .catch((err) => {
  378. reject(err)
  379. })
  380. })
  381. },
  382. // 获取身份(是否商家)等
  383. updateIdentityInfo({ state, dispatch, commit }) {
  384. return new Promise(async (resolve, reject) => {
  385. // const userInfo = uni.getStorageSync(T_STORAGE_KEY)
  386. // if (userInfo && userInfo.phone) {
  387. // getIsShopByUserApi({ mobile: userInfo.phone })
  388. // .then(async (res) => {
  389. // if (res.data && res.data.shopId) {
  390. // if (res.data.staff) {
  391. // commit(CHNAGE_USER_IDENTITY, { type: [ ...new Set([...state.identityInfo.type, 8]) ], shopInfo: res.data || {} })
  392. // } else {
  393. // commit(CHNAGE_USER_IDENTITY, { type: [ ...new Set([...state.identityInfo.type, 9]) ], shopInfo: res.data || {} })
  394. // }
  395. // }
  396. // resolve(res.data)
  397. try {
  398. const cardInfo = await store.dispatch('user/getElectronicCardAction')
  399. if (cardInfo.enterpriseUserId) await store.dispatch('user/getElectronicLabelAction', { id: cardInfo.enterpriseUserId })
  400. resolve()
  401. } catch (err) {
  402. reject(err)
  403. }
  404. // })
  405. // .catch((err) => {
  406. // uni.hideToast()
  407. // reject(err)
  408. // })
  409. // }
  410. })
  411. }
  412. }
  413. }