app.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <<<<<<< HEAD
  2. import DiyApi from '@/sheep/api/promotion/diy';
  3. import {
  4. defineStore
  5. } from 'pinia';
  6. import $platform from '@/sheep/platform';
  7. import $router from '@/sheep/router';
  8. import user from './user';
  9. import sys from './sys';
  10. const app = defineStore({
  11. id: 'app',
  12. state: () => ({
  13. info: {
  14. // 应用信息
  15. name: '', // 商城名称
  16. logo: '', // logo
  17. version: '', // 版本号
  18. copyright: '', // 版权信息 I
  19. copytime: '', // 版权信息 II
  20. cdnurl: '', // 云存储域名
  21. filesystem: '', // 云存储平台
  22. },
  23. platform: {
  24. share: {
  25. methods: [], // 支持的分享方式
  26. forwardInfo: {}, // 默认转发信息
  27. posterInfo: {}, // 海报信息
  28. linkAddress: '', // 复制链接地址
  29. },
  30. bind_mobile: 0, // 登陆后绑定手机号提醒 (弱提醒,可手动关闭)
  31. },
  32. chat: {},
  33. template: {
  34. // 店铺装修模板
  35. basic: {}, // 基本信息
  36. home: {
  37. // 首页模板
  38. style: {},
  39. data: [],
  40. },
  41. user: {
  42. // 个人中心模板
  43. style: {},
  44. data: [],
  45. },
  46. },
  47. shareInfo: {}, // 全局分享信息
  48. has_wechat_trade_managed: 0 // 小程序发货信息管理 0 没有 || 1 有
  49. }),
  50. actions: {
  51. // 获取Shopro应用配置和模板
  52. async init(templateId = null) {
  53. // 检查网络
  54. const networkStatus = await $platform.checkNetwork();
  55. if (!networkStatus) {
  56. $router.error('NetworkError');
  57. }
  58. // 加载装修配置
  59. await adaptTemplate(this.template, templateId)
  60. // TODO 芋艿:未来支持管理后台可配;对应 https://api.shopro.sheepjs.com/shop/api/init
  61. if (true) {
  62. this.info = {
  63. name: '中星',
  64. logo: 'https://static.iocoder.cn/ruoyi-vue-pro-logo.png',
  65. version: '1.1.13',
  66. copyright: '全部开源,个人与企业可 100% 免费使用',
  67. copytime: 'Copyright© 2018-2024',
  68. cdnurl: 'https://file.sheepjs.com', // 云存储域名
  69. filesystem: 'qcloud', // 云存储平台
  70. };
  71. this.platform = {
  72. share: {
  73. methods: ["poster", "link"],
  74. linkAddress: "https://shopro.sheepjs.com/#/",
  75. posterInfo: {
  76. "user_bg": "/static/img/shop/config/user-poster-bg.png",
  77. "goods_bg": "/static/img/shop/config/goods-poster-bg.png",
  78. "groupon_bg": "/static/img/shop/config/groupon-poster-bg.png"
  79. }
  80. },
  81. bind_mobile: 0
  82. };
  83. this.chat = {
  84. chat_domain: "https://api.shopro.sheepjs.com/chat",
  85. room_id: "admin"
  86. }
  87. this.has_wechat_trade_managed = 0;
  88. // 加载主题
  89. const sysStore = sys();
  90. sysStore.setTheme();
  91. // 模拟用户登录
  92. const userStore = user();
  93. if (userStore.isLogin) {
  94. userStore.loginAfter();
  95. }
  96. return Promise.resolve(true);
  97. } else {
  98. $router.error('InitError', res.msg || '加载失败');
  99. }
  100. },
  101. },
  102. persist: {
  103. enabled: true,
  104. strategies: [{
  105. key: 'app-store',
  106. }, ],
  107. },
  108. });
  109. // todo: @owen 先做数据适配,后期重构
  110. const adaptTemplate = async (appTemplate, templateId) => {
  111. const {
  112. data: diyTemplate
  113. } = templateId
  114. // 查询指定模板,一般是预览时使用
  115. ?
  116. await DiyApi.getDiyTemplate(templateId) :
  117. await DiyApi.getUsedDiyTemplate();
  118. // 模板不存在
  119. if (!diyTemplate) {
  120. $router.error('TemplateError');
  121. return
  122. }
  123. const tabBar = diyTemplate?.property?.tabBar;
  124. if (tabBar) {
  125. appTemplate.basic.tabbar = tabBar
  126. if (tabBar?.theme) {
  127. appTemplate.basic.theme = tabBar?.theme;
  128. }
  129. }
  130. appTemplate.home = diyTemplate?.home;
  131. appTemplate.user = diyTemplate?.user;
  132. }
  133. export default app;
  134. =======
  135. import DiyApi from '@/sheep/api/promotion/diy';
  136. import { defineStore } from 'pinia';
  137. import $platform from '@/sheep/platform';
  138. import $router from '@/sheep/router';
  139. import user from './user';
  140. import sys from './sys';
  141. const app = defineStore({
  142. id: 'app',
  143. state: () => ({
  144. info: {
  145. // 应用信息
  146. name: '', // 商城名称
  147. logo: '', // logo
  148. version: '', // 版本号
  149. copyright: '', // 版权信息 I
  150. copytime: '', // 版权信息 II
  151. cdnurl: '', // 云存储域名
  152. filesystem: '', // 云存储平台
  153. },
  154. platform: {
  155. share: {
  156. methods: [], // 支持的分享方式
  157. forwardInfo: {}, // 默认转发信息
  158. posterInfo: {}, // 海报信息
  159. linkAddress: '', // 复制链接地址
  160. },
  161. bind_mobile: 0, // 登陆后绑定手机号提醒 (弱提醒,可手动关闭)
  162. },
  163. chat: {},
  164. template: {
  165. // 店铺装修模板
  166. basic: {}, // 基本信息
  167. home: {
  168. // 首页模板
  169. style: {},
  170. data: [],
  171. },
  172. user: {
  173. // 个人中心模板
  174. style: {},
  175. data: [],
  176. },
  177. },
  178. shareInfo: {}, // 全局分享信息
  179. has_wechat_trade_managed: 0 // 小程序发货信息管理 0 没有 || 1 有
  180. }),
  181. actions: {
  182. // 获取Shopro应用配置和模板
  183. async init(templateId = null) {
  184. // 检查网络
  185. const networkStatus = await $platform.checkNetwork();
  186. if (!networkStatus) {
  187. $router.error('NetworkError');
  188. }
  189. // 加载装修配置
  190. await adaptTemplate(this.template, templateId)
  191. // TODO 芋艿:未来支持管理后台可配;对应 https://api.shopro.sheepjs.com/shop/api/init
  192. if (true) {
  193. this.info = {
  194. name: '中星商城',
  195. logo: 'https://static.iocoder.cn/ruoyi-vue-pro-logo.png',
  196. version: '1.1.13',
  197. copyright: '全部开源,个人与企业可 100% 免费使用',
  198. copytime: 'Copyright© 2018-2024',
  199. cdnurl: 'https://file.sheepjs.com', // 云存储域名
  200. filesystem: 'qcloud', // 云存储平台
  201. };
  202. this.platform = {
  203. share: {
  204. methods: [ "poster", "link" ],
  205. linkAddress: "https://shopro.sheepjs.com/#/",
  206. posterInfo: {
  207. "user_bg": "/static/img/shop/config/user-poster-bg.png",
  208. "goods_bg": "/static/img/shop/config/goods-poster-bg.png",
  209. "groupon_bg": "/static/img/shop/config/groupon-poster-bg.png"
  210. }
  211. },
  212. bind_mobile: 0
  213. };
  214. this.chat = {
  215. chat_domain: "https://api.shopro.sheepjs.com/chat",
  216. room_id: "admin"
  217. }
  218. this.has_wechat_trade_managed = 0;
  219. // 加载主题
  220. const sysStore = sys();
  221. sysStore.setTheme();
  222. // 模拟用户登录
  223. const userStore = user();
  224. if (userStore.isLogin) {
  225. userStore.loginAfter();
  226. }
  227. return Promise.resolve(true);
  228. } else {
  229. $router.error('InitError', res.msg || '加载失败');
  230. }
  231. },
  232. },
  233. persist: {
  234. enabled: true,
  235. strategies: [
  236. {
  237. key: 'app-store',
  238. },
  239. ],
  240. },
  241. });
  242. // todo: @owen 先做数据适配,后期重构
  243. const adaptTemplate = async (appTemplate, templateId) => {
  244. const { data: diyTemplate } = templateId
  245. // 查询指定模板,一般是预览时使用
  246. ? await DiyApi.getDiyTemplate(templateId)
  247. : await DiyApi.getUsedDiyTemplate();
  248. // 模板不存在
  249. if (!diyTemplate) {
  250. $router.error('TemplateError');
  251. return
  252. }
  253. const tabBar = diyTemplate?.property?.tabBar;
  254. if (tabBar) {
  255. appTemplate.basic.tabbar = tabBar
  256. if (tabBar?.theme) {
  257. appTemplate.basic.theme = tabBar?.theme;
  258. }
  259. }
  260. appTemplate.home = diyTemplate?.home;
  261. appTemplate.user = diyTemplate?.user;
  262. }
  263. export default app;
  264. >>>>>>> 2a4fc69da7887abaf079fe9390e3617ef41f9a66