Browse Source

新增首页标题,(未测试)

zhy 3 weeks ago
parent
commit
1ac46e472a
2 changed files with 27 additions and 3 deletions
  1. 10 1
      src/store/index.js
  2. 17 2
      src/views/Home.vue

+ 10 - 1
src/store/index.js

@@ -29,7 +29,8 @@ const state = () => ({
   upwindow: [],
   scrollList: [],
   dict: {},
-  searchList: []
+  searchList: [],
+  homeTitle: []
 });
 
 const actions = {
@@ -114,6 +115,11 @@ const actions = {
   async leaderList ({ commit }, payload) {
     const res = await $axios.get(api.contentsQuery, payload);
     return res.data;
+  },
+  async setHomeTitle ({ commit }) {
+    const res = await $axios.get(api.sourceQuery, { parentCode: 'homeUrl' });
+    commit('setHomeTitle', res);
+    return res;
   }
 };
 
@@ -167,6 +173,9 @@ const mutations = {
   },
   pagesFetch(state, payload) {
     state.pagesItem = payload.data;
+  },
+  setHomeTitle(state, payload) {
+    state.homeTitle = payload.data;
   }
 };
 

+ 17 - 2
src/views/Home.vue

@@ -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>