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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html class="no-js">
<head>
    <meta charset="utf-8">
    <title>分配人员</title>
    <!--(start) public flies-->
    [#include "/business/pages/include/static.html" /]
    [#include "/component/newupload.html" /]
    [#include "/component/HtmlEditor.html" /]
    [#include "/component/newsel.html" /]
    <script type="text/javascript">
        $(document).ready(function () {
            $.formValidator.initConfig({
                formID: "fpform", onError: function (msg) {
                    popupTips(msg)
                }, onSuccess: function () {
                    document.getElementById("fpform").target = window.top.openDialog("insideAllot", "操作",
                        {},
                        {"width": 60, "height": 80, "noclose": true},
                        [{btnId: "tipBtnSure", btnName: "确定", btnStyle: "bluebtn"}]);
                    return true;
                }
            });
            $("#type").formValidator({empty: false, onShow: "请选择变更类型!", onFocus: "变更类型不能为空"}).inputValidator({
                min: 1,
                onError: "变更类型不能为空"
            });
        });
 
 
    </script>
</head>
 
<body class="personnel_allocation_body end_task_body">
 
<form id="fpform" action="${base}/business/pages/change/selectChangeType.html" method="post">
    <input type="hidden" name="orderId" value="${orderId}"/>
    <input type="hidden" name="flowId" value="${flowId}"/>
    <input type="hidden" name="projectId" value="${projectId}"/>
    <input type="hidden" name="is_release" value="2"/>
    <table class="edit_layout" style="margin-left:40px;">
        <tr>
            <th><label class="required">是否需要CCB审批:</label></th>
            <td>
                <input type="radio" name="is_ccb" value="1"/>是
                <input type="radio" name="is_ccb" value="2" checked/>否
                <div id="is_releaseTip" style="display:inline-block;"></div>
            </td>
        </tr>
        <tr>
            <th ><label class="required">变更类型:</label></th>
            <td>
                标准变更
                <input type="hidden" id="type" name="type" value="2"/>
            </td>
        </tr>
    </table>
</form>
<script type="text/javascript">
    function onDialogBtnClick(btnID, dialogID, config) {
        if (btnID == "btnSure") {
            $("#fpform").submit();
        }
    }
 
 
</script>
 
</body>
</html>