mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-22 09:16:46 +08:00
项目内选择人员列表
This commit is contained in:
@@ -374,12 +374,15 @@ const projectRowSelection = computed(() => ({
|
||||
preserveSelectedRowKeys: true,
|
||||
}));
|
||||
const getStu = () => {
|
||||
debugger
|
||||
let obj = {
|
||||
studentName: proStudentName.value,
|
||||
pageNo: procurrentPage.value,
|
||||
pageSize: 10,
|
||||
projectId: props.id,
|
||||
pid: props.id,
|
||||
type: props.type
|
||||
};
|
||||
debugger
|
||||
projectListTotal.value = -1;
|
||||
console.log("获取项目学员", obj);
|
||||
getStuPage(obj).then((res) => {
|
||||
|
||||
@@ -601,6 +601,7 @@ const stuPagination = computed(() => ({
|
||||
}));
|
||||
|
||||
function changePagination(page) {
|
||||
debugger
|
||||
tableParam.value.pageNo = page;
|
||||
getStuList();
|
||||
}
|
||||
@@ -608,6 +609,7 @@ function changePagination(page) {
|
||||
function getStuList() {
|
||||
tableData.value.loading = true;
|
||||
console.log("tableParam.value", tableParam.value);
|
||||
debugger
|
||||
getStuPage(tableParam.value).then((res) => {
|
||||
console.log("学员管理-获取学员", res.data);
|
||||
tableData.value.total = res.data.data.total;
|
||||
|
||||
Reference in New Issue
Block a user