cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
</head>
 
<body>
<header class="kltit">
    <a href="${base}/ewyw/ewWorkplan/ewDailyInfo.html?id=${RequestParameters.id}" ><span></span></a>日常巡检审核
 
</header>
<section class="wlresponse">
<input type="hidden" name="id" id="id" value="${RequestParameters.id}"/>
    <p class="next2">
        <span>审核结果</span>
        <label>
        <select name="flag" id="flag" class="select" >
        <option value="1" >通过</option>
        <option value="2" >不通过</option>
        </select>
        </label>
        
    </p>
    <p>
        <span>审核备注</span>
        <i><textarea name="note" id="note" cols="" rows="3" class="event-text"></textarea></i>
    </p>
    <button class="bluebtn bluebtnsmal2" onclick="dailysh()" >确定</button>
</section>
 
<script type="text/javascript">
function dailysh() {
    var id = $("#id").val();
    var flag = $("#flag").val();
    var note = $("#note").val();
    $.post("${base}/ewyw/ewWorkplan/saveDailySh.html",{"id":id,"flag":flag,"note":note},function(data,textStatus) {
         window.location.href =  "${base}/ewyw/ewWorkplan/ewoption.html?result="+data+"&sh=1";
     });
}
</script>
</body>
</html>