12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php if (!defined('THINK_PATH')) exit();?><!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>
- <link rel="stylesheet" href="/jdxf/Public/html/bootstrap-3.3.7/css/bootstrap.min.css">
- <script src="/jdxf/Public/html/jquery-1.11.3.min.js"></script>
- <script src="/jdxf/Public/html/bootstrap-3.3.7/js/bootstrap.js"></script>
- <script src="/jdxf/Public/weixin/js/jquery-1.8.2.min.js"></script>
- <script type="text/javascript" src="/jdxf/Public/weixin/js/flashcanvas.js"></script>
- <style>
- input{border:none;}
- </style>
- </head>
- <body>
- <form action="/jdxf/wxapp2.php/Home/Maintinfo/tj" enctype="multipart/form-data" method="post">
- <div style="padding: 10px">
- <div class="alert alert-info" role="alert">
- <h4><span class="glyphicon glyphicon-th" aria-hidden="true"></span> 报修</h4>
- </div>
- <div class="form-group">
- <input type="hidden" name="id" value="<?php echo ($id); ?>">
- <table class="table table-condensed" style="word-break:break-all;">
- <tr ><td align="right">报修地址:</td><td><?php echo ($address); ?></td></tr>
- <tr ><td align="right">故障类型:</td><td width="50%"><?php echo ($sj_type_name); ?></td></tr>
- <tr ><td align="right">上传图片:</td><td><input type="file" name="img" name="file"/></td></tr>
- <tr ><td align="right">报修描述:</td><td><textarea name="jg_remarks" rows='7' cols='30'></textarea></td></tr>
- </table>
- <button type="submit" class="btn btn-info col-xs-12">提交报修</button>
- </div>
- </div>
- </form>
- </body>
- </html>
|