|
@@ -3,13 +3,14 @@
|
|
|
<LoadingLogo />
|
|
|
<Opening :coverData="coverInfo" v-if="coverInfo.isShowCover && !hasPasswordLock" />
|
|
|
<Password @pass="handlePass" />
|
|
|
+ <Cover v-if="isCustomCover" @enter="isCustomCover = false"></Cover>
|
|
|
<Share />
|
|
|
- <div class="ui-view-layout" :class="{ show: show }">
|
|
|
+ <div class="ui-view-layout" :class="{ show: show && !isCustomCover }">
|
|
|
<Pano />
|
|
|
<Tags />
|
|
|
<UiGather />
|
|
|
<TitieSlide />
|
|
|
- <Guide />
|
|
|
+ <Guide v-if="!isCustomCover"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -23,7 +24,7 @@ import Password from "@/components/assembly/Password";
|
|
|
import Share from "@/components/assembly/Share";
|
|
|
import Error from "@/components/assembly/Error";
|
|
|
import TitieSlide from "@/components/assembly/titieSlide";
|
|
|
-
|
|
|
+import Cover from "./cover";
|
|
|
import UiGather from "@/components/UIGather/";
|
|
|
|
|
|
import LoadingLogo from "@/components/assembly/Loading";
|
|
@@ -44,6 +45,7 @@ const { t } = useI18n({ useScope: "global" });
|
|
|
|
|
|
const store = useStore();
|
|
|
const show = ref(false);
|
|
|
+const isCustomCover = ref(true);
|
|
|
const workEnable = ref(true);
|
|
|
const coverInfo = ref({});
|
|
|
const hasPasswordLock = ref(false);
|