管道基础大数据平台系统开发-【前端】-新系統界面
TreeWish
2023-02-23 5aec569c9d67c86819010171bc527afede505fe5
src/components/Screen/right.vue
@@ -2,16 +2,22 @@
  <div class="current">
    <div class="rightContainer" v-show="ChartDisplay">
      <div class="current1">
        <div class="aside-title">目录分布</div>
        <echart11></echart11>
        <div class="aside-title">工程种类</div>
        <project-category></project-category>
      </div>
      <div class="current1">
      <!-- <div class="current1">
        <div class="aside-title">数据及服务提交</div>
        <echart12></echart12>
      </div>
      <div class="current1">
        <div class="aside-title">各类数据存储分布</div>
        <echart13></echart13>
      </div> -->
      <div class="" >
        <div class="aside-title">文件格式</div>
        <div class="content" style="height: 542px">
          <div class="header">
            <div>格式</div>
            <div>数量</div>
          </div>
          <file-format></file-format>
        </div>
      </div>
    </div>
    <div class="rightarrow">
@@ -23,11 +29,16 @@
import echart11 from "@/components/echart11.vue"
import echart12 from "@/components/echart12.vue"
import echart13 from "@/components/echart13.vue"
import FileFormat from "@/components/chart/FileFormat.vue"
import ProjectCategory from "../chart/ProjectCategory.vue"
export default {
  components: {
    echart11,
    echart12,
    echart13,
    FileFormat,
    ProjectCategory
  },
  data() {
    return {
@@ -48,7 +59,7 @@
  },
}
</script>
<style lang="scss">
<style lang="less">
.current {
  height: 100%;
  width: 100%;
@@ -70,7 +81,7 @@
  }
  .rightContainer {
    height: 100%;
    width: calc(100% - 36px);
    width: calc(100% - 7px);
    display: flex;
    flex-direction: column;
@@ -83,16 +94,21 @@
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    .aside-title {
      padding-left: 30px;
      height: 27px;
      line-height: 27px;
      background: linear-gradient(0deg, #9cd2ff 0%, #ffffff 100%);
      font-size: 15px;
      font-family: YouSheBiaoTiHei, YouSheBiaoTiHei-Regular;
      -webkit-background-clip: text;
      color: #fff;
    }
  }
}
.content {
  width: 377px;
  background: url(../../assets/img/Screen/contentBg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  .header {
    margin: 0px auto;
    padding: 10px 0;
    width: 80%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 13px;
  }
}
</style>