明梦爽
2021-11-11 6a1866f5271dd59f1df1c70fdbfeba1591bfa7c3
src/components/Home.vue
@@ -5,7 +5,9 @@
      <div>
        <img src="../assets/xiaohui4.png" alt="" />
      </div>
      <div class="bg"></div>
      <div>
        <img src="../assets/bg.png" alt="">
      </div>
    </el-header>
    <!-- 主页导航栏 -->
    <el-row>
@@ -18,9 +20,9 @@
        :default-active="activeIndex"
        @select="handleSelect"
      >
        <el-menu-item
        <el-menu-item
          :key="index"
          v-for="(item,index) in menuList"
          v-for="(item, index) in menuList"
          :index="item.index"
        >
          {{ item.name }}
@@ -43,36 +45,35 @@
  data() {
    return {
      activeIndex: 'index',
      menuList:[
        {index:'index',name:'首页'},
        {index:'introduce',name:'科协概况'},
        {index:'zhengce',name:'政策法规'},
        {index:'keXieXiangMu',name:'科协项目'},
        {index:'xueShuJiaoLiu',name:'学术交流'},
        {index:'banShiZhiNan',name:'办事指南'},
        {index:'kePu',name:'科普风采'},
        {index:'xueXiaoShouYe',name:'学校首页'},
        {index:'telephone',name:'联系我们'},
      menuList: [
        { index: 'index', name: '首页' },
        { index: 'introduce', name: '科协概况' },
        { index: 'zhengce', name: '政策法规' },
        { index: 'keXieXiangMu', name: '科协项目' },
        { index: 'xueShuJiaoLiu', name: '学术交流' },
        { index: 'banShiZhiNan', name: '办事指南' },
        { index: 'kePu', name: '科普风采' },
        { index: 'xueXiaoShouYe', name: '学校首页' },
        { index: 'telephone', name: '联系我们' }
      ]
    }
  },
  created(){
  },
  mounted(){
  },
  watch:{
  },
  created() {},
  mounted() {},
  watch: {},
  methods: {
    handleSelect(key, keyPath) {
      // console.log(key, keyPath)
      this.$router.push({
        path: '/home/' + key,
        query:{
          title:key
        }
      })
      console.log(key, keyPath)
      if (key == 'xueXiaoShouYe') {
        window.location.href = 'https://www.pdsu.edu.cn/#'
      } else {
        this.$router.push({
          path: '/home/' + key,
          query: {
            title: key
          }
        })
      }
    }
  }
}
@@ -83,25 +84,15 @@
  height: 100%;
}
.el-header {
  background: -webkit-linear-gradient(
    left,
    rgb(5, 102, 141),
    rgb(240, 243, 189)
  );
  background: -o-linear-gradient(right, rgb(5, 102, 141), rgb(240, 243, 189));
  background: -moz-linear-gradient(right, rgb(5, 102, 141), rgb(240, 243, 189));
  background: linear-gradient(to right, rgb(5, 102, 141), rgb(240, 243, 189));
  background-color: rgb(1, 72, 153);
}
.el-header {
  height: 93px !important;
  height: 120px !important;
  padding: 0 40px;
  overflow: hidden;
  div {
    display: flex;
    justify-content: left;
  }
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.el-menu {
  .el-menu-item {
@@ -126,7 +117,7 @@
  text-align: center;
  line-height: 60px;
}
.box{
.box {
  width: 1200px;
  margin: 0 auto;
}