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
42
43
44
45
46
| <template>
| <div class="biyeshengStatistics-wrap">
| <table>
| <thead>
| <tr>
| <th>序号</th>
| <th>项目</th>
| <th>2017年</th>
| <th>2018年</th>
| <th>2019年</th>
| <th>2020年</th>
| <th>2021年</th>
| </tr>
| </thead>
| <tbody>
| <tr>
| <th rowspan="3">1</th>
| <td>全国高校本市生源</td>
| <td>2642</td>
| <td>6879</td>
| <td>1586</td>
| <td>8651</td>
| <td>45682</td>
| </tr>
| <tr>
| <td>其中:本科毕业生</td>
| <td>2642</td>
| <td>6879</td>
| <td>1586</td>
| <td>8651</td>
| <td>45682</td>
| </tr>
| </tbody>
| </table>
| </div>
| </template>
|
| <script>
| export default {
| name: "biyeshengStatistics"
| }
| </script>
|
| <style scoped>
|
| </style>
|
|