123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <style>
- /* 返回按钮 */
- .back{
- cursor: pointer;
- color: #5e9de6;
- height: 30px;
- line-height: 30px;
- position: absolute;
- top:5px;
- right: 30px;
- }
- .back img{
- margin-top: -3px
- }
- .back span{
- display: inline-block;
- margin-left: 5px;
- }
- .searchlistback{
- height: 61px;
- background-color: #f9fbff!important
- }
- .searchlistback div{
- width: 180px;
- height: 57px;
- border-top: 4px #eeeeee solid;
- text-align: center;
- line-height: 57px;
- float: left;
- cursor: pointer;
- font-weight: bold
- }
- .searchlistback div:hover{
- background-color: #e5eef8;
- border-top: 4px #6ea1dd solid;
- }
- .clik{
- background-color: #ddedff;
- border-top: 4px #4a90e2 solid!important;
- }
- </style>
- <div ng-controller="hc_seeCtrl">
- <section id="page-title">
- <div class="row">
- <div class="col-sm-8">
- <h1 class="mainTitle">耗材详情<i tooltip='耗材详情,点击操作处理任务' tooltip-placement="right" class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"></i></h1>
- </div>
- <a ng-click="back()">
- <div class="back">
- <img src="assets/images/jiang/left_arrow.png" alt="">
- <span>返回</span>
- </div>
- </a>
- </div>
- </section>
- <div class="listbote">
- <div class="row searchlistback" id="searchid">
- <a><div ng-class="history" ng-click="history_fn()">操作历史记录</div></a>
- <a><div ng-class="relation" ng-click="relation_fn()">关联流程</div></a>
- </div>
- </div>
- <div ui-view></div>
- </div>
|