<!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>
|