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