1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<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>