| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link href="../css/layer/need/layer.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <title>新增诉求工单</title>
- <style>
- .input {
- background-color: #FFF;
- background-image: none;
- border: 1px solid #ccc;
- border-radius: 1px;
- color: inherit;
- padding: 6px 12px
- }
-
- .fjnr {
- padding: 0!important;
- border: none!important;
- }
- .Source{
- width: 171px;
- display: block;
- height: 32px;
- }
- #type{
- height: 32px;
- width: 255px;
- padding-left: 10px;
- }
- </style>
- </head>
- <body>
- <div class="wrapper wrapper-content animated fadeInRight">
- <div style="padding: 10px;" class="tj_content clearFix">
- <div class="Common">
- <table>
- <tr>
- <th class="Importent">上报类型:</th>
- <td>
- <select name="" id="type" class="select">
- <!--<option value="">请选择上报类型</option>-->
- <option value="1">通知公告</option>
- <option value="2">工作总结</option>
- <option value="3">工作动态</option>
- </select>
- </td>
- </tr>
- <tr>
- <th class="Importent">标题:</th>
- <td colspan="7">
- <input id="title" type="text" style="width: 100%;" />
- </td>
- </tr>
- <tr>
- <th class="Importent">内容:</th>
- <td colspan="7">
- <textarea data-adaptheight id="content" name="" rows="" cols="" style="width: 100%;height: 85px;"></textarea>
- </td>
- </tr>
- <tr>
- <th>附件上传:</th>
- <td colspan="7">
- <div class="fileBox">
- </div>
- <input class="input" type="file" name="upFile" id="upFile" multiple="multiple" style="display: none;">
- <input class="input" type="button" value="上传" id="scwj" />
- <input type="hidden" id="file" />
- <span style="color:#FF0000; border: none;">
- (文件格式为png,jpg,mp4,mp3,pdf,doc,docx,xls,xlsx)
- </span>
- </td>
- </tr>
-
- <tr class="Nows_box Hidens">
- <th>办理内容:</th>
- <td colspan="7">
- <input type="text" style="width: 100%;" id="result" />
- </td>
- </tr>
-
- </table>
- <div class="btn_box">
- <button class="btns BC">保存</button>
- <!--<button class="btns SavedSubmit">保存并提交</button>-->
- </div>
- </div>
- </div>
- </div>
- <script src="../css/laydate/laydate.js"></script>
- <script src="../js/adjustHeight.js"></script>
- <script src="js/AddMaterialReport.js"></script>
-
-
- </body>
- </html>
|