user.js 824 B

123456789101112131415161718192021222324252627282930313233343536
  1. import {
  2. CHNAGE_ELECTRONIC_CARD_INFO
  3. } from './type'
  4. import { getStorageKeyToken, getStorageUserId } from '../../utils'
  5. import { getIdEnterpriseUserApi } from '../../api/anotherTFInterface'
  6. export default {
  7. namespaced: true,
  8. state() {
  9. return {
  10. electronicCardInfo: {}
  11. }
  12. },
  13. mutations: {
  14. [CHNAGE_ELECTRONIC_CARD_INFO](state, electronicCardInfo) {
  15. state.electronicCardInfo = electronicCardInfo
  16. }
  17. },
  18. actions: {
  19. getElectronicCardAction({ state, dispatch, commit }) {
  20. return new Promise((resolve, reject) => {
  21. if (!getStorageKeyToken()) return reject('缺少个人信息')
  22. getIdEnterpriseUserApi({ id: getStorageUserId() })
  23. .then((res) => {
  24. commit(CHNAGE_ELECTRONIC_CARD_INFO, res.data)
  25. resolve(res.data)
  26. })
  27. .catch((err) => {
  28. reject(err)
  29. })
  30. })
  31. }
  32. }
  33. }