-- fix bug

This commit is contained in:
yuping
2023-02-27 19:07:46 +08:00
parent d3d9681a62
commit f430d8bdf6
4 changed files with 18 additions and 20 deletions

View File

@@ -391,7 +391,6 @@ const getStu = () => {
console.log("获取项目学员", obj);
getStuPage(obj).then((res) => {
console.log("获取项目学员", res);
if (res.data.code === 200) {
let arr = res.data.data.records;
let array = [];
arr.map((value) => {
@@ -408,7 +407,6 @@ const getStu = () => {
});
projectList.value = array;
projectListTotal.value = res.data.data.total;
}
});
};
getStu();