Blame view

src/views/tjfx/bdcdjtjfx/index.vue 3.46 KB
renchao@pashanhoo.com committed
1
<!--
“miaofang committed
2
 * @Description:
renchao@pashanhoo.com committed
3 4 5 6
 * @Autor: renchao
 * @LastEditTime: 2023-08-25 08:59:04
-->
<template>
“miaofang committed
7 8 9 10 11 12
  <div class="yhjgba">
    <el-row :gutter="8">
      <el-col :span="12">
        <el-card
          shadow="hover"
          :body-style="{ padding: '0' }"
“miaofang committed
13
          style="height: 260px"
“miaofang committed
14 15 16 17 18 19 20 21 22 23 24
        >
          <div slot="header" class="flexst">
            <h5 class="title">根据登记类型统计分析收件</h5>
          </div>
          <djlx/>
        </el-card>
      </el-col>
      <el-col :span="12">
        <el-card
          shadow="hover"
          :body-style="{ padding: '0' }"
“miaofang committed
25
          style="height: 260px"
“miaofang committed
26 27 28 29 30 31 32 33 34 35 36 37 38
        >
          <div slot="header" class="flexst">
            <h5 class="title">根据证书种类统计分析发证情况</h5>
          </div>
           <zszl/>
        </el-card>
      </el-col>
    </el-row>
    <el-row :gutter="8" class="marginTop10">
      <el-col :span="12">
        <el-card
          shadow="hover"
          :body-style="{ padding: '0' }"
“miaofang committed
39
          style="height: 260px"
“miaofang committed
40 41 42 43
        >
          <div slot="header" class="flexst">
            <h5 class="title">根据收件人统计分析收件</h5>
          </div>
“miaofang committed
44
          <psjr/>
“miaofang committed
45 46 47 48 49 50 51
        </el-card>
      </el-col>

      <el-col :span="12">
        <el-card
          shadow="hover"
          :body-style="{ padding: '0' }"
“miaofang committed
52
          style="height: 260px"
“miaofang committed
53 54 55 56
        >
          <div slot="header" class="flexst">
            <h5 class="title">收件日统计</h5>
          </div>
“miaofang committed
57
           <sjri/>
“miaofang committed
58 59 60 61 62 63 64 65
        </el-card>
      </el-col>
    </el-row>
    <el-row :gutter="8" class="marginTop10">
      <el-col :span="12">
        <el-card
          shadow="hover"
          :body-style="{ padding: '0' }"
“miaofang committed
66
          style="height: 260px"
“miaofang committed
67 68 69 70 71 72 73 74 75 76 77
        >
          <div slot="header" class="flexst">
            <h5 class="title">根据区域统计分析收件</h5>
          </div>
           <qytj/>
        </el-card>
      </el-col>
      <el-col :span="12">
        <el-card
          shadow="hover"
          :body-style="{ padding: '0' }"
“miaofang committed
78
          style="height: 260px"
“miaofang committed
79 80 81 82
        >
          <div slot="header" class="flexst">
            <h5 class="title">收件月统计</h5>
          </div>
“miaofang committed
83
          <sjyue/>
“miaofang committed
84 85 86
        </el-card>
      </el-col>
    </el-row>
renchao@pashanhoo.com committed
87 88 89
  </div>
</template>
<script>
“miaofang committed
90 91 92 93 94
import * as echarts from "echarts";
import { mapGetters } from "vuex";
import  djlx  from "./components/djlx.vue";
import  zszl  from "./components/zszl.vue";
import  qytj  from "./components/qytj.vue";
“miaofang committed
95 96 97
import  sjri  from "./components/sjri.vue";
import  sjyue  from "./components/sjyue.vue";
import  psjr  from "./components/sjr.vue";
renchao@pashanhoo.com committed
98

“miaofang committed
99
export default {
“miaofang committed
100
  components: {djlx,zszl,qytj,sjri,sjyue,psjr},
“miaofang committed
101 102 103 104 105 106 107 108 109 110
  computed: {
    ...mapGetters(["dictData", "transfer"]),
  },
  data() {
    return {
      queryForm: {},
      tableList: [{ name: "111" }, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23],
    };
  },
  mounted() {
“miaofang committed
111

“miaofang committed
112 113 114
  },
  methods: {
    getOption() {
renchao@pashanhoo.com committed
115
      return {
“miaofang committed
116

“miaofang committed
117

“miaofang committed
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
      };
    },

    handleSearch() {},
  },
};
</script>
<style scoped lang="scss">
/deep/.el-card__header {
  padding: 8px 10px;
}

/deep/.el-card__body {
  padding: 3px 10px 5px 10px;
  overflow: hidden;
}
.yhjgba {
  .el-col {
    padding: 4px;
  }
  .inquire {
    width: 100%;
    height: 40px;
    border: 1px solid rgb(184, 217, 243);
    // background-color: rebeccapurple;
  }
  .concent {
    width: 100%;
    height: 300px;
    display: flex;
    .left {
      width: 70%;
         height: 200px;
    }
    .right {
      width: 30%;
      height: 200px;
renchao@pashanhoo.com committed
155 156
    }
  }
“miaofang committed
157 158
}
</style>