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
| <template>
| <div class="shiyeDanweiRenyuanQingkuang-wrap">
| <el-table
| :data="tableData"
| style="width: 100%">
| <el-table-column
| prop="year"
| label="年份">
| </el-table-column>
| <el-table-column
| prop="fanwei"
| label="范围">
| </el-table-column>
| </el-table>
| </div>
| </template>
|
| <script>
| export default {
| name: "shiyeDanweiRenyuanQingkuang",
| data() {
| return {
| tableData: []
| }
| }
| }
| </script>
|
| <style scoped>
|
| </style>
|
|