app.ts 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. import * as api from '@/api/index'
  2. import {getUserInfo, getUserRoleList} from "@/api/modules/ztpt";
  3. const state = {
  4. apiProxy: {
  5. ztptApi: 'api-ztpt', // 总体平台基本接口
  6. },
  7. userInfo: <any>{},
  8. userRoleList: [],
  9. zby: false,
  10. timestamp: new Date().getTime()
  11. }
  12. const getters = {
  13. isZBY: (state) => {
  14. return state.zby
  15. }
  16. }
  17. const mutations = {
  18. SET_USER_INFO(state: any, data: object) {
  19. state.userInfo = data
  20. },
  21. SET_USER_ROLE(state: any, data: object) {
  22. state.userRoleList = data
  23. },
  24. SET_TIMESTAMP(state: any, data: any) {
  25. state.timestamp = new Date(data).getTime()
  26. setInterval(() => {
  27. state.timestamp += 1000
  28. }, 1000)
  29. },
  30. }
  31. const actions = {
  32. LOAD_USER_INFO({ commit }: any, refresh: boolean = false) {
  33. return new Promise((resolve, reject) => {
  34. if (refresh || !state.userInfo?.userId) {
  35. Promise.all([
  36. getUserInfo(),
  37. getUserRoleList()
  38. ]).then(([u, r]) => {
  39. if (u.code === 0 && r.code === 0) {
  40. commit('SET_USER_INFO', u.userInfo)
  41. commit('SET_USER_ROLE', r.userRoleList)
  42. resolve({u: u.userInfo, r: r.userRoleList})
  43. } else {
  44. reject(u.msg || r.msg)
  45. }
  46. })
  47. } else {
  48. resolve(state.userInfo)
  49. }
  50. })
  51. },
  52. LOAD_TIMESTAMP({ commit }: any) {
  53. const date = new Date('2022-09-18 10:20:32')
  54. commit('SET_TIMESTAMP', date)
  55. },
  56. }
  57. export default {
  58. namespaced: true,
  59. state,
  60. getters,
  61. mutations,
  62. actions
  63. }