tpl_flow_apply.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
  6. <title><?=$da['title']?></title>
  7. <link rel="stylesheet" type="text/css" href="mode/weui/weui.min.css"/>
  8. <link rel="stylesheet" type="text/css" href="web/res/fontawesome/css/font-awesome.min.css">
  9. <link rel="stylesheet" type="text/css" href="webmain/css/rui.css">
  10. <script type="text/javascript" src="js/jquery.js"></script>
  11. <script type="text/javascript" src="js/js.js"></script>
  12. <style>
  13. </style>
  14. <script>
  15. ismobile = 1;
  16. function xuantype(o1){
  17. var val = o1.value;
  18. if(val){
  19. js.backto('typelx'+val+'');
  20. }
  21. }
  22. function initApp(){
  23. js.setapptitle();
  24. }
  25. </script>
  26. </head>
  27. <body>
  28. <?php if($showheader==1){?>
  29. <div>
  30. <div class="r-header" style="padding-top:<?=$cenghei?>px" >
  31. <div onclick="location.reload()" id="header_title" class="r-header-text"><?=$da['title']?></div>
  32. <span onclick="js.back()" class="r-position-left r-header-btn"><i class="icon-chevron-left"></i></span>
  33. </div>
  34. <div class="blank50" id="header_line" style="height:<?=($cenghei+50)?>px"></div>
  35. </div>
  36. <?php }?>
  37. <div style="background:white"><div style="margin:0px 10px"><select style="width:100%;border:none;background:none;height:40px;font-size:16px" onchange="xuantype(this)">
  38. <option value="">-快速选择分类-</option>
  39. <?php
  40. $count=0;
  41. foreach($modearr as $type=>$rows){
  42. $count++;
  43. echo '<option value="'.$count.'">'.$type.'('.count($rows).')</option>';
  44. }
  45. ?>
  46. </select></div></div>
  47. <?php
  48. $count=0;$count1=0;
  49. foreach($modearr as $type=>$rows){
  50. $count1++;
  51. ?>
  52. <div class="weui_cells_title" id="typelx<?=$count1?>"><?=$type?>(<?=count($rows)?>)</div>
  53. <div class="weui_cells weui_cells_access">
  54. <?php
  55. foreach($rows as $k=>$rs){
  56. $count++;
  57. ?>
  58. <a class="weui_cell" href="<?=$rs['url']?>">
  59. <div class="weui_cell_bd weui_cell_primary">
  60. <p><?=$rs['title']?></p>
  61. </div>
  62. <div class="weui_cell_ft">
  63. </div>
  64. </a>
  65. <?php
  66. }
  67. ?>
  68. </div>
  69. <?php
  70. }
  71. ?>
  72. <div align="center" class="weui_cells_title">总共<?=$count?>个模块</div>
  73. </div>
  74. </body>
  75. </html>