<!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" /]
|
<script type="text/javascript">
|
$(document).ready(function () {
|
$.formValidator.initConfig({
|
formID: "fpform", onError: function (msg) {
|
popupTips(msg)
|
}, onSuccess: function () {
|
if (!(window.top.openConfirm("确定要提交吗?"))) {
|
return false;
|
}
|
document.getElementById("fpform").target = window.top.openDialog("5", "操作",
|
{},
|
{"width": 40, "height": 40, "noclose": true},
|
[{btnId: "tipBtnSure", btnName: "确定", btnStyle: "bluebtn"}]);
|
return true;
|
}
|
});
|
});
|
|
|
</script>
|
</head>
|
|
<body class="personnel_allocation_body">
|
<form id="myform" action="${base}/business/pages/overageLoss/approveOverageLoss.html" method="post">
|
<input type="hidden" id=orderId name="orderId" value="${RequestParameters.orderId}"/>
|
<table class="pab_con" style="margin:0 auto;">
|
<tr>
|
<td style="background:#f2f2f2;"><label><em style="font-size:16px;color:#f00;margin-right:6px;">*</em>处理人</label></td>
|
<td style="text-align:left;">
|
<input type="button" onclick="xz('${projectId}')" value="选择处理人"/><br/>
|
<span id="users" style="color:#333;">分派人员:<em></em></span>
|
<input type="hidden" id="dealId" name="dealId" value=""/>
|
<input type="hidden" id="dealName" name="dealName" value=""/>
|
</td>
|
</tr>
|
|
<tr>
|
<td class="greybg"><label style="background:none;">流转备注</label></td>
|
<td style="padding:0;padding:10px 0;">
|
<textarea class="general" style="width:95%;height:100px;border:0;" id="bz" name="bz"></textarea>
|
</td>
|
</tr>
|
</table>
|
|
</form>
|
<script type="text/javascript">
|
//选择处理人
|
function xz(project_id) {
|
var url = "${base}/business/pages/question/xzry.html?project_id=" + project_id + "&nodeArg=" + '${nodeArg}';
|
window.top.openDialog("3", "人员分派",
|
{},
|
{"width": 60, "height": 80},
|
[{btnId: "btnSure", btnName: "选择", btnStyle: "bluebtn"}],
|
url);
|
}
|
|
function getDealer(dealer, showChecked, isAdmin) {
|
var ary = dealer.split("-");
|
$("#users>em").empty();
|
$("#users>em").append("(" + ary[1] + ")");
|
$("#dealId").val(ary[0]);
|
$("#dealName").val(ary[1]);
|
window.top.hideDialog("3");
|
}
|
|
function onDialogBtnClick(btnID, dialogID, config) {
|
if (btnID == "btnSure") {
|
var dealId = $("#dealId").val();
|
var dealName = $("#dealName").val();
|
var bz = $("#bz").val();
|
if ($.util.isEmpty(dealId)) {
|
popupTips("请选择处理人");
|
return;
|
}
|
$("#myform").submit();
|
|
}
|
}
|
|
|
</script>
|
|
</body>
|
</html>
|