task.html 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
  6. <meta name="format-detection" content="telephone=no" />
  7. <meta name="format-detection" content="email=no" />
  8. <title>task</title>
  9. <link rel="stylesheet" href="../css/reset.css">
  10. <link rel="stylesheet" href="../css/style.css">
  11. <style>
  12. html,
  13. body {
  14. height: 100%;
  15. }
  16. .task {
  17. height: 100%;
  18. background-color: #f7f7f7;
  19. }
  20. .task_nav {
  21. border-bottom: 1px solid #efefef;
  22. }
  23. .task_nav li {
  24. width: 20%;
  25. height: 3rem;
  26. line-height: 3rem;
  27. text-align: center;
  28. background-color: #fff;
  29. float: left;
  30. }
  31. .task_nav li span {
  32. display: inline-block;
  33. height: 100%;
  34. color: #3d3d3d;
  35. font-size: 1.2rem;
  36. padding: 0 .4rem;
  37. -webkit-transition:color .3s;
  38. transition:color .3s;
  39. }
  40. .task_nav li.active span {
  41. color: #29aec1;
  42. border-bottom: 2px solid #29aec1;
  43. }
  44. .task_con {
  45. overflow: auto;
  46. }
  47. .task_con li {
  48. height: 8rem;
  49. margin-bottom: .3rem;
  50. background-color: #fff;
  51. }
  52. .task_con li>div {
  53. display: inline-block;
  54. }
  55. .task_status {
  56. width: 2rem;
  57. height: 100%;
  58. font-size: 1.1rem;
  59. text-align: center;
  60. white-space: pre-wrap;
  61. color: #fff;
  62. background-color: #f26522;
  63. }
  64. .task_status span {
  65. display: inline-block;
  66. -webkit-transform: translateY(50%);
  67. transform: translateY(50%);
  68. }
  69. .task_taskCon {
  70. padding: .7rem;
  71. }
  72. .task_taskCon p {
  73. margin-bottom: .5rem;
  74. color: #212121;
  75. font-size: 1.1rem;
  76. }
  77. .task_taskCon p:nth-of-type(3) {
  78. margin-bottom: .3rem;
  79. }
  80. .task_dbqk {
  81. color: #f26522;
  82. font-size: 1rem;
  83. border: 1px solid #f26522;
  84. border-radius: .3rem;
  85. padding: 0 .4rem;
  86. margin-left: .8rem;
  87. }
  88. .task_pssj,
  89. .task_wcsj {
  90. display: inline-block;
  91. height: 1.2rem;
  92. line-height: 1.2rem;
  93. font-size: .9rem;
  94. color: #fff;
  95. padding: 0 .3rem;
  96. border-radius: .3rem;
  97. }
  98. .task_pssj {
  99. background-color: #bd8cbf;
  100. margin-right: .5rem;
  101. }
  102. .task_wcsj {
  103. background-color: #65ba8e;
  104. }
  105. .task_jt {
  106. height: 100%;
  107. line-height: 8rem;
  108. font-size: 1.5rem;
  109. color: #b5b5b5;
  110. }
  111. </style>
  112. </head>
  113. <body>
  114. <div class="task flex-wrap flex-column">
  115. <div class="task_nav">
  116. <ul class="clearFix">
  117. <li><span>进行中</span></li>
  118. <li><span>未开始</span></li>
  119. <li><span>临期</span></li>
  120. <li><span>逾期</span></li>
  121. <li><span>已完结</span></li>
  122. </ul>
  123. </div>
  124. </div>
  125. <script src="../script/jquery-3.1.0.min.js"></script>
  126. <script type="text/javascript" src="../script/api.js"></script>
  127. <script>
  128. apiready = function() {
  129. try{
  130. api.closeFrameGroup({
  131. name: 'taskGroup'
  132. });
  133. }catch(e){}
  134. reload();
  135. document.body.onclick=function () {
  136. api.sendEvent({
  137. name: 'clInput'
  138. });
  139. }
  140. }
  141. function reload(num) {
  142. var navLi = $api.domAll(".task_nav li");
  143. var nav = $api.dom(".task_nav");
  144. var winData = JSON.parse(localStorage.getItem("window"));
  145. var thisIndex=null;
  146. // if (api.getPrefs({
  147. // sync: true,
  148. // key: 'taskOpen'
  149. // })) {
  150. // }
  151. var index = num || api.pageParam.index || 0;
  152. for (var i = 0; i < navLi.length; i++) {
  153. ! function(i) {
  154. navLi[i].onclick = function() {
  155. // $api.removeCls($api.dom(nav, 'li.active'), 'active');
  156. // $api.addCls(navLi[i], 'active');
  157. api.setFrameGroupIndex({
  158. name: 'taskGroup',
  159. index: i
  160. });
  161. }
  162. }(i)
  163. }
  164. $api.removeCls($api.dom(nav, 'li.active'), 'active');
  165. $api.addCls(navLi[index], 'active');
  166. api.openFrameGroup({
  167. name: 'taskGroup',
  168. rect: {
  169. x: 0,
  170. y: winData.headerH + $api.offset(nav).h,
  171. w: 'auto',
  172. h: winData.mainH - $api.offset(nav).h
  173. },
  174. index: index,
  175. preload: 5,
  176. frames: [{
  177. name: 'task-frame2',
  178. url: 'task-frame2.html',
  179. bgColor: '#f7f7f7',
  180. bounces: true
  181. }, {
  182. name: 'task-frame1',
  183. url: 'task-frame1.html',
  184. bgColor: '#f7f7f7',
  185. bounces: true
  186. }, {
  187. name: 'task-frame3',
  188. url: 'task-frame3.html',
  189. bgColor: '#f7f7f7',
  190. bounces: true
  191. }, {
  192. name: 'task-frame4',
  193. url: 'task-frame4.html',
  194. bgColor: '#f7f7f7',
  195. bounces: true
  196. }, {
  197. name: 'task-frame5',
  198. url: 'task-frame5.html',
  199. bgColor: '#f7f7f7',
  200. bounces: true
  201. }]
  202. }, function(ret, err) {
  203. if (index) {
  204. index=null;
  205. return;
  206. }
  207. thisIndex=index;
  208. $api.removeCls($api.dom(nav, 'li.active'), 'active');
  209. $api.addCls(navLi[ret.index], 'active');
  210. });
  211. api.setPrefs({
  212. key: 'taskOpen',
  213. value: true
  214. });
  215. api.addEventListener({name:"searchVal"},function (data) {
  216. switch ($(".task_nav li.active").index()){
  217. case 1:
  218. sendmsg("search1",data.value.val);
  219. break;
  220. case 0:
  221. sendmsg("search2",data.value.val);
  222. break;
  223. case 2:
  224. sendmsg("search3",data.value.val);
  225. break;
  226. case 3:
  227. sendmsg("search4",data.value.val);
  228. break;
  229. case 4:
  230. sendmsg("search5",data.value.val);
  231. break;
  232. }
  233. })
  234. function sendmsg(name,value) {
  235. api.sendEvent({
  236. name: name,
  237. extra: {val: value}
  238. });
  239. }
  240. }
  241. function closeGroup(num) {
  242. // var nav = $api.dom(".task_nav");
  243. // var navLi = $api.domAll(".task_nav li");
  244. // $api.removeCls($api.dom(nav, 'li.active'), 'active');
  245. // $api.addCls(navLi[num || 0], 'active');
  246. api.closeFrameGroup({
  247. name: 'taskGroup'
  248. });
  249. }
  250. </script>
  251. </body>
  252. </html>