田源
2023-11-22 474047882bc1d22b910783057f00ad875e411dab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<template>
  <!--  新增右侧按钮-->
  <div>
    <div style=" display: flex; justify-content: flex-end;">
      <el-button plain type="primary" @click="addHandler">新增</el-button>
    </div>
    <!--  新增对话框-->
    <el-dialog
      title="新增数据统计分析"
      :visible.sync="addVisible"
      append-to-body
    >
    </el-dialog>
  </div>
 
</template>
 
<script>
import lineChart from "../../components/StatisticsComponent/lineChart"
 
export default {
  components: {
    lineChart
  },
  name: "statisticPage",
  data() {
    return {
      addVisible: false,
    }
  },
  methods: {
    addHandler() {
      this.addVisible = true;
    }
  }
}
</script>
 
<style scoped>
 
</style>