auth.js 14 KB

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