This commit is contained in:
2025-11-26 16:56:56 +08:00
parent 08ab9bf017
commit deab83fc81
10 changed files with 1215 additions and 746 deletions

View File

@@ -22,7 +22,7 @@
</template>
<template v-else>
<v-head2 :home="true"></v-head2>
<div style="width: 100%; height: calc(100% - 42px); overflow: hidden">
<div style="width: 100%; height: calc(100% - 42px); overflow: hidden" :style="{background: bgColor}">
<div class="content" style="padding: 0; overflow: hidden">
<!-- <transition name="move" mode="out-in"> -->
<!-- <keep-alive :include="tagsList"> -->
@@ -56,6 +56,7 @@ import bus from './bus';
export default {
data() {
return {
bgColor: this.$route.meta.bgColor || '#fff',
tagsList: [],
collapse: false
};