Commit 892a2e2f by 薛文刚

研判报告

parent ad527249
......@@ -326,4 +326,12 @@ export default [
title: "嫌疑人编辑"
}
},
{/*研判报告*/
path: "/ypbg",
name: "ypbg",
component: () => import("@/views/magl/ypbg.vue"),
meta: {
title: "研判报告"
}
},
]
......@@ -153,6 +153,12 @@ let maglPropLeftMenu = [
index: "4-2",
className: "iconfont iconhecha-xiangxixuanzhong"
},
{
id: "ypbg",
label: "研判报告",
index: "4-3",
className: "iconfont iconhecha-xiangxixuanzhong"
},
]
},
{
......
......@@ -167,7 +167,7 @@ export default {
leftMenu,
msg
},
data() {
data () {
return {
realname: JSON.parse(sessionStorage.getItem("userInfo")).realname,
dialogFormVisible: true,
......@@ -212,7 +212,7 @@ export default {
}
},
methods: {
tabClick(active) {
tabClick (active) {
debugger
var obj1 = {
total: 3,
......@@ -281,11 +281,11 @@ export default {
}
},
closeTzgg() {
closeTzgg () {
this.dialogFormVisible = false;
},
changeName(index) {
changeName (index) {
if (index.indexOf("-") == -1) {
this.name = maglPropLeftMenu[index - 1].label;
} else {//子级的情况有-,如3-1
......@@ -293,16 +293,16 @@ export default {
this.name = maglPropLeftMenu[arr[0] - 1].children[arr[1] - 1].label;
}
},
collapse() {
collapse () {
this.isCollapseP = !this.isCollapseP;
},
toDp() {
toDp () {
let routeData = this.$router.resolve({
path: "/ykgldpIndex"
});
window.open(routeData.href, "_blank");
},
changeSidebarIndex(index, item) {
changeSidebarIndex (index, item) {
debugger
if (index.indexOf("-") == -1) {
if (index == '5') {//数据可视化
......@@ -397,6 +397,11 @@ export default {
path: "/tjbb",
});
window.open(routeUrl.href, '_blank');
} else if (index == "4-3") {
let routeUrl = this.$router.resolve({
path: "/ypbg",
});
window.open(routeUrl.href, '_blank');
}
// else if (index == '4-1') {//统计报表
// window.open(url.tjbh)
......@@ -415,7 +420,7 @@ export default {
},
},
mounted() {
mounted () {
}
......
<template>
<div>123</div>
</template>
<script>
export default {
name: "ypbg",
}
</script>
<style>
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment