user.js 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. import {
  2. CHNAGE_ELECTRONIC_CARD_INFO,
  3. CHNAGE_ELECTRONIC_LABEL_INFO
  4. } from './type'
  5. import { getStorageKeyToken, getStorageUserId } from '../../utils'
  6. import { getIdEnterpriseUserApi, getUserIdEnterpriseUserLabelApi } from '../../api/anotherTFInterface'
  7. export default {
  8. namespaced: true,
  9. state() {
  10. return {
  11. electronicCardInfo: {
  12. // enterpriseUserId: 1, // 名片ID
  13. // buyerId: 999, // 用户ID
  14. // name: '昵称', // 昵称
  15. // sex: '1', // 1男2女
  16. // birthday: '2024-09-03', // 生日
  17. // phone: '13288888888', // 注册手机号
  18. // headImage: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/微信图片_20231102095245.jpg', // 头像图片
  19. // state: 1, // 是否启用1-是,0-否
  20. // ifBlack: 1, // 是否加入黑名单 1-是0-否
  21. // isEnterprise: 1, // 是否企业 1-是 0-否
  22. // enterpriseName: '企业名称', // 企业名称
  23. // enterpriseDuties: '职务', // 职务
  24. // enterpriseDepartment: '部门', // 部门
  25. // address: '地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址', // 地址
  26. // enterpriseHeadImage: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/微信图片_20231102095245.jpg', // 企业头像
  27. // mailbox: '邮箱', // 邮箱
  28. // weChatSignal: '微信号', // 微信号
  29. // landline: '座机', // 座机
  30. // personalProfile: '个人简介', // 个人简介
  31. // label: '1,2,3,4,5,6', // 用户标签ID (1,2,3,4,5,6)
  32. // pictureIntroduction: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1705998424162-22(1)(1).png,https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1704700771949-79b9dbdacaa2a34efa5d1f62f02b614.png,https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1705540309535-124.jpg', // 图片介绍
  33. // styleId: 1, // 样式ID
  34. // createTime: '创建时间',
  35. // updateTime: '更新时间'
  36. },
  37. electronicLabelInfo: [
  38. // {
  39. // labelId: '标签Id',
  40. // labelName: '标签名称',
  41. // enterpriseUserId: '关联名片ID',
  42. // createTime: '创建时间',
  43. // updateTime: '更新时间'
  44. // }
  45. ]
  46. }
  47. },
  48. mutations: {
  49. [CHNAGE_ELECTRONIC_CARD_INFO](state, electronicCardInfo) {
  50. state.electronicCardInfo = electronicCardInfo
  51. },
  52. [CHNAGE_ELECTRONIC_LABEL_INFO](state, electronicLabelInfo) {
  53. state.electronicLabelInfo = electronicLabelInfo
  54. }
  55. },
  56. actions: {
  57. getElectronicCardAction({ state, dispatch, commit }) {
  58. return new Promise((resolve, reject) => {
  59. if (!getStorageKeyToken()) return reject('缺少个人信息')
  60. getIdEnterpriseUserApi({ id: getStorageUserId() })
  61. .then((res) => {
  62. console.log(res.data)
  63. commit(CHNAGE_ELECTRONIC_CARD_INFO, res.data)
  64. resolve(res.data)
  65. })
  66. .catch((err) => {
  67. reject(err)
  68. })
  69. })
  70. },
  71. getElectronicLabelAction({ state, dispatch, commit }, { id }) {
  72. return new Promise((resolve, reject) => {
  73. if (!getStorageKeyToken()) return reject('缺少个人信息')
  74. getUserIdEnterpriseUserLabelApi({ enterpriseUserId: id })
  75. .then((res) => {
  76. commit(CHNAGE_ELECTRONIC_LABEL_INFO, res.data || [])
  77. resolve(res.data || [])
  78. })
  79. .catch((err) => {
  80. reject(err)
  81. })
  82. })
  83. }
  84. }
  85. }