taskList.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <div ng-controller="taskListListCtrl">
  2. <section id="page-title">
  3. <div class="row">
  4. <!-- <i class="iconfont icon-bianji pull-left"></i> -->
  5. <div class="col-sm-8">
  6. <h1 class="mainTitle">任务列表<i tooltip='月度任务列表,点击操作处理任务' tooltip-placement="right" class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"></i></h1>
  7. </div>
  8. </div>
  9. </section>
  10. <div class="selectBotBox">
  11. <div class="search_condition">
  12. <div class="search_children">
  13. <span>责任人:</span>
  14. <ui-select class="tab-mainDiv-body-content" style="width:160px" ng-model="personData.data" theme="bootstrap">
  15. <ui-select-match placeholder="">
  16. {{$select.selected.name}}
  17. </ui-select-match>
  18. <ui-select-choices repeat="item in personListData">
  19. <div ng-bind-html="item.name"></div>
  20. </ui-select-choices>
  21. </ui-select>
  22. </div>
  23. <div class="search_children">
  24. <span>开始时间:</span>
  25. <input type="text" class="form-control pull-right incidentsearchsize" style="width:160px !important;border-color: #dedede;"
  26. datepicker-popuptime="yyyy-MM-dd" ng-model="jry_filterdata.taskSub.strStartTime" max-date="jry_filterdata.taskSub.strEndTime"
  27. is-open="startOpened" hour-time=true ng-init="startOpened = false" close-text="关闭"
  28. ng-click="startOpen($event)" placeholder="" />
  29. </div>
  30. <div class="search_children">
  31. <span>结束时间:</span>
  32. <input type="text" class="form-control selectzise pull-right incidentsearchsize" style="width:160px !important;border-color: #dedede;"
  33. datepicker-popuptime="yyyy-MM-dd" ng-model="jry_filterdata.taskSub.strEndTime" hour-time=true
  34. min-date="jry_filterdata.taskSub.strStartTime" is-open="endOpened" ng-init="endOpened = false"
  35. close-text="关闭" ng-click="endOpen($event)" placeholder="" />
  36. </div>
  37. <div class="search_children">
  38. <span>状态:</span>
  39. <ui-select class="tab-mainDiv-body-content" style="width:160px" ng-model="stateData.data" theme="bootstrap">
  40. <ui-select-match placeholder="">
  41. {{$select.selected.name}}
  42. </ui-select-match>
  43. <ui-select-choices repeat="item in stateListData">
  44. <div ng-bind-html="item.name"></div>
  45. </ui-select-choices>
  46. </ui-select>
  47. </div>
  48. </div>
  49. <div class="search_btn">
  50. <button ng-click="search()">搜索</button>
  51. <button ng-click="clean()">重置</button>
  52. </div>
  53. </div>
  54. <div ui-i18n="{{lang}}">
  55. <div class="grid_height">
  56. <div id="grid1" ui-grid="gridOptions" ui-grid-pagination external-scopes="$scope" ui-grid-resize-columns ui-grid-auto-resize class="grid"></div>
  57. </div>
  58. </div>
  59. </div>
  60. <style>
  61. /* 按钮盒子 */
  62. .selectBotBox{
  63. display: flex;
  64. background-color: rgb(249,249,249);
  65. padding:0px 5px 10px 5px;
  66. margin-bottom: 10px
  67. }
  68. .selectBotBox .search_condition{
  69. width: 80%;
  70. display: flex;
  71. flex-wrap:wrap;
  72. }
  73. .selectBotBox .search_condition .search_children{
  74. width: 230px;
  75. height: 28px;
  76. line-height: 28px;
  77. display: flex;
  78. margin-right: 10px;
  79. margin-top: 10px
  80. }
  81. .selectBotBox .search_btn{
  82. width: 20%;
  83. display: flex;
  84. justify-content:flex-end;
  85. margin-top: 10px
  86. }
  87. .selectBotBox .search_btn button{
  88. width: 80px;
  89. height: 28px;
  90. border-radius: 2px
  91. }
  92. .selectBotBox .search_btn button:nth-child(1){
  93. background-color: rgb(0,83,149);
  94. border: 1px rgb(0,83,149) solid;
  95. color: white;
  96. margin-right: 10px
  97. }
  98. .selectBotBox .search_btn button:nth-child(2){
  99. border:1px rgb(222,222,222) solid;
  100. color: rgb(132,132,132);
  101. background-color: white
  102. }
  103. </style>