大屏项目初始化
This commit is contained in:
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user