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