判断小程序是否有发货信息管理功能

This commit is contained in:
kele
2023-10-16 15:49:32 +08:00
parent 53507d995d
commit a2a7bb2121
2 changed files with 11 additions and 10 deletions
+2
View File
@@ -49,6 +49,7 @@ const app = defineStore({
},
},
shareInfo: {}, // 全局分享信息
has_wechat_trade_managed: 0 // 小程序发货信息管理 0 没有 || 1 有
}),
actions: {
// 获取Shopro应用配置和模板
@@ -64,6 +65,7 @@ const app = defineStore({
this.info = res.data.app;
this.platform = res.data.platform;
this.template = res.data.template;
this.has_wechat_trade_managed = res.data.has_wechat_trade_managed;
if (!res.data.template) {
$router.error('TemplateError');
}