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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>工单关闭</title>
[#include "/business/pages/include/static.html" /]
</head>
 
<body>
 
 
<div>
<form id="myform" method="post">    
    <input name="orderId" value="${orderId}" type="hidden"/>
    <input name="nodeId" value="${nodeId}" type="hidden"/>
    <table class="edit_layout" style="margin-top:30px">
        <tr>
            <th class="postop"><label class="required">关闭原因说明:</label></th>
            <td colspan="3"><textarea id="closeNote" name="closeNote" value="" class="general"></textarea></td>
        </tr>
       </table>
</form>
</div>
 
</body>
<script type="text/javascript">
    
    $(document).ready(function(){
        $.formValidator.initConfig({formID:"myform",onError:function(msg){popupTips(msg)},onSuccess:function(){
            document.getElementById("myform").target = window.top.openDialog("1","操作",
                         {},
                         {"width":40,"height":40},
                         [{btnId:"tipBtnSure", btnName:"确定", btnStyle:"bluebtn"}]);
                         return true;
        }});
    });
    
    //点击事件
    function onDialogBtnClick(btnID, dialogID, config){
        if(btnID == "btnSure"){
            var closeNote = $("#closeNote").val();
            if($.trim(closeNote)==''){
                window.top.popupTips('请填写关闭原因', 1);
                return;
            }
            $("#myform").submit();
             window.top.hideDialog(dialogID);
        }
    }
    
</script>
</html>