zhangzengfei
2022-08-22 f14f98a263141d2f8ec0079866a758cc7a1c38d1
src/components/Footer.vue
@@ -1,6 +1,6 @@
<template>
  <div class="Footer" :class="{ isBlack: isBlack }">
    <div class="left">
  <div class="Footer">
    <!--  <div class="left">
      © 2009-2019 smartai.com 版权所有 ICP证:45456566 公网安备 436435455号
    </div>
    <div class="right">
@@ -8,9 +8,9 @@
      <span class="label">法律声明</span>
      <span class="label">隐私政策</span>
      <span class="label">廉正举报</span>
      <span class="label" @click="$router.push('/connectUs')">联系我们</span>
      <span class="label" @click="jump2">联系我们</span>
      <span class="label">加入我们</span>
    </div>
    </div> -->
  </div>
</template>
@@ -19,15 +19,18 @@
  props: {
    isBlack: {
      type: Boolean,
      default: false,
    },
      default: false
    }
  },
  methods: {
    jump() {
      window.open("http://www.smartai.com/");
      window.open("http://www.smartai.com/about")
    },
  },
};
    jump2() {
      window.open("http://www.smartai.com/consult")
    }
  }
}
</script>
<style lang="scss" scoped>
@@ -36,8 +39,8 @@
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 26px 20px;
  height: 100px;
  // padding: 26px 20px;
  height: 10px;
  min-width: 1280px;
  background: #f3f5f8;
@@ -65,4 +68,4 @@
    }
  }
}
</style>
</style>