This commit is contained in:
yuping
2023-07-27 18:05:38 +08:00
parent 6f50a0f123
commit 1caf3d65f6
2 changed files with 7 additions and 1 deletions

View File

@@ -51,7 +51,7 @@
<a-button <a-button
class="cus-btn" class="cus-btn"
style="background: #4ea6ff; color: #fff; width: 100px" style="background: #4ea6ff; color: #fff; width: 100px"
@click="getStuList" @click="search"
:loading="stuAsyncLoading" :loading="stuAsyncLoading"
> >
<template #icon> <template #icon>
@@ -603,6 +603,11 @@ function showChangeGroupModal() {
checkgroupParam.value.checkBatch = true; checkgroupParam.value.checkBatch = true;
} }
function search(){
tableParam.value.pageNo = 1
getStuList()
}
// 导出数据 // 导出数据
function exportTaskStu() { function exportTaskStu() {
console.log("props.datasource", props); console.log("props.datasource", props);

View File

@@ -3314,6 +3314,7 @@ export default defineComponent({
}; };
const handleSearchTable3 = () => { const handleSearchTable3 = () => {
state.manageStuLoading = true; state.manageStuLoading = true;
state.currentPage222 = 1
getCourseStudentList(); getCourseStudentList();
}; };