mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-21 00:36:46 +08:00
feat
This commit is contained in:
@@ -3735,12 +3735,15 @@ export default defineComponent({
|
||||
//渲染学员管理操作
|
||||
const getTableDate2 = async () => {
|
||||
// let data2 = state.tableData7;
|
||||
let res = await studentList({
|
||||
let obj = {
|
||||
pageNo: state.currentPage3,
|
||||
pageSize: state.pageSize3,
|
||||
offcoursePlanId: state.offcoursePlanId,
|
||||
name: state.xygl_inputV1,
|
||||
});
|
||||
};
|
||||
// console.log("获取学员信息", obj);
|
||||
let res = await studentList(obj);
|
||||
// console.log("获取学员列表", res);
|
||||
const { rows, total } = res.data.data;
|
||||
state.tableDataTotal3 = total;
|
||||
rows.forEach((item, index) => {
|
||||
@@ -4822,6 +4825,7 @@ export default defineComponent({
|
||||
.then((res) => {
|
||||
console.log("添加学员成功", res);
|
||||
message.success("添加学员成功");
|
||||
getTableDate2();
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log("添加学员失败", err);
|
||||
|
||||
Reference in New Issue
Block a user