|
|
@@ -1035,7 +1035,7 @@
|
|
|
:page-size="delRecordPageSize"
|
|
|
layout="total, prev, pager, next, jumper, slot"
|
|
|
:total="delRecordTotal"
|
|
|
- @update:current-page="handleCurrentChange"
|
|
|
+ @update:current-page="delRecordHandleCurrentChange"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -3084,11 +3084,7 @@ const addBatchConcel = () => {
|
|
|
};
|
|
|
|
|
|
// 打开删除记录页面 (--------------------------------------------------)
|
|
|
-const DelRecordClick = async () => {
|
|
|
- delRecordShow.value = true;
|
|
|
- delBatchShow.value = false;
|
|
|
- homeShow.value = false;
|
|
|
- addMemberTitle.value = "删除异常记录";
|
|
|
+const DelRecordList=async ()=>{
|
|
|
let data = {
|
|
|
currentPage: delRecordCurrentPage.value,
|
|
|
pageCount: delRecordPageSize.value,
|
|
|
@@ -3114,6 +3110,13 @@ const DelRecordClick = async () => {
|
|
|
center: true,
|
|
|
});
|
|
|
}
|
|
|
+}
|
|
|
+const DelRecordClick = async () => {
|
|
|
+ delRecordShow.value = true;
|
|
|
+ delBatchShow.value = false;
|
|
|
+ homeShow.value = false;
|
|
|
+ addMemberTitle.value = "删除异常记录";
|
|
|
+ DelRecordList()
|
|
|
};
|
|
|
// 关闭删除记录页面
|
|
|
const delRecordClose = () => {
|
|
|
@@ -3121,6 +3124,11 @@ const delRecordClose = () => {
|
|
|
delBatchShow.value = false;
|
|
|
homeShow.value = true;
|
|
|
};
|
|
|
+const delRecordHandleCurrentChange = (value) => {
|
|
|
+ console.log(value, "每页显示条数");
|
|
|
+ delRecordCurrentPage.value = value;
|
|
|
+ DelRecordList()
|
|
|
+};
|
|
|
|
|
|
// 打开入学登记审核列表页面 (--------------------------------------------------)
|
|
|
const enrollmentList=async ()=>{
|
|
|
@@ -3169,8 +3177,8 @@ const enrollmentClose = () => {
|
|
|
};
|
|
|
const enrollmentHandleCurrentChange = (value) => {
|
|
|
console.log(value, "每页显示条数");
|
|
|
- enrollmentPageSize.value = value;
|
|
|
- enrollmentCurrentPage.value = 1;
|
|
|
+ enrollmentCurrentPage.value = value;
|
|
|
+ enrollmentList()
|
|
|
};
|
|
|
// 改变年级获取班级数据
|
|
|
const enrollmentGradeChange=async ()=>{
|
|
|
@@ -4134,6 +4142,7 @@ const confirmExportSettings = async () => {
|
|
|
departmentId: treeNodeId.value,
|
|
|
name: searchInput.keyWord,
|
|
|
gauageOutfitVos: arr,
|
|
|
+ ifGraduate: searchInput.ifGraduate,
|
|
|
};
|
|
|
let res = await axios({
|
|
|
method: "post",
|
|
|
@@ -5067,8 +5076,13 @@ onUnmounted(() => {
|
|
|
|
|
|
.el-dialog__body {
|
|
|
padding: 0px 20px 20px 20px;
|
|
|
+ height: 800px;
|
|
|
+ // overflow: auto;
|
|
|
+ // display: flex;
|
|
|
+ // flex-direction: column;
|
|
|
.footer {
|
|
|
width: calc(100%);
|
|
|
+ height: calc(100% - 112px);
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
.el-table--fit {
|