|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
|
<div class="home">
|
|
|
+ <a class="title_blank" target="_blank" :href="homeTitle[0].homeUrl" v-if="homeTitle[0].isshow">{{ homeTitle[0].title }}</a>
|
|
|
<el-carousel height="100px" class="hfbox" direction="vertical" autoplay :interval="3000">
|
|
|
<el-carousel-item v-for="(item, index) in scrollList" :key="index">
|
|
|
<a class="hf" :href="item.url" v-if="item.url">
|
|
@@ -49,7 +50,7 @@ export default {
|
|
|
links
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(['menusall', 'scrollList'])
|
|
|
+ ...mapState(['menusall', 'scrollList', 'homeTitle'])
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -124,9 +125,11 @@ export default {
|
|
|
await this.menusQueryAll();
|
|
|
// 横幅
|
|
|
await this.upScrollQuery();
|
|
|
+ // 首页标题
|
|
|
+ await this.setHomeTitle();
|
|
|
},
|
|
|
methods: {
|
|
|
- ...mapActions(['contentsQuery', 'menusQueryAll', 'sourceQuery', 'upScrollQuery']),
|
|
|
+ ...mapActions(['contentsQuery', 'menusQueryAll', 'sourceQuery', 'upScrollQuery', 'setHomeTitle']),
|
|
|
async btnClick(e) {
|
|
|
const filter = { bind: e?.name };
|
|
|
if (e?.parentCode) filter.parentCode = e?.name;
|
|
@@ -230,4 +233,16 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+.title_blank {
|
|
|
+ width: 80%;
|
|
|
+ padding: 2%;
|
|
|
+ font-size: 2.375em;
|
|
|
+ font-weight: bold;
|
|
|
+ line-height: 130%;
|
|
|
+ text-align: center;
|
|
|
+ margin: 0 auto;
|
|
|
+ color: #32449a;
|
|
|
+ text-decoration: none;
|
|
|
+ display: block;
|
|
|
+}
|
|
|
</style>
|