|
@@ -10,6 +10,21 @@
|
10
|
10
|
</li>
|
11
|
11
|
</ul>
|
12
|
12
|
</div>
|
|
13
|
+ <div class="notice">
|
|
14
|
+ <el-table ref="notice_table" :data="notices" @row-click="expandRow">
|
|
15
|
+ <el-table-column
|
|
16
|
+ type="selection"
|
|
17
|
+ width="30">
|
|
18
|
+ </el-table-column>
|
|
19
|
+ <el-table-column type="expand" width="20">
|
|
20
|
+ <template slot-scope="scope">
|
|
21
|
+ <p class="notice_expand_content">{{ scope.row.content }}</p>
|
|
22
|
+ <p class="notice_expand_publisher">酷医聚客团队</p>
|
|
23
|
+ </template>
|
|
24
|
+ </el-table-column>
|
|
25
|
+ <el-table-column prop="title" label="所有通知"></el-table-column>
|
|
26
|
+ </el-table>
|
|
27
|
+ </div>
|
13
|
28
|
</div>
|
14
|
29
|
</div>
|
15
|
30
|
|
|
@@ -21,16 +36,34 @@ export default {
|
21
|
36
|
return {
|
22
|
37
|
numbers: [
|
23
|
38
|
{ num: '0', name: '新增数量', time: '昨日: 0' },
|
24
|
|
- { num: '1', name: '总粉丝', time: '昨日: 0' },
|
25
|
|
- { num: '1', name: '今日新增会员', time: '昨日: 0' },
|
26
|
|
- { num: '1', name: '总会员', time: '昨日: 1' },
|
27
|
|
- { num: '1', name: '商品浏览数', time: '昨日: 1' },
|
28
|
|
- { num: '111', name: '文章浏览量', time: '昨日: 0' },
|
29
|
|
- { num: '150', name: '活动浏览量', time: '昨日: 0' },
|
30
|
|
- { num: '120', name: '新增订单', time: '昨日: 0' }
|
31
|
|
- ]
|
|
39
|
+ { num: '0', name: '总粉丝', time: '昨日: 0' },
|
|
40
|
+ { num: '0', name: '今日新增会员', time: '昨日: 0' },
|
|
41
|
+ { num: '0', name: '总会员', time: '昨日: 0' },
|
|
42
|
+ { num: '0', name: '商品浏览数', time: '昨日: 0' },
|
|
43
|
+ { num: '0', name: '文章浏览量', time: '昨日: 0' },
|
|
44
|
+ { num: '0', name: '活动浏览量', time: '昨日: 0' },
|
|
45
|
+ { num: '0', name: '新增订单', time: '昨日: 0' }
|
|
46
|
+ ],
|
|
47
|
+
|
|
48
|
+ expanding_row: null,
|
|
49
|
+ notices: [
|
|
50
|
+ // { id: 1, title: "第一个通知", content: "第一个通知第一个通知第一个通知第一个通知第一个通知第一个通知第一个通知第一个通知第一个通知第一个通知" },
|
|
51
|
+ // { id: 2, title: "第二个通知", content: "第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知第二个通知" },
|
|
52
|
+ ],
|
32
|
53
|
}
|
33
|
|
- }
|
|
54
|
+ },
|
|
55
|
+ methods: {
|
|
56
|
+ expandRow: function(row, column, event) {
|
|
57
|
+ if (this.expanding_row == null || this.expanding_row.id != row.id) {
|
|
58
|
+ this.$refs.notice_table.toggleRowExpansion(this.expanding_row, false)
|
|
59
|
+ this.$refs.notice_table.toggleRowExpansion(row, true)
|
|
60
|
+ this.expanding_row = row
|
|
61
|
+ } else {
|
|
62
|
+ this.$refs.notice_table.toggleRowExpansion(this.expanding_row, false)
|
|
63
|
+ this.expanding_row = null
|
|
64
|
+ }
|
|
65
|
+ }
|
|
66
|
+ },
|
34
|
67
|
}
|
35
|
68
|
</script>
|
36
|
69
|
|
|
@@ -65,5 +98,20 @@ export default {
|
65
|
98
|
}
|
66
|
99
|
}
|
67
|
100
|
}
|
|
101
|
+
|
|
102
|
+ .notice {
|
|
103
|
+ box-shadow: 4px 4px 8px #dde7f2;
|
|
104
|
+ margin-top: 20px;
|
|
105
|
+
|
|
106
|
+ .notice_expand_content {
|
|
107
|
+ color: #89949b;
|
|
108
|
+ font-size: 15px;
|
|
109
|
+ line-height: 25px;
|
|
110
|
+ }
|
|
111
|
+ .notice_expand_publisher {
|
|
112
|
+ font-size: 14px;
|
|
113
|
+ margin-top: 10px;
|
|
114
|
+ }
|
|
115
|
+ }
|
68
|
116
|
}
|
69
|
117
|
</style>
|