2022-01-08 15:42:53 +00:00
|
|
|
<template>
|
2025-07-22 15:30:55 +08:00
|
|
|
<div class="dashboard-root">
|
2025-08-22 11:30:23 +08:00
|
|
|
<!-- 全部应用 -->
|
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>
|
2022-01-08 15:42:53 +00:00
|
|
|
</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';
|
2025-10-17 14:40:28 +08:00
|
|
|
import Greeting from '@/views/components/Greeting.vue';
|
2025-07-22 15:30:55 +08:00
|
|
|
|
2022-01-08 15:42:53 +00: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,
|
2025-10-17 14:40:28 +08:00
|
|
|
FlowTable,
|
|
|
|
|
Greeting
|
2025-07-22 15:30:55 +08:00
|
|
|
}
|
2022-01-08 15:42:53 +00:00
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
2025-07-22 15:30:55 +08:00
|
|
|
<style scoped>
|
|
|
|
|
.dashboard-root {
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
padding: 32px;
|
|
|
|
|
}
|
2025-10-17 14:40:28 +08:00
|
|
|
</style>
|