| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <!-- by qianqw 20150317 -->
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <!-- end -->
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>资讯审核明细</title>
- <link href="${pageContext.request.contextPath }/main.css" rel="stylesheet" type="text/css" />
- <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <script src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript" src="/shares/js/file.js"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/core/base.js" type="text/javascript"></script>
- <script type="text/javascript" src="/shares/datePicker/WdatePicker.js"></script>
- <script src="${pageContext.request.contextPath}/liger/lib/json2.js" type="text/javascript"></script>
- <script type="text/javascript" src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/ligerui.all.js"></script>
- <script type="text/javascript">
- var commentGrid = null;
- var supportGrid = null;
- var checkValue = new Array(); //定义一个数组
- var i = 0;
- var curTab = 1;
- $(function (){
-
- });
- /**
- * 不同意
- */
- function auditReject(universalid){
- $.ligerDialog.prompt('驳回原因','',true, function (yes,value)
- {
- var au_note = encodeURI(value);
- if(yes){
- $.ajax({
- type:"POST",
- url:"opInformationCheckAction.do?task=auditReject&toAuditDate=${toAuditDate}",
- data : {"universalid":universalid,"au_note":au_note},
- timeout:10000,
- cache:false,
- dataType:"json",
- success:function(data){
- var success = data.success;
- var update = data.update;
- if("update"==update){
- window.top.$.ligerDialog.error("信息有变更,请刷新列表,重新审核!");
- }else{
- if(success){
- window.top.$.ligerDialog.success(success);
- closeAndReload();
- }else{
- showAjaxError(null, data.error);
- }
- }
- },
- error:showAjaxError
- });
- }
- });
- }
- /**
- * 同意
- */
- function auditPass(universalid){
- $.ligerDialog.confirm('确定要通过审核吗?', function (yes)
- {
- if(yes){
- $.ajax({
- type:"POST",
- url:"opInformationCheckAction.do?task=auditPass&toAuditDate=${toAuditDate}",
- data : {"universalid":universalid},
- timeout:10000,
- cache:false,
- dataType:"json",
- success:function(data){
- var success = data.success;
- var update = data.update;
- if("update"==update){
- window.top.$.ligerDialog.error("信息有变更,请刷新列表,重新审核!");
- }else{
- if(success){
- window.top.$.ligerDialog.success(success);
- closeAndReload();
- }else{
- showAjaxError(null, data.error);
- }
- }
- },
- error:showAjaxError
- });
- }
- });
- }
- function closeAndReload() {
- var old_tabid = "${requestScope.tabid}";
- if (old_tabid.length > 0) {
- var tabid = getCurrentTabId();
- window.parent.f_selectTab(old_tabid);
- window.parent.f_reloadTab(old_tabid);
- window.parent.f_closeTab(tabid);
- }
- }
- </script>
- <style type="text/css">
- .file-style{
- width: 550px;
- }
- .file-style input[type='file'] {
- width:300px ;
- height:24px;
- line-height:22px;
- vertical-align: bottom;
- background-color: #fff;
- border: 1px solid #cccccc;
- margin-top: 2px;
- margin-bottom: 2px;
- }
- .forum-container .l-table-title-td{
- font-size:30px;
- text-align:center;
- line-height:20px;
- }
- .forum-container .l-table-annotation-td{
- font-size:15px;
- text-align:center;
- line-height:20px;
- }
- </style>
- </head>
- <body>
- <form id="opBoForm" action="opBusinessOpportunityAction.do" method="post">
- <div class="container-layout">
- <div id="title" class="form-button">
- <input type="button" class="l-button" value="同意" onclick="auditPass('${info_.universalid }');" style="width: 90px"/>
- <input type="button" class="l-button" value="不同意" onclick="auditReject('${info_.universalid }');" style="width: 90px"/>
- <input type="button" class="l-button" value="关闭" onclick="closeWindow();" style="width: 90px"/>
- <input type="hidden" id="toAuditDate" name="toAuditDate" value="${toAuditDate }"/>
- </div>
- <div class="forum-container">
- <table class="l-table-edit line">
- <tr >
- <td class="l-table-title-td">
- ${info_.info_title }
- </td>
- </tr>
- <tr>
- <td class="l-table-annotation-td" >发布人:${info_.publish_user_name } 发布时间:${info_.publish_date_str } 阅读:${info_.read_count }</td>
- </tr>
- <tr>
- <td class="l-table-edit-td" >
- ${info_.info_content }
- </td>
- </tr>
- <tr>
- <td class="l-table-edit-td">
- 相关文件:
- <jsp:include page="/include/file.jsp">
- <jsp:param name="fieldName" value="info_accessory" />
- <jsp:param name="folder" value="one_platform/info" />
- <jsp:param name="size" value="${info_accessory_size }" />
- <jsp:param name="isView " value="1" />
- <jsp:param name="isDelFile" value="0" />
- <jsp:param name="definedCss" value="file-style" />
- <jsp:param name="documentId" value="${info_.info_accessory }" />
- </jsp:include>
- <input id="info_.info_accessory" name="info_.info_accessory" type="hidden" value="${info_.info_accessory }"/>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <div style="clear:both;"></div>
- </form>
- <%@include file="/include/message.jsp"%>
- </body>
- </html>
|