<!doctype html>
|
<html>
|
<head>
|
[#include "/business/wechat/include/title.html" /]
|
[#include "/business/wechat/include/wheader.html" /]
|
</head>
|
|
<body>
|
<header class="kltit">
|
<a href="javascript:history.go(-1);"><span></span></a>关闭原因
|
|
</header>
|
<section class="wlresponse">
|
<p>
|
<span>关闭原因</span>
|
<i><textarea name="closeNote" id="closeNote" placeholder="请填写关闭原因" cols="" rows="3" class="event-text"></textarea></i>
|
</p>
|
<button class="bluebtn bluebtnsmal2" onclick="checkSubmit();">确定</button>
|
</section>
|
</body>
|
<script type="text/javascript">
|
function checkSubmit(){
|
var closeNote = $("#closeNote").val();
|
if(closeNote == ""){
|
popupTips('请填写关闭原因!');
|
return;
|
}
|
$.post("${base}/ewyw/ewRemind/ewCloseWorkFlow.html",{'orderId':'${orderId}','nodeId':'${nodeId}','closeNote':closeNote},function(data,textStatus) {
|
if(data == '1') {
|
popupTips("操作成功", 2000);
|
window.location.href = "${base}/ewyw/ewRemind/ewMyRemind.html";
|
} else {
|
popupTips("操作失败", 2000);
|
}
|
});
|
}
|
</script>
|
</html>
|