<!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/ewQuestion/ewQuestionDeal.html?orderId=${RequestParameters.orderId}&flowId=${RequestParameters.flowId}" ><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">
|
var nodeId = '${RequestParameters.nodeId}';
|
function savelz(){
|
|
var note = $("#note").val();
|
if($.util.isEmpty(note)) {
|
popupTips("请输入流转备注");
|
return;
|
}
|
$.post("${base}/ewyw/ewQuestion/ewlzbz.html",{"nodeId":nodeId,"note":note},function(data,textStatus) {
|
window.location.href = "${base}/ewyw/ewIncident/ewoption.html?wt=1";
|
|
});
|
|
}
|
</script>
|
</body>
|
</html>
|