📖 code review:店铺装修逻辑
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
<!-- 装修组件容器 -->
|
||||
<template>
|
||||
<view :style="[elStyles, elBackground]"><slot /></view>
|
||||
</template>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
:speed="50"
|
||||
:color="data.textColor"
|
||||
@tap="sheep.$router.go(data.contents[0].url)"
|
||||
></su-notice-bar>
|
||||
/>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
||||
+5
-2
@@ -61,18 +61,21 @@ const app = defineStore({
|
||||
$router.error('NetworkError');
|
||||
}
|
||||
|
||||
// 加载装修配置
|
||||
await adaptTemplate(this.template, templateId)
|
||||
const res = await appApi.init(templateId);
|
||||
if (res.error === 0) {
|
||||
this.info = res.data.app;
|
||||
this.platform = res.data.platform;
|
||||
|
||||
// TODO 芋艿:未接入
|
||||
// this.template = res.data.template;
|
||||
this.has_wechat_trade_managed = res.data.has_wechat_trade_managed;
|
||||
// this.has_wechat_trade_managed = res.data.has_wechat_trade_managed;
|
||||
// if (!res.data.template) {
|
||||
// $router.error('TemplateError');
|
||||
// }
|
||||
this.chat = res.data.chat;
|
||||
// TODO 芋艿:未接入
|
||||
// this.chat = res.data.chat;
|
||||
|
||||
// 加载主题
|
||||
const sysStore = sys();
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<!-- 自定义状态栏 -->
|
||||
<template>
|
||||
<view :style="{ height: statusBarHeight }" class="uni-status-bar"><slot /></view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import sheep from '@/sheep';
|
||||
import { computed } from 'vue';
|
||||
|
||||
const statusBarHeight = sheep.$platform.device.statusBarHeight + 'px';
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user