You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
virtual-patient-web/src/router/modules/generalRules.ts

35 lines
839 B
TypeScript

export default {
path: "/generalRules",
redirect: "/generalRules/responseStrategy",
meta: {
title: "通用规则",
icon: "weixinFavorites",
rank: 14
},
children: [
{
path: "/generalRules/responseStrategy",
name: "ResponseStrategy",
component: () =>
import("@/views/generalRules/responseStrategy/index.vue"),
meta: {
title: "应答策略 ",
showLink: true,
showParent: true,
roles: ["admin", "common"]
}
},
{
path: "/generalRules/materialCenter",
name: "MaterialCenter",
component: () => import("@/views/generalRules/materialCenter/index.vue"),
meta: {
title: "素材中心 ",
showLink: true,
showParent: true,
roles: ["admin", "common"]
}
}
]
} as RouteConfigsTable;