maint-list.html 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  5. <meta charset="utf-8">
  6. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
  7. <meta content="yes" name="apple-mobile-web-app-capable">
  8. <meta content="black" name="apple-mobile-web-app-status-bar-style">
  9. <meta content="telephone=no" name="format-detection">
  10. <title>设备维保</title>
  11. </head>
  12. <link rel="stylesheet" type="text/css" href="__PUBLIC__/wxapp/css/style.css">
  13. <script src="__PUBLIC__/wxapp/js/jquery-1.11.3.min.js"></script>
  14. <body>
  15. <!--头部-->
  16. <div class="header"><a class="comblack" href="__MODULE__/Maint/index{$tokenurl}/companyid/{$companyid}"></a> 设备维保</div>
  17. <!--内容-->
  18. <div class="content">
  19. <!--导航-->
  20. <div class="fire-alarm-title">
  21. <span onclick="tabset(this)" class="title-label select-color"><if condition="$type eq fire">火警</if>
  22. <if condition="$type eq water">水警</if><if condition="$type eq efire">电气火灾</if>
  23. <if condition="$type eq rtu">RTU设备</if><if condition="$type eq fume">烟感设备</if></span>
  24. <a style="display:inline-block;font-size:20px;margin-top:15px;">共<b style="color:red;">{$count}</b>台设备,<b style="color:red;">{$counts}</b>条记录</a>
  25. </div>
  26. <!--选择内容-->
  27. <div class="content-bottom" id="content-data" >
  28. <ul>
  29. <volist name="ResData" id="vo">
  30. <li class="content-bottom-li">
  31. <a style="text-decoration:none;padding-bottom:10px;">
  32. <!--<p>{$vo.company} </p>-->
  33. <p>设备ID:{$vo.owner_code}
  34. <p>记录时间:{$vo.datetime} <span style="float:right;margin-right:15px;">状态:<if condition="$vo.status eq 1">故障<else/>正常</if></span></p>
  35. <p>记录人:{$vo.editor} <span style="float:right;margin-right:15px;"><if condition="$vo.qianming">已签名</if></span></p>
  36. </p>
  37. </a>
  38. </li>
  39. </volist>
  40. </ul>
  41. </div>
  42. </div>
  43. <!--底部-->
  44. <div class="footer"></div>
  45. </body>
  46. <style type="text/css">
  47. .title-label { width: 20%; color: #000000;
  48. line-height: 55px; font-size: 16px; display: inline-block; text-align: center;
  49. float: left; cursor: pointer; border-bottom: 4px solid #DCDCDC;}
  50. .select-color { border-bottom: 4px solid #C91E30;}
  51. .fire-content { box-sizing: border-box; padding: 25px;}
  52. .content-bottom-li{ clear: both; text-align: left; font-size: 16px; line-height: 26px; border-bottom: 1px solid #DCDCDC;}
  53. .content-bottom-li a:first-child{ padding-left: 5%; padding-top: 20px; padding-bottom: 20px; display: block; }
  54. .content-bottom ul li span{ font-size: 14px; color:#646464; display: block; float: right; }
  55. .next-list{ color:#DBDBDB; margin-right: 5%; clear: both; }
  56. .span-ffist{ font-size: 16px; clear: both; display: inline-block; width: 78%;}
  57. </style>
  58. </html>