更新
This commit is contained in:
parent
d5a65f01e9
commit
b867600c29
@ -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);
|
||||
}
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user