|
|
|
|
@ -1,8 +1,12 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="welcome-page">
|
|
|
|
|
<div class="content">
|
|
|
|
|
<h1>欢迎来到 花至微信小程序管理后台</h1>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!--
|
|
|
|
|
<div class="dashboard-editor-container">
|
|
|
|
|
|
|
|
|
|
<panel-group @handleSetLineChartData="handleSetLineChartData" />
|
|
|
|
|
|
|
|
|
|
<el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
|
|
|
|
|
<line-chart :chart-data="lineChartData" />
|
|
|
|
|
</el-row>
|
|
|
|
|
@ -24,9 +28,8 @@
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
-->
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
@ -95,4 +98,15 @@ export default {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.welcome-page {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
}
|
|
|
|
|
.content {
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|