app.ts 350 B

12345678910111213141516171819202122232425262728
  1. import * as api from '@/api/index'
  2. // import {getUserInfo} from "@/api/modules/global/global";
  3. const state = {
  4. apiProxy: {
  5. EzServer6Api: 'EzServer6-api', // 地图底图代理
  6. },
  7. userInfo: <any>{},
  8. }
  9. const getters = {
  10. }
  11. const mutations = {
  12. }
  13. const actions = {
  14. }
  15. export default {
  16. namespaced: true,
  17. state,
  18. getters,
  19. mutations,
  20. actions
  21. }