案例,如果密级不是内部的,不能查看

This commit is contained in:
daihh
2023-01-05 14:59:43 +08:00
parent d64032519f
commit ddf0308834
2 changed files with 7 additions and 12 deletions

View File

@@ -415,7 +415,12 @@ export default {
};
},
viewTopic(data) {
if(data.confidentialityLevel=='内部'){
this.$router.push({path:'/case/detail',query:{id:data.id}})
}else{
this.$message.warning("非内部密级案例不能查看");
}
}
}
};