普通招生

This commit is contained in:
guochunsi
2026-01-16 11:10:54 +08:00
parent 7e1239cc0f
commit 0adbd148e2
8 changed files with 178 additions and 71 deletions

View File

@@ -20,10 +20,10 @@
<div class="layout-padding-auto layout-padding-view">
<el-tabs v-model="activeName" @tab-click="handleTabClick">
<el-tab-pane label="回校列表" name="tab">
<tab-index ref="tabIndexRef" />
<TabIndex ref="tabIndexRef" />
</el-tab-pane>
<el-tab-pane label="回校统计" name="static">
<static-index ref="staticIndexRef" />
<StaticIndex ref="staticIndexRef" />
</el-tab-pane>
</el-tabs>
</div>
@@ -54,4 +54,13 @@ const handleTabClick = (tab: any) => {
</script>
<style lang="scss" scoped>
:deep(.el-tabs) {
height: 100%;
display: flex;
flex-direction: column;
.el-tab-pane {
height: 100%;
}
}
</style>