shopro.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import http from '@/shopro/request/index'
  2. import share from '@/shopro/share';
  3. const state = {
  4. shop: {}, // 商城信息
  5. wechat: {}, // 微信配置
  6. share: {}, // 分享配置
  7. payment: {}, // 支付配置
  8. addons: [], // 插件配置
  9. chat: uni.getStorageSync("chat") || {}, // 客服配置
  10. store: {}, // 商城信息
  11. tabbarData: [], //自定义底部导航数据
  12. recharge: uni.getStorageSync("recharge") || {}, //充值配置
  13. homeTemplate: [], // 首页模板数据
  14. userTemplate: [], // 个人中心模板数据
  15. floatData: {}, // 悬浮按钮数据
  16. popupData: {}, // 弹窗数据
  17. hasTemplate: true, //是否有模板数据
  18. shareInfo: {} // 默认分享数据
  19. }
  20. const getters = {
  21. initShop: state => state.shop,
  22. initStore: state => state.store,
  23. initShare: state => state.share,
  24. initPayment: state => state.payment,
  25. initAddons: state => state.addons,
  26. initChat: state => state.chat,
  27. initWechat: state => state.wechat,
  28. initRecharge: state => state.recharge,
  29. hasTemplate: state => state.hasTemplate,
  30. homeTemplate: state => state.homeTemplate,
  31. userTemplate: state => state.userTemplate,
  32. floatData: state => state.floatData,
  33. popupData: state => state.popupData,
  34. tabbarData: state => state.tabbarData,
  35. shareInfo: state => state.shareInfo
  36. }
  37. const actions = {
  38. // 初始化数据
  39. async appInit({
  40. commit,
  41. dispatch
  42. }, options) {
  43. const result = await http('common.init');
  44. if (result.code === 1) {
  45. commit('CONFIG', result.data);
  46. if (!options?.query?.token) {
  47. dispatch('autoLogin');
  48. }
  49. return result.data;
  50. }
  51. return false;
  52. },
  53. // 获取模板数据
  54. async getTemplate({
  55. commit
  56. }, options) {
  57. let shop_id = 0;
  58. // #ifdef H5
  59. if (options?.query.shop_id) {
  60. shop_id = options.query.shop_id;
  61. }
  62. // #endif
  63. // #ifdef MP
  64. if (options?.query.scene) {
  65. let scene = decodeURIComponent(options?.query.scene);
  66. let sceneObj = scene.split('=');
  67. if (sceneObj[0] === 'shop_id') {
  68. shop_id = sceneObj[1]
  69. }
  70. }
  71. // #endif
  72. const result = await http('common.template', shop_id ? {
  73. shop_id
  74. } : {});
  75. if (result.code === 1) {
  76. commit("hasTemplate", true);
  77. commit('TEMPLATE', result.data);
  78. return result.data;
  79. } else {
  80. commit("hasTemplate", false);
  81. return false;
  82. }
  83. },
  84. // 同步路由到后端
  85. syncPages({
  86. commit
  87. }) {
  88. http('common.syncPages', {
  89. data: ROUTES,
  90. })
  91. },
  92. }
  93. const mutations = {
  94. CONFIG(state, payload) {
  95. Object.keys(payload).forEach(k => {
  96. state[k] = payload[k];
  97. if (k === 'chat') {
  98. uni.setStorageSync("chat", payload[k]);
  99. }
  100. if (k === 'recharge') {
  101. uni.setStorageSync("recharge", payload[k])
  102. }
  103. })
  104. },
  105. TEMPLATE(state, data) {
  106. state.template = data;
  107. state.homeTemplate = data.home
  108. state.userTemplate = data.user
  109. state.floatData = data['float-button']?. [0]?.content
  110. state.popupData = {}
  111. state.tabbarData = data?.tabbar?. [0]?.content
  112. },
  113. hasTemplate(state, data) {
  114. state.hasTemplate = data
  115. },
  116. // 弹窗一次的话,关闭的时候删除数据。
  117. delPopup(state, index) {
  118. let popupData = state.popupData;
  119. popupData.list.splice(index, 1)
  120. state.template = popupData;
  121. },
  122. shareInfo(state, shareInfo) {
  123. state.shareInfo = shareInfo;
  124. }
  125. }
  126. export default {
  127. state,
  128. mutations,
  129. actions,
  130. getters
  131. }