hagerFooter.vue 1.28 KB
<!--
 * @Date: 2024-09-26 13:42:22
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-09-26 14:36:26
 * @FilePath: /hager/src/components/common/hagerFooter.vue
 * @Description: 文件描述
-->
<template>
  <div class="hager-footer">
    <el-row class="hidden-xs-only">
      <el-col :sm="2" :md="2" :lg="3" :xl="4">&nbsp;</el-col>
      <el-col :sm="14" :md="14" :lg="13" :xl="12">
        <div style="display: flex; background-color: gray;">
          <div>图标</div>
          <div>产品中心</div>
          <div>解决方案</div>
          <div>新闻中心</div>
          <div>招聘信息</div>
          <div>关于海格</div>
          <div>联系我们</div>
          <div>首页</div>
        </div>
      </el-col>
      <el-col :sm="6" :md="6" :lg="5" :xl="4">
        <div style="display: flex; background-color: blue;">
          <div>搜索</div>
          <div>地球仪</div>
          <div>用户</div>
        </div>
      </el-col>
      <el-col :sm="2" :md="2" :lg="3" :xl="4">&nbsp;</el-col>
    </el-row>
  </div>
</template>

<script>
import mixin from 'common/mixin';

export default {
  mixins: [mixin.init],
  data () {
    return {

    }
  },
  mounted () {

  },
  methods: {

  }
}
</script>

<style lang="less" scoped>
.hager-footer {

}
</style>