中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue底部footer導航組件問題怎么解決

發布時間:2022-04-01 11:12:01 來源:億速云 閱讀:434 作者:iii 欄目:開發技術

這篇文章主要講解了“vue底部footer導航組件問題怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“vue底部footer導航組件問題怎么解決”吧!

Vue底部footer導航組件

底部導航一定要用路徑!!! 賊關鍵

舉個例子:

你隨便定義了一個變量, flag : 0 跳轉首頁, falg:1,跳轉我的,

底部導航的組件不可能全項目使用, 點擊我的頁面  這個時候flag 已經變成了1,

從我的頁面進入詳情頁,從詳情頁返回的時候,雖然路由沒有變,但是flag 已經初始化成了0,

我們的判斷條件沒辦法自定義,每次從詳情頁返回的時候都會被初始化,

!!! 判斷一定要用路徑

$route.path

<template>
  <div class="footer">
  <div class="costList1" @click="choiceState('/dashboard/Analysis')">
      <img class="costUrl" v-if="$route.path==='/dashboard/analysis'" src="../../assets/img/bot-apply0.png" />
      <img class="costUrl" v-else src="../../assets/img/bot-apply1.png" />
      <div
        class="costName"
        :
      >首頁</div>
    </div>
    <div class="costList1" @click="choiceState('/dashboard/ToExamine')">
      <a-badge :count="this.$store.state.applyNum">
        <img class="costUrl" v-if="$route.path==='/dashboard/ToExamine'" src="../../assets/img/1.png" />
        <img class="costUrl" v-else src="../../assets/img/0.png" />
      </a-badge>
      <div
        class="costName"
        :
      >審核</div>
    </div>
    <div class="costList1" @click="choiceState('/dashboard/mine')">
      <img class="costUrl" v-if="$route.path==='/dashboard/mine'" src="../../assets/img/mine11.png" />
      <img class="costUrl" v-else src="../../assets/img/mine12.png" />
      <div
        class="costName"
        :
      >我的</div>
  </div>
  </div>
</template>
<script>
export default {
  name: 'LayoutFooter',
  data() {
    return {
      applyNum: 0,
      reimbNum: 0,
      wgtVer: ''
    }
}
  methods: {
    choiceState(path) {
      this.$router.push(path)
    }
  }
}
</script>
<style lang="scss" scoped>
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 58px;
  background: #eff0f6;
  align-items: center;
  .costList1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    height: 58px;
    align-items: center;
    img {
      width: 20px;
      height: 22px;
    }
    .costName {
      text-align: center;
    }
  }
}
.ant-carousel >>> .slick-slide {
  text-align: center;
  height: 160px !important;
  line-height: 160px;
  background: #364d79;
  overflow: hidden;
}
.ant-carousel >>> .slick-slide h4 {
  color: #fff;
}
</style>

Vue抽取的footer組件,可復用

<template>
  <div class="app-foot">
    {{footerMsgCopyright}}
    <span class="source">{{footerMsgName}}</span>
  </div>
</template>
<script>
export default {
  name: 'AppFoot',
  data() {
    return {
      // 版權說明的文字
      footerMsgCopyright: 'Copyright ? 2020-2021 xxxx平臺 - Powered By ',
      // 單位
      footerMsgName: 'xxxx實驗室'
    }
  }
}
</script>
<style scoped>
.app-foot {
  /* footer 固定在頁面底部 */
  min-height: 35px;
  background-color: #eeeeee;
  width: 100%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.source{
  font-weight: 600;
}
</style>

復用時直接調用組件

主頁面設定高度時,要把footer的高度空出來,其style可以如下:

<style>
.main-container{
  /*  35 = footer  */
  min-height: calc(100vh - 35px);
}
</style>

感謝各位的閱讀,以上就是“vue底部footer導航組件問題怎么解決”的內容了,經過本文的學習后,相信大家對vue底部footer導航組件問題怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚松县| 游戏| 铜鼓县| 玉屏| 策勒县| 徐州市| 开原市| 凯里市| 多伦县| 侯马市| 龙州县| 南康市| 彰化县| 江门市| 天水市| 原阳县| 黎平县| 涞源县| 寿阳县| 临清市| 临澧县| 马关县| 满洲里市| 吴忠市| 麻阳| 台安县| 张家口市| 晋中市| 宿迁市| 金湖县| 察哈| 甘肃省| 礼泉县| 临朐县| 鄂州市| 乐清市| 楚雄市| 友谊县| 灵武市| 长汀县| 祁东县|