大屏页面初始化

This commit is contained in:
2026-02-27 13:59:38 +08:00
parent 381b5c6460
commit 368127ae19
11 changed files with 55 additions and 1525 deletions

View File

@@ -35,9 +35,6 @@
<div v-else-if="activeTab === 'work'" class="screen-page">
<WorkIndex :formParams="FormValues" />
</div>
<div v-else-if="activeTab === 'test'" class="screen-page">
<TestIndex :formParams="FormValues" />
</div>
<div v-else-if="activeTab === 'erp'" class="screen-page">
<ErpIndex :formParams="FormValues" />
</div>
@@ -50,9 +47,8 @@ import { ref, onMounted } from 'vue';
import HomeIndex from './screen/Home/index.vue';
import ErpIndex from './screen/Erp/index.vue';
import WorkIndex from './screen/Work/index.vue';
import TestIndex from './screen/Test/index.vue';
const screenTitle = ref('数字化可视化');
const screenTitle = ref('数字化可视化看板');
const currentYear = new Date().getFullYear().toString();
const FormValues = ref({
@@ -62,7 +58,6 @@ const FormValues = ref({
const allTabs = [
{ key: 'home', name: '首页' },
{ key: 'work', name: '工作' },
{ key: 'test', name: '测试' },
{ key: 'erp', name: '财务' },
]