|
@@ -52,6 +52,7 @@
|
|
|
<el-table :data="list">
|
|
|
<el-table-column prop="user_name" label="用户名" width="180" />
|
|
|
<el-table-column prop="user_real_name" label="姓名" width="180" />
|
|
|
+ <el-table-column prop="user_sn" label="学号" width="80" />
|
|
|
<el-table-column prop="org_name" label="机构名称" width="180" />
|
|
|
<el-table-column prop="user_email" label="邮箱" width="180" />
|
|
|
<el-table-column prop="join_org_time" label="加入机构时间" width="160" />
|
|
@@ -224,7 +225,9 @@ function getBatchRegisterProgress(batch_register_student_task_id) {
|
|
|
}
|
|
|
)
|
|
|
.then(is_continue => {
|
|
|
- if (!is_continue) return;
|
|
|
+ if (!is_continue) {
|
|
|
+ return pageQueryOrgStudentUserList();
|
|
|
+ }
|
|
|
timer = setTimeout(() => {
|
|
|
getBatchRegisterProgress(batch_register_student_task_id);
|
|
|
}, 100);
|