<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>index</title>
|
[#include "/business/pages/include/static.html" /]
|
<link rel="stylesheet" href="${common_static}/static/plugins/ztree/css/zTreeStyle/zTreeStyle.css" type="text/css">
|
<script type="text/javascript" src="${common_static}/static/plugins/ztree/js/jquery.ztree.all-3.5.min.js"></script>
|
</head>
|
|
<body>
|
|
|
<div>
|
<form id="sendBackForm" method="post">
|
<input name="orderId" value="${orderId}" type="hidden"/>
|
<input name="lastNodeTemplateId" value="${lastNodeTemplateId}" type="hidden"/>
|
<input name="nodeId" value="${nodeId}" type="hidden"/>
|
<table class="edit_layout" style="margin-top:30px">
|
<tr>
|
<th nowrap><label>退回人:</label></th>
|
<td>${node.CURRENT_DEALER_NAME}</td>
|
<th nowrap><label>退回时间:</label></th>
|
<td>${node.DEALTIME}</td>
|
</tr>
|
<tr>
|
<th class="postop" nowrap><label>回退原因:</label></th>
|
<td colspan="3">${node.DEAL_NOTE}</td>
|
</tr>
|
</table>
|
</form>
|
</div>
|
|
</body>
|
<script type="text/javascript">
|
|
|
//点击事件
|
function onDialogBtnClick(btnID, dialogID, config){
|
if(btnID == "btnSure"){
|
$("#sendBackForm").submit();
|
//window.top.hideDialog(dialogID);
|
}
|
}
|
|
</script>
|
</html>
|