123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!--<div class="listheader">
- <div class="headfont">{{to.label}}
- <span class="dropdown pull-right" dropdown on-toggle="toggled(open)">
- <a href class="dropdown-toggle" dropdown-toggle>
- <i class="fa fa-ellipsis-v" style="padding:5px 15px"></i>
- </a>
- <ul class="dropdown-menu">
- <li><a><i class="ti-reload margin-right-5"></i>刷新</a></li>
- <li><a ng-click="removes()"><i class="ti-close margin-right-5"></i>隐藏</a></li>
- </ul>
- </span>
- <span class="pull-right"><a>更多</a></span>
- </div>-->
- <div class="headfont listheader">{{to.label}}
- <span class="pull-right">
- <a href class="dropdown-toggle" dropdown-toggle ng-click="more(field)" ng-if="!$parent.$parent.$parent.$parent.changedata">
- <i class="icon iconfont icon-zhankai fontcolor-three fontsizes-14 margin-right-5"></i>更多
- </a>
- </span>
- <span class="dropdown pull-right" dropdown on-toggle="toggled(open)" ng-if="$parent.$parent.$parent.$parent.changedata">
- <a href class="dropdown-toggle" dropdown-toggle>
- <i class="fa fa-ellipsis-v" style="padding:5px 15px"></i>
- </a>
- <ul class="dropdown-menu">
- <li><a ng-click="more(field)"><i class="ti-settings margin-right-5"></i>更多</a></li>
- <li><a ng-click="removes(field)"><i class="ti-close margin-right-5"></i>隐藏</a></li>
- </ul>
- </span>
- </div>
- <div class="listboder">
- <div class="ngtableheader" ng-class="{ngtableheight:myData.length>5}">
- <table class="table table-striped tabelcontent">
- <thead>
- <th width="15%" min-width="60px" class="text-center">知识库编号</th>
- <th width="15%" class="text-center">知识库主题</th>
- <th width="10%" class="text-center">创建人</th>
- <!--<th width="10%">受理人</th>-->
- <th width="20%" class="text-center">知识库发布时间</th>
- <!--<th width="20%">区域地点</th>
- <th width="10%">状态</th>-->
- </thead>
- </table>
- </div>
- <div class="ngtablecontent">
- <table class="table table-striped tabelcontent">
- <tbody>
- <tr ng-repeat="user in myData">
- <td width="15%" class="text-center">{{user.solutionNumber}}</td>
- <td width="15%" class="text-center">{{user.title}}</td>
- <td width="10%" class="text-center">{{user.createUserName}}</td>
- <!--<td width="10%">{{user.acceptUser.name}}</td>-->
- <td width="20%" class="text-center">{{user.updatetime|date:'yyyy-MM-dd hh:mm:ss'}}</td>
- <!--<td width="20%">{{user.area.area}} {{user.place.place}}</td>
- <td width="10%">{{user.state.name}}</td>-->
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <!--</div>-->
|