大屏项目初始化

This commit is contained in:
2026-03-03 23:05:02 +08:00
parent 3df814d718
commit 424527c62f
32 changed files with 1382 additions and 1286 deletions

View File

@@ -29,10 +29,7 @@
</header>
<main class="screen-content">
<div v-if="activeTab === 'home'" class="screen-page">
<HomeIndex :formParams="FormValues" />
</div>
<div v-else-if="activeTab === 'work'" class="screen-page">
<div v-if="activeTab === 'work'" class="screen-page">
<WorkIndex :formParams="FormValues" />
</div>
<div v-else-if="activeTab === 'werp'" class="screen-page">
@@ -44,10 +41,8 @@
<script setup>
import { ref, onMounted } from 'vue';
import HomeIndex from './Home/index.vue';
import ErpIndex from './Erp/index.vue';
import WorkIndex from './Work/index.vue';
import { getHomeModuleList } from '@/api/bizApi'
const screenTitle = ref('个人数字化可视化看板');
@@ -58,8 +53,7 @@ const FormValues = ref({
});
const allTabs = ref([])
const activeTab = ref('home')
const activeTab = ref('work')
const queryDate = ref();
const switchTab = (key) => {