ui-knowledgelist.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!--<div class="listheader">
  2. <div class="headfont">{{to.label}}
  3. <span class="dropdown pull-right" dropdown on-toggle="toggled(open)">
  4. <a href class="dropdown-toggle" dropdown-toggle>
  5. <i class="fa fa-ellipsis-v" style="padding:5px 15px"></i>
  6. </a>
  7. <ul class="dropdown-menu">
  8. <li><a><i class="ti-reload margin-right-5"></i>刷新</a></li>
  9. <li><a ng-click="removes()"><i class="ti-close margin-right-5"></i>隐藏</a></li>
  10. </ul>
  11. </span>
  12. <span class="pull-right"><a>更多</a></span>
  13. </div>-->
  14. <div class="headfont listheader">{{to.label}}
  15. <span class="pull-right">
  16. <a href class="dropdown-toggle" dropdown-toggle ng-click="more(field)" ng-if="!$parent.$parent.$parent.$parent.changedata">
  17. <i class="icon iconfont icon-zhankai fontcolor-three fontsizes-14 margin-right-5"></i>更多
  18. </a>
  19. </span>
  20. <span class="dropdown pull-right" dropdown on-toggle="toggled(open)" ng-if="$parent.$parent.$parent.$parent.changedata">
  21. <a href class="dropdown-toggle" dropdown-toggle>
  22. <i class="fa fa-ellipsis-v" style="padding:5px 15px"></i>
  23. </a>
  24. <ul class="dropdown-menu">
  25. <li><a ng-click="more(field)"><i class="ti-settings margin-right-5"></i>更多</a></li>
  26. <li><a ng-click="removes(field)"><i class="ti-close margin-right-5"></i>隐藏</a></li>
  27. </ul>
  28. </span>
  29. </div>
  30. <div class="listboder">
  31. <div class="ngtableheader" ng-class="{ngtableheight:myData.length>5}">
  32. <table class="table table-striped tabelcontent">
  33. <thead>
  34. <th width="15%" min-width="60px" class="text-center">知识库编号</th>
  35. <th width="15%" class="text-center">知识库主题</th>
  36. <th width="10%" class="text-center">创建人</th>
  37. <!--<th width="10%">受理人</th>-->
  38. <th width="20%" class="text-center">知识库发布时间</th>
  39. <!--<th width="20%">区域地点</th>
  40. <th width="10%">状态</th>-->
  41. </thead>
  42. </table>
  43. </div>
  44. <div class="ngtablecontent">
  45. <table class="table table-striped tabelcontent">
  46. <tbody>
  47. <tr ng-repeat="user in myData">
  48. <td width="15%" class="text-center">{{user.solutionNumber}}</td>
  49. <td width="15%" class="text-center">{{user.title}}</td>
  50. <td width="10%" class="text-center">{{user.createUserName}}</td>
  51. <!--<td width="10%">{{user.acceptUser.name}}</td>-->
  52. <td width="20%" class="text-center">{{user.updatetime|date:'yyyy-MM-dd hh:mm:ss'}}</td>
  53. <!--<td width="20%">{{user.area.area}} {{user.place.place}}</td>
  54. <td width="10%">{{user.state.name}}</td>-->
  55. </tr>
  56. </tbody>
  57. </table>
  58. </div>
  59. </div>
  60. <!--</div>-->