Commit 1da26f8b authored by LiXuyang's avatar LiXuyang

Merge remote-tracking branch 'origin/master'

parents a53622e0 f10a3280
...@@ -774,22 +774,31 @@ export const kinshipParseRoute: AppRouteRecordRaw = { ...@@ -774,22 +774,31 @@ export const kinshipParseRoute: AppRouteRecordRaw = {
/**Sql开发*/ /**Sql开发*/
export const sqlExecuteRoute: AppRouteRecordRaw = { export const sqlExecuteRoute: AppRouteRecordRaw = {
path: '/scriptDevelopment/sqlDevelopment/sqlExecute', path: '/scriptDevelopment/sqlDevelopment',
name: 'sqlExecute', name: 'sqlExecute',
component: LAYOUT, component: LAYOUT,
meta: { meta: {
title: 'Sql开发', title: 'Sql开发',
icon: '', icon: '',
hidden: true, hidden: true,
currentActiveMenu: '/scriptDevelopment/sqlDevelopment/sqlExecute', currentActiveMenu: '/scriptDevelopment/sqlDevelopment',
}, },
children: [ children: [
{ {
path: 'sqlExecute', path: 'index',
name: 'index',
component: () => import('@/views/scriptDevelopment/sqlDevelopment/index.vue'),
meta: {
title: 'Sql开发',
icon: '',
},
},
{
path: 'sqlExecute/sqlExecute',
name: 'SqlExecute', name: 'SqlExecute',
component: () => import('@/views/scriptDevelopment/sqlDevelopment/sqlExecute/sqlExecute.vue'), component: () => import('@/views/scriptDevelopment/sqlDevelopment/sqlExecute/sqlExecute.vue'),
meta: { meta: {
title: 'Sql执行', title: 'Sql编辑',
icon: '', icon: '',
}, },
}, },
......
...@@ -188,7 +188,7 @@ const processOptions = reactive<any>( ...@@ -188,7 +188,7 @@ const processOptions = reactive<any>(
} }
if (page === '开发'){ if (page === '开发'){
router.push({ router.push({
path: '', path: '/scriptDevelopment/sqlDevelopment/index',
}) })
} }
if (page === '质量模板'){ if (page === '质量模板'){
......
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