This commit is contained in:
许允枞 2024-09-11 15:18:32 +08:00
parent d5a65f01e9
commit b867600c29
2 changed files with 3 additions and 3 deletions

View File

@ -101,9 +101,9 @@ public class HitRegInfoUserServiceImpl implements IHitRegInfoUserService
List<HitRegInfoUser> hitRegInfoUsers = hitRegInfoUserMapper.selectList(queryWrapper);
//判断里面是否有指导老师并且也是领队老师
for (HitRegInfoUser regInfoUser : hitRegInfoUsers) {
if (regInfoUser.getType().equals("2")){
if ("2".equals(regInfoUser.getType())){
SysUser sysUser = sysUserService.selectUserById(regInfoUser.getUserId());
if ("3".equals(sysUser.getUserType())){
if ("03".equals(sysUser.getUserType())){
//将hitRegInfoUsers删除掉当前老师
hitRegInfoUsers.remove(regInfoUser);
}

View File

@ -124,7 +124,7 @@
<el-table-column label="确认状态" align="center" v-if="techerType == '0' && zdTeacherList.includes(userId)" >
<template >
<div v-if="registrationInformation.status == '0'" style="color:#007bff;"> 待确认</div>
<div v-if="registrationInformation.status == '1'" style="color:green;"> 通过</div>
<div v-if="registrationInformation.status == '1'" style="color:green;"> 同意</div>
<div v-if="registrationInformation.status == '2'" style="color:red;"> 已拒绝</div>
</template>