mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 22:06:45 +08:00
组员导出
This commit is contained in:
@@ -375,8 +375,7 @@ export default {
|
||||
gangw: value.studentJobName, //岗位
|
||||
completeStageCnt: value.completeStageCnt, //当前完成阶段数
|
||||
totalStageCnt: value.totalStageCnt, //总阶段数
|
||||
// progress: value.completeStageCnt + "/" + value.totalStageCnt,
|
||||
progress: value.progress, // 任务进度
|
||||
progress: value.completeStageCnt + "/" + value.totalStageCnt,
|
||||
|
||||
stutime: toDate(value.beginStudyTime / 1000, "Y-M-D"), //开始学习时间
|
||||
};
|
||||
@@ -395,7 +394,6 @@ export default {
|
||||
};
|
||||
state.tableDataTotal = -1;
|
||||
groupMemberList(objf).then((res) => {
|
||||
debugger
|
||||
console.log(res.data.data, "获取学员列表");
|
||||
if (res.data.code === 200) {
|
||||
state.total = res.data.data.total;
|
||||
@@ -549,7 +547,7 @@ export default {
|
||||
function exportGroupMember() {
|
||||
console.log("props.datasource", props);
|
||||
window.open(
|
||||
`${process.env.VUE_APP_BASE_API}/admin/studentGroup/exportGroupMember/${props.projectId}/${props.chooseGroupId}`
|
||||
`${process.env.VUE_APP_BASE_API}/admin/studentGroup/exportGroupMember?pid=${props.projectId}&groupId=${props.chooseGroupId}&stageId=${-1}`
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user