Files
klp-oa/klp-ui/src/views/index.vue

39 lines
799 B
Vue
Raw Normal View History

<template>
2025-07-22 15:30:55 +08:00
<div class="dashboard-root">
<!-- 全部应用 -->
2025-08-22 14:28:10 +08:00
<el-row>
<AllApplications />
</el-row>
2025-08-25 18:06:32 +08:00
<el-row :gutter="20" style="margin-top: 20px;">
2025-08-22 14:28:10 +08:00
<el-col :span="12">
2025-08-25 18:06:32 +08:00
<el-card style="height: 500px;">
<FlowTable />
</el-card>
2025-08-22 14:28:10 +08:00
</el-col>
</el-row>
</div>
</template>
<script>
2025-07-22 16:28:43 +08:00
import AllApplications from '@/views/components/AllApplications.vue';
2025-08-22 14:28:10 +08:00
import OrderDashboard from '@/views/components/OrderDashboard.vue';
2025-08-22 17:34:33 +08:00
import FlowTable from '@/views/components/FlowTable.vue';
import Greeting from '@/views/components/Greeting.vue';
2025-07-22 15:30:55 +08:00
export default {
2025-07-22 16:28:43 +08:00
components: {
2025-08-22 14:28:10 +08:00
AllApplications,
2025-08-22 17:34:33 +08:00
OrderDashboard,
FlowTable,
Greeting
2025-07-22 15:30:55 +08:00
}
};
</script>
2025-07-22 15:30:55 +08:00
<style scoped>
.dashboard-root {
min-height: 100vh;
padding: 32px;
}
</style>