fix:增加导入小组长成功提示,增加开课编辑考试时只允许编辑时间,删除可继续添加设置

This commit is contained in:
wyx
2023-03-30 15:12:00 +08:00
parent fc6f0b2272
commit 993e034f81
3 changed files with 59 additions and 16 deletions

View File

@@ -815,6 +815,7 @@
</div>
<ImpoterGroupLeader
title="导入小组长"
@change="handleChangeGroupLeader"
:data="{ targetId: projectId, type: 1 }"
:url="`/admin/studentGroup/importGroup`"
>
@@ -4897,6 +4898,13 @@ export default {
function previewPic() {
state.modal1Visible = true;
}
// 导入小组长成功回调
function handleChangeGroupLeader(e) {
if(e=="end"){
message.destroy();
message.success("导入小组长成功");
}
}
return {
...toRefs(state),
...toRefs(levelList),
@@ -5020,7 +5028,8 @@ export default {
jdSelectChange1,
studytimeRank,
xsSelectChange,
changePagination
changePagination,
handleChangeGroupLeader
};
},
};