This commit is contained in:
guochunsi
2026-02-02 18:32:54 +08:00
parent 21562e57a6
commit b018f8f4c7
3 changed files with 402 additions and 178 deletions

View File

@@ -187,8 +187,8 @@
<!-- 操作按钮始终在最后 -->
<template #actions>
<el-form-item>
<el-button type="primary" @click="handleFilter(search)" icon="Search">查询</el-button>
<el-button @click="resetQuery" icon="Refresh">重置</el-button>
<el-button type="primary" @click="handleFilter(search)" icon="Search">查询</el-button>
<el-button @click="resetQuery" icon="Refresh">重置</el-button>
</el-form-item>
</template>
</search-form>
@@ -2719,7 +2719,7 @@
background: var(--el-bg-color);
:deep(.el-card__body) {
padding: 18px 20px;
padding: 18px 20px 5px 20px;
}
}
@@ -2731,12 +2731,12 @@
background: var(--el-bg-color);
:deep(.el-card__header) {
padding: 14px 20px;
padding: 20px 20px 15px;
border-bottom: 1px solid var(--el-border-color-lighter);
}
:deep(.el-card__body) {
padding: 18px;
padding: 15px 20px 20px;
}
}
@@ -2773,13 +2773,20 @@
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 8px;
}
.header-right {
display: flex;
align-items: center;
gap: 8px;
padding-left: 10px;
}
// 主表格行高稍增加
.teacherbase-table {
:deep(.el-table__body td),
:deep(.el-table__header th) {
padding: 9px 0;
}
}
// 列表内链接与占位(主表格与弹窗内通用)