<template> <div class="dashboard-editor-container"> <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;"> <el-row :gutter="20"> <el-card shadow="hover" style="height:480px;"> <div slot="header" class="clearfix"> <span>更美运营后台使用手册及注意事项</span> </div> <el-table :data="instruction" :show-header="false" height="404" style="width: 100%;font-size:14px;border: 0;"> <el-table-column> <template slot-scope="scope"> <div class="item">{{scope.row.title}}</div> </template> </el-table-column> </el-table> </el-card> </el-row> </el-row> </div> </template> <script> export default { name: 'DashboardAdmin', components: {}, data() { return { instruction: [{ title: '1:本后台系统仅限于运营人员使用。', }, { title: '2:运营人员对相关数据请谨慎使用。', }, ], } }, } </script> <style rel="stylesheet/scss" lang="scss" scoped> .dashboard-editor-container { padding: 32px; background-color: rgb(240, 242, 245); .chart-wrapper { background: #fff; padding: 16px 16px 0; margin-bottom: 32px; } } </style>