yz3456
2024-04-25 9aa9c765801fcaa7281df2788400cc61592c005e
ruoyi-ui/src/views/meeting/statistics.vue
@@ -78,6 +78,15 @@
      </el-table>
      <!-- 图表统计 -->
      <el-dialog :title="title2" :visible.sync="open2" width="1500px" append-to-body>
        <div class="p1">
          <h1 style="font-size:21px">每月会议次数统计</h1>
        </div>
        <div class="p1">
          <h1 style="font-size:21px">会议家庭占比统计</h1>
        </div>
      </el-dialog>
      <!-- 新增数据框 -->
      <el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
@@ -146,6 +155,7 @@
       // 显示搜索条件
       showSearch: true,
       open: false,
       open2: false,
       title: "",
       tableData: [{
         id: 1,
@@ -279,7 +289,8 @@
     // 图表统计
     pictureStatistics(){
        this.open2=true;
        this.title2 = "图表统计"
     },
   }
@@ -330,4 +341,11 @@
  .el-table {
    border-radius: 14px 14px 14px 14px;
  }
  .p1{
    width: 700px;
    height: 700px;
    display: inline-block;
    background-color: aqua;
    margin-right: 30px;
  }
  </style>