提交修改

dev
dsh 12 months ago
parent dcf26047ff
commit 9127b8ef66

@ -0,0 +1,8 @@
import request from "@/utils/request";
export function getNotice() {
return request({
url: "/system/notice/getNotice",
method: "get",
});
}

@ -2,25 +2,31 @@
<div class="app-container home"> <div class="app-container home">
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :sm="24" :lg="24"> <el-col :sm="24" :lg="24">
<blockquote class="text-warning" style="font-size: 14px"> <div v-html="noticeContent" style="width: 90%;margin: 0 auto;font-size: 16px;text-indent: 30px;">
欢迎使用黄炎培职业教育奖网上申报系统
</blockquote> </div>
<hr />
</el-col> </el-col>
</el-row> </el-row>
<el-divider />
</div> </div>
</template> </template>
<script> <script>
import {getNotice} from "@/api";
export default { export default {
name: "Index", name: "Index",
data() { data() {
return { return {
// //
version: "3.8.7" version: "3.8.7",
noticeContent:null,
}; };
}, },
mounted() {
getNotice().then((res)=>{
this.noticeContent = res.data.noticeContent
})
},
methods: { methods: {
goTarget(href) { goTarget(href) {
window.open(href, "_blank"); window.open(href, "_blank");
@ -30,6 +36,13 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
::v-deep .ql-align-center{
font-size: 22px;
text-align: center;
}
::v-deep .ql-align-justify {
line-height: 30px;
}
.home { .home {
blockquote { blockquote {
padding: 10px 20px; padding: 10px 20px;

Loading…
Cancel
Save