- 重构首页布局,移除旧图表组件,添加流程表格和迷你日历 - 新增常用应用组件,支持收藏和管理常用功能 - 新增流程表格组件,展示我的流程和待办任务 - 新增迷你日历组件,支持不同类型日期标记 - 优化统计卡片组件,拆分客户和供应商统计 - 调整部分表格列名显示更准确
85 lines
1.7 KiB
Vue
85 lines
1.7 KiB
Vue
<template>
|
|
<div class="dashboard-editor-container">
|
|
|
|
<statistic-group />
|
|
|
|
<AllApplications />
|
|
|
|
<el-row :gutter="10">
|
|
<el-col :span="18">
|
|
<flow-table />
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<mini-calendar />
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import StatisticGroup from '@/components/HomeModules/StatisticGroup.vue'
|
|
import AllApplications from '@/components/HomeModules/AllApplications.vue'
|
|
import FlowTable from '@/components/HomeModules/FlowTable.vue'
|
|
import MiniCalendar from '@/components/HomeModules/MiniCalendar.vue'
|
|
|
|
const lineChartData = {
|
|
newVisitis: {
|
|
expectedData: [100, 120, 161, 134, 105, 160, 165],
|
|
actualData: [120, 82, 91, 154, 162, 140, 145]
|
|
},
|
|
messages: {
|
|
expectedData: [200, 192, 120, 144, 160, 130, 140],
|
|
actualData: [180, 160, 151, 106, 145, 150, 130]
|
|
},
|
|
purchases: {
|
|
expectedData: [80, 100, 121, 104, 105, 90, 100],
|
|
actualData: [120, 90, 100, 138, 142, 130, 130]
|
|
},
|
|
shoppings: {
|
|
expectedData: [130, 140, 141, 142, 145, 150, 160],
|
|
actualData: [120, 82, 91, 154, 162, 140, 130]
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'Index',
|
|
components: {
|
|
// PanelGroup,
|
|
StatisticGroup,
|
|
AllApplications,
|
|
FlowTable,
|
|
MiniCalendar,
|
|
},
|
|
data() {
|
|
return {
|
|
lineChartData: lineChartData.newVisitis
|
|
}
|
|
},
|
|
methods: {
|
|
handleSetLineChartData(type) {
|
|
this.lineChartData = lineChartData[type]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.dashboard-editor-container {
|
|
padding: 32px;
|
|
background-color: rgb(240, 242, 245);
|
|
position: relative;
|
|
|
|
.chart-wrapper {
|
|
background: #fff;
|
|
padding: 16px 16px 0;
|
|
margin-bottom: 32px;
|
|
}
|
|
}
|
|
|
|
@media (max-width:1024px) {
|
|
.chart-wrapper {
|
|
padding: 8px;
|
|
}
|
|
}
|
|
</style>
|