Newer
Older
smartwell_front / src / views / zhangqiu / zqindex.vue
Stephanie on 29 Jul 2022 579 bytes fix<*>:增加章丘项目首页
<template>
  <div class="full-container">
    <!--    <overview3dzq />-->
    <!--    <iframe src="http://192.168.83.32/zq/" class="charts" />-->
  </div>
</template>

<script>
// import Overview3dzq from '@/views/overview/overview3dzq'
export default {
  name: 'Zqindex',
  // components: { Overview3dzq },
  data() {
    return {}
  }
}
</script>
<style lang="scss" scoped>
.full-container{
  width:100%;
  height: 100%;
  position: relative;
  .charts{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9999;
    left: 0px;
    top: 0px;

  }
}
</style>