cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
</head>
 
<body>
<header class="kltit">
    <div class="present"><a href="javascript:saveIncident();">提交</a></div><a href="javascript:history.go(-1);"><span></span></a>一键报修
</header>
<form id="myform" action="${base}/uwyw/saveYjbx.html" method="post">
        <div class="swiper-slide">
            <section class="wlresponse">
                <p>
                    <span>报修标题</span>
                    <i><input name="bx_title" id="bx_title" placeholder="请输入报修标题" type="text" class="enter" value=""></i>
                </p>
                <p>
                    <span>报修内容</span>
                    <i><textarea name="bx_content" placeholder="请填写保修内容" id="bx_content" cols="" rows="3" class="event-text"></textarea></i>
                </p>
            </section>
        </div>
</form> 
<script type="text/javascript">
    function saveIncident(){
        $("#myform").submit();
    }
</script>     
</body>
</html>