This commit is contained in:
chenlw 2017-01-10 08:39:38 +08:00
parent 835d676323
commit fdb373e0a9
3 changed files with 55 additions and 32 deletions

View File

@ -7,6 +7,7 @@
<ul class="nav nav-tabs sj_nav_taps fl" ng-show="navbarItems.length">
<li role="presentation" ng-repeat="item in navbarItems" class="{{item.class}}"><a href="#" ng-click="selectBatchItem(item)">{{item.label}}</a></li>
</ul>
<div class="fr sj_searchbox">
<input type="text" class="sj_search_input" ng-model="keyQuery" placeholder="请选择或输入关键字,多关键字请用空格隔开" onkeydown="if(event.keyCode==13){searchButton.click()}" />
<a href="#" class="sj_search_btn" id="searchButton" ng-click="search()"></a>
@ -30,6 +31,7 @@
<i class="glyphicon glyphicon-export"></i> 迁移
</button>
<span class="pull-right">&nbsp;</span>
<!-- <button style="background-image: -webkit-linear-gradient(top, #fdfdfd,rgb(19, 236, 116));" -->
<button ng-show="isShow" class="btn pull-right sj_btn_grey " ng-disabled="!id && tableConfig.selectedItems.length == 0" ng-click="createOracleService(id || tableConfig.selectedItems)">
<i class="glyphicon glyphicon-play-circle"></i> 启动
</button>

View File

@ -6,7 +6,18 @@ table,tr,td{border:0;cellspacing:0; cellpadding:0;}
ol,ul,li{ list-style-type:none}
a:link,a:visited{color:#7f7f7f;text-decoration:none;}
a:hover,a:active{color:#000;}
.fl{ float:left;}
.fl{
float:left;
}
.data_manager_button{
width:280px;
height: 30px;
border: 0px;
position:fixed;
float:right;
left:13%;
top:95%
}
.fr{ float:right;}
.cl{ clear:both; overflow:hidden;}

View File

@ -47,8 +47,18 @@ module Developer{
},
{
href: UrlHelpers.join(context,"Overview/","task"),
label: "查看任务",
title: "任务查看"
label: "任务管理",
title: "任务查看",
items: [{
href: UrlHelpers.join(context,"Overview","hot/data-type/all"),
label: "全部",
title: "全部数据"
},
{
href: UrlHelpers.join(context,"Overview/","hot/data-type/social-security"),
label: "社保",
title: "社保数据"
}]
},
]);
}