You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
<template>
|
|
<div class="dashboard-container">
|
|
<div class="dashboard-editor-container">
|
|
<el-row :gutter="24">
|
|
<!-- <el-col :xs="24" :sm="24" :lg="8">
|
|
<publish-process />
|
|
</el-col>
|
|
<el-col :xs="24" :sm="24" :lg="8">
|
|
<device-data />
|
|
</el-col>
|
|
<el-col :xs="24" :sm="24" :lg="8">
|
|
<agency-data />
|
|
</el-col> -->
|
|
<publish-process />
|
|
<device-data />
|
|
<agency-data />
|
|
</el-row>
|
|
<home-theme-gallery />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PublishProcess from './dashboard/PublishProcess'
|
|
import DeviceData from './dashboard/DeviceData'
|
|
import AgencyData from './dashboard/AgencyData'
|
|
import HomeThemeGallery from './dashboard/HomeThemeGallery'
|
|
export default {
|
|
name: 'Dashboard',
|
|
components: {
|
|
PublishProcess,
|
|
DeviceData,
|
|
AgencyData,
|
|
HomeThemeGallery
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
.dashboard-editor-container {
|
|
padding: 24px;
|
|
background-color: #f5f5f5;
|
|
position: relative;
|
|
height: calc(100vh - 64px);
|
|
}
|
|
</style>
|