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.
53 lines
1.1 KiB
53 lines
1.1 KiB
<template>
|
|
<div class="dashboard-container">
|
|
<div class="dashboard-editor-container">
|
|
<el-row type="flex" class="row-bg" justify="space-between">
|
|
<!-- <el-col :span="6">
|
|
<publish-process />
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<device-data />
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<agency-data />
|
|
</el-col>-->
|
|
|
|
<publish-process />
|
|
<device-data />
|
|
<agency-data />
|
|
</el-row>
|
|
<theme-gallery />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PublishProcess from './dashboard/PublishProcess'
|
|
import DeviceData from './dashboard/DeviceData'
|
|
import AgencyData from './dashboard/AgencyData'
|
|
import ThemeGallery from './dashboard/ThemeGallery'
|
|
export default {
|
|
name: 'Dashboard',
|
|
components: {
|
|
PublishProcess,
|
|
DeviceData,
|
|
AgencyData,
|
|
ThemeGallery
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
.dashboard-editor-container {
|
|
padding: 24px;
|
|
background-color: #f5f5f5;
|
|
position: relative;
|
|
min-height: calc(100vh - 64px);
|
|
}
|
|
</style>
|