|
@@ -37,6 +37,11 @@ export default {
|
|
}
|
|
}
|
|
// 获取当前一例的顶级菜单编码
|
|
// 获取当前一例的顶级菜单编码
|
|
const parentCode = item.code.substring(0, 2);
|
|
const parentCode = item.code.substring(0, 2);
|
|
|
|
+ // 如果编码 = 013(章程)进入章程页
|
|
|
|
+ if (item.code == '013') {
|
|
|
|
+ this.$router.push(`/constitution/${item.code}?parentCode=${parentCode}`);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
// 类型为1(栏目)进入列表页
|
|
// 类型为1(栏目)进入列表页
|
|
if (item.type == '1') this.$router.push(`/list/${item.code}?parentCode=${parentCode}`);
|
|
if (item.type == '1') this.$router.push(`/list/${item.code}?parentCode=${parentCode}`);
|
|
// 类型为2(单页)进入单页页面
|
|
// 类型为2(单页)进入单页页面
|