app.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. import DiyApi from '@/sheep/api/promotion/diy';
  2. import { defineStore } from 'pinia';
  3. import $platform from '@/sheep/platform';
  4. import $router from '@/sheep/router';
  5. import user from './user';
  6. import sys from './sys';
  7. const app = defineStore({
  8. id: 'app',
  9. state: () => ({
  10. info: {
  11. // 应用信息
  12. name: '', // 商城名称
  13. logo: '', // logo
  14. version: '', // 版本号
  15. copyright: '', // 版权信息 I
  16. copytime: '', // 版权信息 II
  17. cdnurl: '', // 云存储域名
  18. filesystem: '', // 云存储平台
  19. },
  20. platform: {
  21. share: {
  22. methods: [], // 支持的分享方式
  23. forwardInfo: {}, // 默认转发信息
  24. posterInfo: {}, // 海报信息
  25. linkAddress: '', // 复制链接地址
  26. },
  27. bind_mobile: 0, // 登陆后绑定手机号提醒 (弱提醒,可手动关闭)
  28. },
  29. chat: {},
  30. template: {
  31. // 店铺装修模板
  32. basic: {}, // 基本信息
  33. home: {
  34. // 首页模板
  35. style: {},
  36. data: [],
  37. },
  38. user: {
  39. // 个人中心模板
  40. style: {},
  41. data: [],
  42. },
  43. },
  44. shareInfo: {}, // 全局分享信息
  45. has_wechat_trade_managed: 0 // 小程序发货信息管理 0 没有 || 1 有
  46. }),
  47. actions: {
  48. // 获取Shopro应用配置和模板
  49. async init(templateId = null) {
  50. // 检查网络
  51. const networkStatus = await $platform.checkNetwork();
  52. if (!networkStatus) {
  53. $router.error('NetworkError');
  54. }
  55. // 加载装修配置
  56. await adaptTemplate(this.template, templateId)
  57. // TODO 芋艿:未来支持管理后台可配;对应 https://api.shopro.sheepjs.com/shop/api/init
  58. if (true) {
  59. this.info = {
  60. name: '中星商城',
  61. logo: 'https://static.iocoder.cn/ruoyi-vue-pro-logo.png',
  62. version: '1.1.13',
  63. copyright: '全部开源,个人与企业可 100% 免费使用',
  64. copytime: 'Copyright© 2018-2024',
  65. cdnurl: 'https://file.sheepjs.com', // 云存储域名
  66. filesystem: 'qcloud', // 云存储平台
  67. };
  68. this.platform = {
  69. share: {
  70. methods: [ "poster", "link" ],
  71. linkAddress: "https://shopro.sheepjs.com/#/",
  72. posterInfo: {
  73. "user_bg": "/static/img/shop/config/user-poster-bg.png",
  74. "goods_bg": "/static/img/shop/config/goods-poster-bg.png",
  75. "groupon_bg": "/static/img/shop/config/groupon-poster-bg.png"
  76. }
  77. },
  78. bind_mobile: 0
  79. };
  80. this.chat = {
  81. chat_domain: "https://api.shopro.sheepjs.com/chat",
  82. room_id: "admin"
  83. }
  84. this.has_wechat_trade_managed = 0;
  85. // 加载主题
  86. const sysStore = sys();
  87. sysStore.setTheme();
  88. // 模拟用户登录
  89. const userStore = user();
  90. if (userStore.isLogin) {
  91. userStore.loginAfter();
  92. }
  93. return Promise.resolve(true);
  94. } else {
  95. $router.error('InitError', res.msg || '加载失败');
  96. }
  97. },
  98. },
  99. persist: {
  100. enabled: true,
  101. strategies: [
  102. {
  103. key: 'app-store',
  104. },
  105. ],
  106. },
  107. });
  108. // todo: @owen 先做数据适配,后期重构
  109. const adaptTemplate = async (appTemplate, templateId) => {
  110. const { data: diyTemplate } = templateId
  111. // 查询指定模板,一般是预览时使用
  112. ? await DiyApi.getDiyTemplate(templateId)
  113. : await DiyApi.getUsedDiyTemplate();
  114. // 模板不存在
  115. if (!diyTemplate) {
  116. $router.error('TemplateError');
  117. return
  118. }
  119. const tabBar = diyTemplate?.property?.tabBar;
  120. if (tabBar) {
  121. appTemplate.basic.tabbar = tabBar
  122. if (tabBar?.theme) {
  123. appTemplate.basic.theme = tabBar?.theme;
  124. }
  125. }
  126. appTemplate.home = diyTemplate?.home;
  127. appTemplate.user = diyTemplate?.user;
  128. }
  129. export default app;