|
|
@ -42,6 +42,7 @@ RouterPlugin.install = function (option = {}) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
//动态路由
|
|
|
|
//动态路由
|
|
|
|
formatRoutes: function (aMenu = [], first) { |
|
|
|
formatRoutes: function (aMenu = [], first) { |
|
|
|
|
|
|
|
|
|
|
|
const aRouter = []; |
|
|
|
const aRouter = []; |
|
|
|
const propsDefault = website.menu; |
|
|
|
const propsDefault = website.menu; |
|
|
|
if (aMenu && aMenu.length === 0) return; |
|
|
|
if (aMenu && aMenu.length === 0) return; |
|
|
@ -55,9 +56,6 @@ RouterPlugin.install = function (option = {}) { |
|
|
|
query = oMenu[propsDefault.query], |
|
|
|
query = oMenu[propsDefault.query], |
|
|
|
meta = oMenu[propsDefault.meta]; |
|
|
|
meta = oMenu[propsDefault.meta]; |
|
|
|
|
|
|
|
|
|
|
|
if (option.keepAlive) { |
|
|
|
|
|
|
|
meta.keepAlive = option.keepAlive; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
const isChild = !!(children && children.length !== 0); |
|
|
|
const isChild = !!(children && children.length !== 0); |
|
|
|
const oRouter = { |
|
|
|
const oRouter = { |
|
|
|
path: path, |
|
|
|
path: path, |
|
|
@ -131,7 +129,7 @@ export const formatPath = (ele, first) => { |
|
|
|
const propsDefault = website.menu; |
|
|
|
const propsDefault = website.menu; |
|
|
|
const icon = ele[propsDefault.icon]; |
|
|
|
const icon = ele[propsDefault.icon]; |
|
|
|
ele[propsDefault.icon] = !icon ? propsDefault.iconDefault : icon; |
|
|
|
ele[propsDefault.icon] = !icon ? propsDefault.iconDefault : icon; |
|
|
|
ele.meta = { keepAlive: ele.isOpen == 2 }; |
|
|
|
ele.meta = { keepAlive: ele.isOpen == 2 }; |
|
|
|
const iframeComponent = 'components/iframe/main'; |
|
|
|
const iframeComponent = 'components/iframe/main'; |
|
|
|
const iframeSrc = href => { |
|
|
|
const iframeSrc = href => { |
|
|
|
return href.replace(/&/g, '#'); |
|
|
|
return href.replace(/&/g, '#'); |
|
|
|