<!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/ewAddDailyCheck.html" ><span></span></a>日常巡检提交审核
|
|
</header>
|
<section class="wlresponse">
|
<p>
|
<span>审核备注</span>
|
<i><textarea id="note" cols="" rows="3" class="event-text"></textarea></i>
|
</p>
|
<button class="bluebtn bluebtnsmal2" onclick="savelz()" >确定</button>
|
</section>
|
<script type="text/javascript">
|
function savelz(){
|
|
var note = $("#note").val();
|
if($.util.isEmpty(note)) {
|
popupTips("请输入审核备注");
|
return;
|
}
|
$.post("${base}/ewyw/ewWorkplan/ewshbz.html",{"note":note},function(data,textStatus) {
|
window.location.href = "${base}/ewyw/ewWorkplan/ewAddDailyCheck.html?sh=1";
|
|
});
|
|
}
|
</script>
|
</body>
|
</html>
|