<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <script type="text/javascript" src="/static/jquery-2.2.4.min.js"></script> <script type="text/javascript" src="/static/layer/layer.js"></script> <script type="text/javascript" src="/admin/js/common.js"></script> <link rel="stylesheet" href="/static/bootstrap-3.3.7/css/bootstrap.css"> <link rel="stylesheet" href="/static/h5/css/common.css"> <title>详情</title> <style> body{ background-color: #F1F1F1; } .container{ max-width: 750px; height: auto; margin: 0 auto; padding: 0px 6px; } .patrol-details-all{ width: 100%; height: auto; background-color: #ffffff; border-radius: 10px; padding: 0px 13px; margin-top: 5px; } .patrol-over{ width: 100%; height: 40px; line-height: 40px; color: var(--themeColor); border-bottom: 1.2px solid #B3C9C4; font-weight: 600; font-size: 15px; letter-spacing: 1px; } .patrol-over-content{ width: 100%; height: 75px; } .patrol-over-info{ width: 100%; height: 35px; line-height: 35px; border-bottom:1px solid #F1F1F1; } .left{ font-size: 14px; color: #0f0f0f; float: left; letter-spacing: 1px; } .right{ font-size: 13px; color: #A9A9A9; float: right; } .patrol-item{ width: 100%; height: auto; margin-top: 5px; padding: 0px 13px; background-color: #ffffff; border-radius: 10px; overflow: hidden; } .patrol-item-title{ width: 100%; height: 40px; line-height: 40px; color: var(--themeColor); font-weight: 600; font-size: 15px; letter-spacing: 1px; } .patrol-item-content{ width: 100%; height: 35px; line-height: 35px; /*margin-bottom: 5px;*/ /*border-bottom: 1px solid #f1f1f1;*/ } .patrol-item-content text{ display: inline-block; width: 90%; font-size: 14px; color: #0f0f0f; float: left; letter-spacing: 1px; } .patrol-item-content img{ max-width: 10%; width: 20px; height: 20px; float: right; margin-top: 8px; } .report-content{ width: 100%; height: auto; background-color: #ffffff; border-radius: 10px; margin-top: 5px; padding: 0px 13px; overflow: hidden; } .report-content-info{ width: 100%; height: auto; padding: 10px 0px; font-size: 14px; letter-spacing: 1px; overflow: hidden; } .report-image{ width: 100%; height: auto; background-color: #ffffff; border-radius: 10px; margin-top: 5px; padding: 12px 60px 5px 60px; overflow: hidden; } .images{ display: inline-block; width: 50px; height: 60px; margin-left: 6px; margin-top: 8px; } .images img{ width: 50px; height: 60px; } .report-hint{ width: 100%; height: 20px; line-height: 20px; text-align: center; margin-top: 20px; font-size: 13px; color: #A9A9A9; } .footer-back{ position: fixed; z-index: 1000; width: 100%; height: 45px; line-height: 45px; background-color: #ffffff; bottom: 0; left: 0; box-shadow: 0px 0px 10px 0px rgba(26, 25, 26, 0.05); display: table-cell; vertical-align: middle; text-align: center; } .footer-back a img{ width: 43px; height: 43px; } .forms-content{ width: 100%; height: 35px; border-top: 1.2px solid #B3C9C4; background-color: #ffffff; } .forms-content-left{ width: 100px; height: 35px; line-height: 35px; display: inline-block; font-size: 14px; color: #0f0f0f; float: left; letter-spacing: 1px; } .forms-content-right{ width: 100px; height: 30px; line-height: 30px; display: inline-block; font-size: 14px; color: #0f0f0f; float: right; letter-spacing: 1px; text-align: right; } .forms-remark{ width: 100%; height: auto; padding: 5px 3px 10px 3px; font-size: 13px; color: var(--themeColor); letter-spacing: 1px; } </style> </head> <body> <div class="container"> <!-- 完成情况--> <div class="patrol-details-all"> <div class="patrol-over">完成情况</div> <div class="patrol-over-content"> <div class="patrol-over-info"> <text class="left">{$info['patrol_type']}人员:</text> <text class="right">{$info['patrol_user']}</text> </div> <div class="patrol-over-info" style="border-bottom:0"> <text class="left">记录时间:</text> <text class="right">{$info['patrol_time']}</text> </div> </div> </div> <!-- 巡更项--> {if $info['forms']} <div class="patrol-item"> <div class="patrol-item-title">{$info['patrol_type']}项</div> {foreach $info['forms'] as $k=>$v} {foreach $v['forms'] as $kk=>$vv } {if $vv['type'] == 0} <div class="patrol-item-content"> <text>{$vv['title']}</text> <img src="/img/h5/over2x.png"> </div> {/if} {if ($vv['type'] == 1)} <div class="forms-content"> <div class="forms-content-left">{$vv['title']}</div> <div class="forms-content-right">{$vv['result']}</div> </div> {if (!empty($vv['remark']) && (isset($vv['remark'])))} <div class="forms-remark">{$vv['remark']}</div> {/if} {/if} {/foreach} {/foreach} </div> {/if} <!-- 汇报内容--> <div class="report-content"> <div class="patrol-over">汇报内容</div> <div class="report-content-info">{$info['content']}</div> </div> {if !empty($info['img'])} <div class="report-image"> {foreach $info['img'] as $k=>$v} <div class="images"> <img src="{$v}" onclick="open_img(this)"> </div> {/foreach} <div class="report-hint">(点击可查看图片详细信息)</div> </div> {/if} <div class="footer-back"> <a href="javascript:;" onclick="javascript:history.back(-1);"><img src="/img/back.png"></a> </div> </div> </body> </html>