123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <!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">
- <!-- <link rel="stylesheet" type="text/css" href="http://www.jq22.com/jquery/font-awesome.4.6.0.css"> -->
- <script src="__PUBLIC__/wxapp/js/jquery-1.8.3/jquery.min.js"></script>
- <link rel="stylesheet" href="__PUBLIC__/wxapp/css/jdxf.css">
- <title>维保记录详情</title>
- <style>
- .bjbox{
- margin: 15px 0;
- }
- .mar{
- margin: 0 30px;
- }
- .bjbox-c{
- font-size: 14px;
- color: #646464;
- }
- .box{
- height: 20px;
- background-color: #F5F5F5;
- }
- .mar-words {
- float: right;
- font-size: 18px;
- }
- .height1dcdcdc {
- display: block;
- height: 1px;
- margin-top: 2px;
- margin-bottom: 20px;
- background: #DCDCDC;
- }
-
- </style>
- </head>
- <body>
- <!-- 头部 -->
- <div class="hand">
- <span class="hand-i"><!-- <i class="fa fa-angle-down"></i> -->
- <a href="__MODULE__/Inspection/maintenance_record{$tokenurl}/companyid/{$companyid}">
- <img style="height: 16px;" src="__PUBLIC__/wxapp/images/jd_07.png" alt="">
- </a>
- </span>
- 维保记录详情
- </div>
-
- <!-- 内容块 -->
- <div class="bjbox">
- <div class="bjbox-c mar">
- <span>{$res.wc_time}</span>
- <span style="float: right;">{$res.spot_status}</span>
- </div>
- <div class="mar">
- <span class="ownername">{$res.plan_name}</span>
- <!--<span class="mar-words" style="color: #02a6de;">{$list.clstatus}</span>-->
- </div>
- </div>
- <div class="box"></div>
- <!-- 基本信息 -->
- <div class="bjbox">
- <div class="bjbox-c mar">基本信息</div>
- <div class="height1dcdcdc"></div>
- <div class="mar">
- 所属单位: {$res.owner_name}<br>
- 单位地址: {$res.owner_address}<br>
- 维保点位: {$res.spot_name}<br>
- 点位地址: {$res.spot_address}<br>
- 预期时间: {$res.ywc_time}<br>
- 完成时间: {$res.wc_time}
- </div>
- </div>
-
- <div class="box"></div>
- <!-- 维保信息 -->
- <div class="bjbox">
- <div class="bjbox-c mar">维保信息</div>
- <div class="height1dcdcdc"></div>
- <div class="mar">
- 维保人员: {$res.name}<br>
- 联系方式: {$res.phone}<br>
- 维保描述: {$res.dwsb_remarks}
- </div>
- </div>
- <div class="box"></div>
- <div class="bjbox">
- <div class="bjbox-c mar">维保图片</div>
- <div class="height1dcdcdc" style="margin-bottom: 0"></div>
- <div class="mar" style="margin: 0">
- <!--{$list.h5}-->
- <img src="{$res.report_photos}" style="width: 100%" alt="">
- </div>
- </div>
- </body>
- </html>
|