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