You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
/// <reference path="../../includes.ts"/>
|
|
/// <reference path="../../developer/ts/developerNavigation.ts"/>
|
|
|
|
module System{
|
|
export var pluginName = "System";
|
|
export var context = "/system";
|
|
export var pluginPath = "plugins/system/"
|
|
export var templatePath = pluginPath + 'html/';
|
|
|
|
export function shareInit($scope){
|
|
//创建二级子菜单
|
|
$scope.subTabConfig = Developer.activateCurrent([
|
|
{
|
|
href: UrlHelpers.join(context, 'system-list'),
|
|
label: '信息系统清单',
|
|
title: '查看信息系统清单'
|
|
},
|
|
{
|
|
href: UrlHelpers.join(context, 'system-verification'),
|
|
label: '信息系统校验',
|
|
title: '校验信息系统'
|
|
},
|
|
{
|
|
href: UrlHelpers.join(context, 'system-sqlManagement'),
|
|
label: '信息系统脚本管理',
|
|
title: '管理sql脚本'
|
|
},
|
|
{
|
|
href: UrlHelpers.join(context, 'system-help'),
|
|
label: '帮助',
|
|
title: '行政区划代码或系统代码检索',
|
|
items: [{
|
|
href: UrlHelpers.join(context, 'system-help', 'regionalism-search'),
|
|
title: '行政区划代码检索',
|
|
label: '行政区划检索'
|
|
},
|
|
{
|
|
href: UrlHelpers.join(context, 'system-help', 'system-search'),
|
|
title: '系统代码检索',
|
|
label: '系统代码检索'
|
|
}]
|
|
}]);
|
|
}
|
|
} |