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
| <template>
| <el-card shadow="hover" header="公告">
| <div class="announcement">
| <img src="./quesheng.bd026700.png">
| <div>暂无内容</div>
| </div>
| </el-card>
| </template>
|
| <script>
| export default {
| title: "公告",
| icon: "el-icon-setting",
| description: "系统内通知、公告通知快速查看",
| data() {
| return {
|
| }
| },
| methods: {
| godoc(){
| window.open("https://lolicode.gitee.io/scui-doc/")
| }
| }
| }
| </script>
|
| <style scoped>
| .announcement {
| text-align: center;
| }
| .announcement img {
| text-align: center;
| width:150px;
| height:150px;
| }
| </style>
|
|