<!--
|
* @Author: lzhe lzhe@example.com
|
* @Date: 2024-04-16 15:22:46
|
* @LastEditors: lzhe lzhe@example.com
|
* @LastEditTime: 2024-06-05 11:36:56
|
* @FilePath: /src/views/home/widgets/components/welcome.vue
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
-->
|
<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>
|