taskDetailed.html 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <div ng-controller="taskDetailedListCtrl">
  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="bigbox">
  11. <div class="col-sm-2 selectBox">
  12. <div class="head">
  13. <span class="title">年份选择:</span>
  14. <ui-select class="tab-mainDiv-body-content pull-left" style="width:60%" ng-model="yearData.data" theme="bootstrap" ng-change="changeYear()">
  15. <ui-select-match placeholder="">
  16. {{$select.selected.year}}
  17. </ui-select-match>
  18. <ui-select-choices repeat="item in yearList">
  19. <div ng-bind-html="item.year"></div>
  20. </ui-select-choices>
  21. </ui-select>
  22. </div>
  23. <div class="body">
  24. <div ng-repeat="v in monthList" ng-class="{true:'monthBg'}[$index==monthIdx]" class="month" ng-click="selectMonth(v.month,$index)">
  25. {{v.month}}月
  26. </div>
  27. </div>
  28. </div>
  29. <div class="col-sm-10 excalBox">
  30. <div class="head">
  31. <button ng-click="export()">导出</button>
  32. </div>
  33. <div class="body">
  34. <div class="title">信息中心{{yearData.data.year}}年{{monthData}}月份工作总结</div>
  35. <div class="jry_table">
  36. <div class="tit">
  37. <div class="jry_border">序号</div>
  38. <div class="jry_border">目标内容</div>
  39. <div class="jry_border">开始时间</div>
  40. <div class="jry_border">责任人</div>
  41. <div class="jry_border">工作情况</div>
  42. </div>
  43. <div ng-repeat="v in exeData" class="jry_tr">
  44. <div class="jry_border">{{v.item}}</div>
  45. <div class="jry_border">{{v.taskDescribe}}</div>
  46. <div class="jry_border">{{v.month}}</div>
  47. <div class="jry_border">{{v.summary}}</div>
  48. <div class="jry_borderLast" ng-bind-html="v.feedback"></div>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. <style>
  56. .selectBox .head{
  57. height: 50px;
  58. /* line-height: 50px */
  59. padding-top: 12px
  60. }
  61. .selectBox .head .title{
  62. float: left;
  63. width: 40%;
  64. overflow: hidden;
  65. white-space: nowrap;
  66. text-overflow: ellipsis;
  67. margin-top: 5px
  68. }
  69. .selectBox .body{
  70. height: 450px;
  71. border:1px rgb(234,234,234) solid;
  72. padding:0 10px;
  73. padding-top: 10px;
  74. background-color: white
  75. }
  76. .selectBox .body .monthBg{
  77. background-color: rgb(230,238,244)
  78. }
  79. .selectBox .body .month{
  80. height: 30px;
  81. line-height: 30px;
  82. padding-left: 5px;
  83. cursor: pointer;
  84. }
  85. .selectBox .body .month:hover{
  86. background-color: rgb(243, 245, 247)
  87. }
  88. .excalBox .head{
  89. height: 50px;
  90. line-height: 50px
  91. }
  92. .excalBox .head button{
  93. width: 60px;
  94. height: 30px;
  95. line-height: 30px;
  96. border:1px rgb(1,84,149) solid;
  97. color:rgb(1,84,149);
  98. background-color: rgb(234,238,244);
  99. float: right;
  100. border-radius: 4px;
  101. margin-top: 11px
  102. }
  103. .excalBox .body{
  104. height: 450px;
  105. background-color: white;
  106. border:1px rgb(234,234,234) solid;
  107. overflow: hidden;
  108. overflow-y: scroll;
  109. padding:0 24px
  110. }
  111. .excalBox .body::-webkit-scrollbar{
  112. display: none
  113. }
  114. .excalBox .body .title{
  115. text-align: center;
  116. font-size: 16px;
  117. height: 50px;
  118. line-height: 50px
  119. }
  120. .excalBox .body .jry_table{
  121. border:2px rgb(234,234,234) solid;
  122. border-radius: 2px
  123. }
  124. .excalBox .body .jry_table .jry_border{
  125. border:1px rgb(234,234,234) solid;
  126. margin-left: -1px;
  127. margin-top: -1px;
  128. border-right: 0;
  129. display: flex;
  130. align-items:center;
  131. justify-content:center;
  132. flex-wrap:wrap;
  133. height: auto;
  134. padding: 5px
  135. }
  136. .excalBox .body .jry_table .jry_borderLast{
  137. border:1px rgb(234,234,234) solid;
  138. margin-left: -1px;
  139. margin-top: -1px;
  140. border-right: 0;
  141. display: flex;
  142. /* align-items:center; */
  143. /* justify-content:center; */
  144. flex-wrap:wrap;
  145. height: auto;
  146. padding: 5px
  147. }
  148. .excalBox .body .jry_table .tit{
  149. height: 34px;
  150. line-height: 34px;
  151. display: flex
  152. }
  153. .excalBox .body .jry_table .tit div:nth-child(1){
  154. width: 5%;
  155. }
  156. .excalBox .body .jry_table .tit div:nth-child(2){
  157. width: 33%;
  158. }
  159. .excalBox .body .jry_table .tit div:nth-child(3){
  160. width: 15%;
  161. }
  162. .excalBox .body .jry_table .tit div:nth-child(4){
  163. width: 15%;
  164. }
  165. .excalBox .body .jry_table .tit div:nth-child(5){
  166. width: 32%;
  167. }
  168. .excalBox .body .jry_table .jry_tr{
  169. display: flex;
  170. }
  171. .excalBox .body .jry_table .jry_tr div:nth-child(1){
  172. width: 5%;
  173. }
  174. .excalBox .body .jry_table .jry_tr div:nth-child(2){
  175. width: 33%;
  176. }
  177. .excalBox .body .jry_table .jry_tr div:nth-child(3){
  178. width: 15%;
  179. }
  180. .excalBox .body .jry_table .jry_tr div:nth-child(4){
  181. width: 15%;
  182. }
  183. .excalBox .body .jry_table .jry_tr div:nth-child(5){
  184. width: 32%;
  185. }
  186. .bigbox{
  187. height: 550px;
  188. background-color: rgb(249,249,249)
  189. }
  190. </style>