mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-11 20:06:44 +08:00
修复案例标题链接打开页面问题
This commit is contained in:
@@ -697,7 +697,8 @@ export default {
|
|||||||
},
|
},
|
||||||
viewTopic(data) {
|
viewTopic(data) {
|
||||||
if (data.confidentialityLevel == '内部') {
|
if (data.confidentialityLevel == '内部') {
|
||||||
this.$router.push({ path: '/case/detail', query: { id: data.id } })
|
// this.$router.push({ path: '/case/detail', query: { id: data.id } })
|
||||||
|
window.open(this.webBaseUrl+'/case/detail?id='+data.id , '_blank')
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning("非内部密级案例不能查看");
|
this.$message.warning("非内部密级案例不能查看");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user