123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>江苏省港口建设与经营管理信息系统</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <%@ include file="../../common.jsp"%>
- <script type="text/javascript" src="${app }/static/biz/js/gkjsgl/jsjdgl/jsjdgldetail.js"></script>
- <script type="text/javascript" src="${app }/static/biz/js/gkjsgl/xmxxgl/xmxxgldetail.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- if('${record.tzlx }' == "1903") {
- $("#zftzDiv").css("display","table-row");
- var ztz = '${record.ztz}';
- var zftze = '${record.zftze}';
- if(isEmpty(ztz) || isEmpty(zftze)) {
- return;
- }
- if(isFDS(ztz) && isFDS(zftze)) {
- var rate = (zftze/ztz)*100;
- $("#zftzTd").html(rate.toFixed(2));
- }
- } else {
- $("#zftzDiv").css("display","none");
- }
- jsjdgl.detail.init();
- jsjdgl.detail.path='${path}';
- jsjdgl.detail.type='${type}';
- initSylxSelect('sylxsel', '${record.sylx }', '80%');
- initTzlxSelect('tzlxsel','${record.tzlx }','80%');
- initXmhzjbSelect('xmhzjbsel','${record.xmhzjb }','80%');
- initAxspjbSelect('axspjbsel','${record.axspjb }','80%');
- xmxxgl.detail.initszdSelect('szdsel', '${jyr.szd.id }', 'showgk', '80%','disable');
- xmxxgl.detail.initgkSelect('gksel','${record.szgk }','${jyr.szd.id }','showgq','80%','disable');
- xmxxgl.detail.initgqSelect('gqsel','${record.szgq }','${jyr.szd.id }','${record.szgk }',null,'80%','disable');
- //初始化实施过程
- jsjdgl.detail.initssgc('${record.id }');
- xmxxgl.detail.initBwyt('bwytsel', '${record.bwyt }');
- xmxxgl.detail.initZyhbwfl('zyhbwflsel', '${record.zyhbwfl }','${record.bwyt }');
- jsjdgl.detail.opflag="${opflag}";
- var opflag = "${opflag}";
- if(opflag == 2){
- $("#xmsphzbali").addClass("active");
- $("#xmsphzba").addClass("tab-pane fade in active");
- $("#spyj1").attr("readonly","readonly");
- //附件
- jsjdgl.detail.fjid21='${fjList21.fjid }';
- fjgt(jsjdgl.detail.fjid21,'scbt21','tjbt21');
- }else if(opflag== 3){
- $("#cbsjspli").addClass("active");
- $("#cbsjsp").addClass("tab-pane fade in active");
- $("#spyj1").attr("readonly","readonly");
- $("#spyj2").attr("readonly","readonly");
- //附件
- jsjdgl.detail.fjid31='${fjList31.fjid }';
- fjgt(jsjdgl.detail.fjid31,'scbt31','tjbt31');
- jsjdgl.detail.fjid32='${fjList32.fjid }';
- fjgt(jsjdgl.detail.fjid32,'scbt32','tjbt32');
- /* jsjdgl.detail.fjid33='${fjList33.fjid }';
- fjgt(jsjdgl.detail.fjid33,'scbt33','tjbt33');
- jsjdgl.detail.fjid34='${fjList34.fjid }';
- fjgt(jsjdgl.detail.fjid34,'scbt34','tjbt34');
- jsjdgl.detail.fjid35='${fjList35.fjid }';
- fjgt(jsjdgl.detail.fjid35,'scbt35','tjbt35');
- jsjdgl.detail.fjid36='${fjList36.fjid }';
- fjgt(jsjdgl.detail.fjid36,'scbt36','tjbt34');
- jsjdgl.detail.fjid37='${fjList37.fjid }';
- fjgt(jsjdgl.detail.fjid37,'scbt37','tjbt37');
- jsjdgl.detail.fjid38='${fjList38.fjid }';
- fjgt(jsjdgl.detail.fjid38,'scbt38','tjbt38'); */
- }else if(opflag== 4){
- $("#sgtsjspli").addClass("active");
- $("#sgtsjsp").addClass("tab-pane fade in active");
- $("#spyj1").attr("readonly","readonly");
- $("#spyj2").attr("readonly","readonly");
- $("#spyj3").attr("readonly","readonly");
- //附件
- jsjdgl.detail.fjid41='${fjList41.fjid }';
- fjgt(jsjdgl.detail.fjid41,'scbt41','tjbt41');
- jsjdgl.detail.fjid42='${fjList42.fjid }';
- fjgt(jsjdgl.detail.fjid42,'scbt42','tjbt42');
- }else if(opflag== 5){
- $("#kgbali").addClass("active");
- $("#kgba").addClass("tab-pane fade in active");
- $("#spyj1").attr("readonly","readonly");
- $("#spyj2").attr("readonly","readonly");
- $("#spyj3").attr("readonly","readonly");
- $("#spyj4").attr("readonly","readonly");
- //附件
- jsjdgl.detail.fjid51='${fjList51.fjid }';
- fjgt(jsjdgl.detail.fjid51,'scbt51','tjbt51');
- jsjdgl.detail.fjid52='${fjList52.fjid }';
- fjgt(jsjdgl.detail.fjid52,'scbt52','tjbt52');
- jsjdgl.detail.fjid53='${fjList53.fjid }';
- fjgt(jsjdgl.detail.fjid53,'scbt53','tjbt53');
- jsjdgl.detail.fjid54='${fjList54.fjid }';
- fjgt(jsjdgl.detail.fjid54,'scbt54','tjbt54');
- jsjdgl.detail.fjid55='${fjList55.fjid }';
- fjgt(jsjdgl.detail.fjid55,'scbt55','tjbt55');
- jsjdgl.detail.fjid56='${fjList56.fjid }';
- fjgt(jsjdgl.detail.fjid56,'scbt56','tjbt56');
- }else if(opflag== 6){
- $("#jgys1li").addClass("active");
- $("#jgys1").addClass("tab-pane fade in active");
- $("#spyj1").attr("readonly","readonly");
- $("#spyj2").attr("readonly","readonly");
- $("#spyj3").attr("readonly","readonly");
- $("#spyj4").attr("readonly","readonly");
- $("#spyj5").attr("readonly","readonly");
- //附件
- jsjdgl.detail.fjid61='${fjList61.fjid }';
- fjgt(jsjdgl.detail.fjid61,'scbt61','tjbt61');
- jsjdgl.detail.fjid62='${fjList62.fjid }';
- fjgt(jsjdgl.detail.fjid62,'scbt62','tjbt62');
- }else if(opflag== 7){
- $("#syxbali").addClass("active");
- $("#syxba").addClass("tab-pane fade in active");
- $("#spyj1").attr("readonly","readonly");
- $("#spyj2").attr("readonly","readonly");
- $("#spyj3").attr("readonly","readonly");
- $("#spyj4").attr("readonly","readonly");
- $("#spyj5").attr("readonly","readonly");
- $("#spyj6").attr("readonly","readonly");
- //附件
- jsjdgl.detail.fjid71='${fjList71.fjid }';
- fjgt(jsjdgl.detail.fjid71,'scbt71','tjbt71');
- jsjdgl.detail.fjid72='${fjList72.fjid }';
- fjgt(jsjdgl.detail.fjid72,'scbt72','tjbt72');
- }else if(opflag== 8){
- $("#jgys2li").addClass("active");
- $("#jgys2").addClass("tab-pane fade in active");
- $("#spyj1").attr("readonly","readonly");
- $("#spyj2").attr("readonly","readonly");
- $("#spyj3").attr("readonly","readonly");
- $("#spyj4").attr("readonly","readonly");
- $("#spyj5").attr("readonly","readonly");
- $("#spyj6").attr("readonly","readonly");
- $("#spyj7").attr("readonly","readonly");
- //附件
- jsjdgl.detail.fjid81='${fjList81.fjid }';
- fjgt(jsjdgl.detail.fjid81,'scbt81','tjbt81');
- jsjdgl.detail.fjid82='${fjList82.fjid }';
- fjgt(jsjdgl.detail.fjid82,'scbt82','tjbt82');
- /* jsjdgl.detail.fjid83='${fjList83.fjid }';
- fjgt(jsjdgl.detail.fjid83,'scbt83','tjbt83');
- jsjdgl.detail.fjid84='${fjList84.fjid }';
- fjgt(jsjdgl.detail.fjid84,'scbt84','tjbt84');
- jsjdgl.detail.fjid85='${fjList85.fjid }';
- fjgt(jsjdgl.detail.fjid85,'scbt85','tjbt85'); */
- }else {
- $("#axlyspli").addClass("active");
- $("#axlysp").addClass("tab-pane fade in active");
- //附件
- jsjdgl.detail.fjid11='${fjList11.fjid }';
- fjgt(jsjdgl.detail.fjid11,'scbt11','tjbt11');
- }
- //返回判断
- jsjdgl.detail.fhpd(opflag);
- });
-
- function showgk(){
- initgkSelect('gksel','${record.szgk }',$('.szdselectpicker').val(),"showgq",'80%');
- showgq();
- }
- function showgq(){
- initgqSelect('gqsel','${record.szgq }',$('.szdselectpicker').val(),$('.gkselectpicker').val(),null,'80%');
- }
-
- function tanchu(){
- //此处可以先进行ajax请求获取数据,然后再回掉中再显示弹出框
- $('.theme-popover-mask').fadeIn(100);
- $('.theme-popover').slideDown(0);
- }
- function guanbi(){
- $('.theme-popover-mask').fadeOut(100);
- $('.theme-popover').slideUp(0);
- }
- function ytsel(){
- xmxxgl.detail.initZyhbwfl('zyhbwflsel', '',$('.bwytselectpicker').val()+"");
- }
- function fjgt(fjid,scbtid,tjbtid){
- if(fjid!=null&&fjid!=''){
- $("#"+scbtid).show();
- $("#"+tjbtid).hide();
- }else{
- $("#"+scbtid).hide();
- $("#"+tjbtid).show();
- }
- }
- function guanbipop(){
- $('.theme-popover-mask').fadeOut(100);
- $('.theme-popover').slideUp(0);
- }
- </script>
- </head>
- <jsp:include page="../../showbwview.jsp"></jsp:include>
- <body>
- <div class="box" >
- <div class="box-content" >
- <div class="apply_fill">
- <form id="addform" method="post" enctype="multipart/form-data">
- <input type="hidden" class="form-control" name="fjzdids" id="fjzdids">
- <input type="hidden" class="form-control" name="accids" id="accids">
- <input type="hidden" class="form-control" id="xiazaibz" value="${xiazaibz }">
- <input type="hidden" id="fhbz" value="${fhbz }">
- <input type="hidden" id ="id" name="id" value="${record.id }"/>
- <input type="hidden" id ="opflag" name="opflag" value="${opflag }"/>
- <input type="hidden" id ="spflag" name="spflag" value="${spflag }"/>
- <input type="hidden" id ="sfjyr" name="sfjyr" value="${sfjyr }">
- <table class="apply3" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
- <tr>
- <th><span class="needwrite">*</span>项目编码: </th>
- <td >
- <input type="text" class="form-control" name="xmbm" readonly value="${record.xmbm }">
- </td>
-
- <th><span class="needwrite">*</span>项目名称: </th>
- <td style="position:relative;">
- <input type="text" class="form-control" id="xmmc" name="xmmc" readonly value="${record.xmmc }">
- </td>
- </tr>
- <tr>
-
- <th>项目概况: </th>
- <td colspan="3">
- <input type="text" class="form-control" name="xmgk" value="${record.xmgk }">
- </td>
- </tr>
- <tr>
- <th>建设规模: </th>
- <td colspan="3">
- <input type="text" class="form-control" name="jsgm" value="${record.jsgm }">
- </td>
- </tr>
- <tr>
- <th><span class="needwrite">*</span>项目法人: </th>
- <td>
- <input type="text" class="form-control" id="xmfr" name="xmfr" value="${record.xmfr }">
- </td>
- <th><span class="needwrite">*</span>建设单位: </th>
- <td >
- <input type="hidden" class="form-control" id="ssjyrid" name="ssjyrid" value="${jyr.id }">
- <input type="text" readonly class="form-control" id="jyrmc" value="${jyr.gkjyr }">
- </td>
- </tr>
- <tr>
- <th><span class="needwrite">*</span>行政区划: </th>
- <td>
- <input type="text" readonly="readonly" class="form-control" value="${xzqhname}">
- </td>
- <th><span class="needwrite">*</span>所在地: </th>
- <td>
- <div id="szdsel"></div>
- </td>
-
- </tr>
- <tr>
- <th><span class="needwrite">*</span>所在港口: </th>
- <td >
- <div id="gksel"></div>
- </td>
- <th><span class="needwrite">*</span>所在港区: </th>
- <td>
- <div id="gqsel"></div>
- </td>
- </tr>
- <tr>
- <th><span class="needwrite">*</span>项目类型: </th>
- <td >
- <input type="text" readonly class="form-control" id="xmlx" name="xmlx" value="${record.xmlxzw }">
- <input type="hidden" id="xmlxid" name="xmlxid" value="${record.xmlx }">
- </td>
- <th><span class="needwrite">*</span>建设地址: </th>
- <td >
- <input type="text" class="form-control" id="jsdd" name="jsdd" value="${record.jsdd }">
- </td>
- </tr>
- <tr>
-
- <th>总投资 (万元): </th>
- <td>
- <input type="text" class="form-control" id="ztz" name="ztz" value="${record.ztz }">
- </td>
- <th>投资类型: </th>
- <td>
- <div id="tzlxsel"></div>
- </td>
- </tr>
- <tr id="zftzDiv" style="display:none">
- <th>政府投资(万元): </th>
- <td >
- <input type="text" class="form-control" name="zftze" value="${record.zftze }" onchange="ratesub()">
- </td>
- <th>政府投资占比(%): </th>
- <td >
- <input type="text" class="form-control" readonly="readonly" id="zftzezb">
- </td>
- </tr>
- <tr>
- <th>建成时间: </th>
- <td>
- <input type="text" class="Wdate" name="jcsj" value="${fn:substring(record.jcsj,0,10)}" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM-dd'})">
- </td>
- <th>泊位个数: </th>
- <td>
- <input type="text" class="form-control" id="bwgs" value="${bwgs }">
- </td>
- </tr>
- <tr>
-
- <th>项目核准级别: </th>
- <td>
- <div id="xmhzjbsel"></div>
- </td>
- <th>通过能力(万吨): </th>
- <td >
- <input type="text" class="form-control" id="tgnl" name="tgnl" value="${record.tgnl }">
- </td>
-
- </tr>
- <tr>
- <th>岸线审批级别: </th>
- <td >
- <div id="axspjbsel"></div>
- </td>
- <th>岸线长度 (米): </th>
- <td >
- <input type="text" class="form-control" id="axcd" name="axcd" value="${record.axcd }">
- </td>
- </tr>
- <tr>
- <th>水域类型: </th>
- <td >
- <div id="sylxsel"></div>
- </td>
-
- </tr>
-
- </table>
- <table id="bwtableID" class="main_table" cellpadding="0" cellspacing="0">
- <thead>
- <tr>
- <th width="5%">序号</th>
- <th width="10%">泊位名称</th>
- <th width="10%">港口经营人</th>
- <th width="10%">码头名称</th>
- <th width="10%">所在港口</th>
- <th width="10%">所在港区</th>
- <th width="15%">泊位用途</th>
- <th width="5%">是否<br>危险品泊位</th>
- <th width="5%">是否<br>对外开放泊位</th>
- </tr>
- </thead>
- <c:forEach items="${bwlist}" var="bw" varStatus="status">
- <tr >
- <td >${status.count }</td>
- <td ><a onclick="jsjdgl.detail.viewBw('${bw.id}')">${bw.bwmc }</a></td>
- <td >${bw.ssjyrzw }</td>
- <td >${bw.ssmtzw }</td>
- <td >${bw.szgkzw }</td>
- <td >${bw.szgqzw }</td>
- <td >${bw.bwytzw }</td>
- <td >${bw.wxpbwzw }</td>
- <td >${bw.sfdwkfzw }</td>
- </tr>
- </c:forEach>
- </table>
- <ul id="myTab" class="nav nav-tabs">
- <li style="width:11%;font-size:14px;text-align:center" id="axlyspli">
- <a href="#axlysp" data-toggle="tab" onclick ="jsjdgl.detail.show(1)">
- 岸线利<br>用审批
- </a>
- </li>
-
- <c:if test="${opflag > 1 }">
- <li style="width:11%;font-size:14px;text-align:center" id="xmsphzbali">
- <a href="#xmsphzba" data-toggle="tab" onclick ="jsjdgl.detail.show(2)">
- 项目审批<br>核准备案
- </a>
- </li>
- </c:if>
- <c:if test="${opflag > 2}">
- <li style="width:10%;font-size:14px;text-align:center" id="cbsjspli">
- <a href="#cbsjsp" data-toggle="tab" onclick ="jsjdgl.detail.show(3)">
- 初步设<br>计审批
- </a>
- </li>
- </c:if>
- <c:if test="${opflag > 3 }">
- <li style="width:12%;font-size:14px;text-align:center" id="sgtsjspli">
- <a href="#sgtsjsp" data-toggle="tab" onclick ="jsjdgl.detail.show(4)">
- 施工图设<br>计审批
- </a>
- </li>
- </c:if>
- <c:if test="${opflag > 4 }">
- <li style="width:9%;font-size:14px;text-align:center" id="kgbali">
- <a href="#kgba" data-toggle="tab" onclick ="jsjdgl.detail.show(5)">
- 开工<br>备案
- </a>
- </li>
- </c:if>
-
- <c:if test="${opflag > 5 }">
- <li style="width:9%;font-size:14px;text-align:center" id="jgys1li">
- <a href="#jgys1" data-toggle="tab" onclick ="jsjdgl.detail.show(6)">
- 交工<br>验收
- </a>
- </li>
- </c:if>
- <c:if test="${record.xmlx!=2202 }">
- <c:if test="${opflag > 6 }">
- <li style="width:10%;font-size:14px;text-align:center" id="syxbali">
- <a href="#syxba" data-toggle="tab" onclick ="jsjdgl.detail.show(7)">
- 试运行<br>备案
- </a>
- </li>
- </c:if>
- </c:if>
- <c:if test="${opflag > 7 }">
- <li style="width:9%;font-size:14px;text-align:center" id="jgys2li">
- <a href="#jgys2" data-toggle="tab" onclick ="jsjdgl.detail.show(8)">
- 竣工<br>验收
- </a>
- </li>
- </c:if>
- <li style="width:9%;font-size:14px;text-align:center" id="ssgcli">
- <a href="#ssgc" data-toggle="tab" >
- 实施<br>过程
- </a>
- </li>
- <li style="width:10%;font-size:14px;text-align:center" >
- <a href="#lcls" data-toggle="tab" onclick ="jsjdgl.detail.lcls('${record.id }')">
- 流程<br>历史
- </a>
- </li>
- </ul>
- <div id="myTabContent" class="tab-content">
- <div class="tab-pane fade" id="axlysp">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" id="tb1" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">材料名称</th>
- <th width="10%">上传附件名称</th>
- <th width="10%">批文单位</th>
- <th width="10%">文号</th>
- <th width="10%">批文时间</th>
- <c:if test="${spflag!=1 && opflag == 1 }">
- <th width="15%">操作</th>
- </c:if>
- </tr>
- <tr height="40px">
- <td>
- 1
- </td>
- <td>
- 岸线使用批复文件复印件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid11" id="delid11" value="${fjList11.fjid }">
- <input type="hidden" class="form-control" id="fjzdid11">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('11')"><span id="fjmc11">${fjList11.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw11">${recordfj11.fbdw }</span>
- </td>
- <td>
- <span id="wjh11">${recordfj11.wjh }</span>
- </td>
- <td>
- <span id="fbsj11">${recordfj11.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=1 && opflag == 1 }">
- <td>
- <a id="tjbt11" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('11')">
- 添加</a>
- <a id="scbt11" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('11')">
- 删除</a>
- </td>
- </c:if>
- </tr>
- <c:forEach items="${fjvolist}" var="qtfj" varStatus="status">
- <tr height="40px">
- <td>${status.index+2}</td>
- <td>其他附件</td>
- <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
- <td>${qtfj.fbdw }</td>
- <td>${qtfj.wjh }</td>
- <td>${qtfj.fbsj }</td>
- </tr>
- </c:forEach>
- <tbody id="viewqtfj1"></tbody>
- <c:if test="${sfjyr!=1 }">
- <c:if test="${spflag==1 || opflag > 1 }">
- <tr height=100px>
- <td colspan=1 >
- 审批意见
- </td>
- <td colspan=5>
- <textarea class="form-control" name="spyj1" id="spyj1" style="height:100px;" value="${xmxxfb.yj }"></textarea>
- </td>
- </tr>
- </c:if>
- </c:if>
- </table>
-
- </div>
- </div>
- <div class="tab-pane fade " id="xmsphzba">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" id="tb2" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">材料名称</th>
- <th width="10%">上传附件名称</th>
- <th width="10%">批文单位</th>
- <th width="10%">文号</th>
- <th width="10%">批文时间</th>
- <c:if test="${spflag!=2 && opflag == 2}">
- <th width="15%">操作</th>
- </c:if>
- </tr>
- <tr height="40px">
- <td>
- 1
- </td>
- <td>
- 项目批准或者核准、备案文件的复印件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid21" id="delid21" value="${fjList21.fjid }">
- <input type="hidden" class="form-control" id="fjzdid21">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('21')"><span id="fjmc21">${fjList21.fjmc}</span></a>
- </td>
- <td>
- <span id="fbdw21">${recordfj21.fbdw }</span>
- </td>
- <td>
- <span id="wjh21">${recordfj21.wjh }</span>
- </td>
- <td>
- <span id="fbsj21">${recordfj21.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=2 && opflag == 2 }">
- <td>
- <a id="tjbt21" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('21')">
- 添加</a>
- <a id="scbt21" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('21')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
- <c:forEach items="${fjvolist2}" var="qtfj" varStatus="status">
- <tr height="40px">
- <td>${status.index+2}</td>
- <td>其他附件</td>
- <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
- <td>${qtfj.fbdw }</td>
- <td>${qtfj.wjh }</td>
- <td>${qtfj.fbsj }</td>
- </tr>
- </c:forEach>
- <tbody id="viewqtfj2"></tbody>
- <c:if test="${sfjyr!=1 }">
- <c:if test="${spflag==2 || opflag > 2 }">
- <tr height=100px>
- <td colspan=1 >
- 审批意见
- </td>
- <td colspan=5>
- <textarea class="form-control" name="spyj2" id="spyj2" style="height:100px;" value="${xmxxfb.yj }"></textarea>
- </td>
- </tr>
- </c:if>
- </c:if>
- <tbody id="qtfjtb2"></tbody>
- </table>
- </div>
- </div>
- <div class="tab-pane fade" id="cbsjsp">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" id="tb3" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">材料名称</th>
- <th width="10%">上传附件名称</th>
- <th width="10%">批文单位</th>
- <th width="10%">文号</th>
- <th width="10%">批文时间</th>
- <c:if test="${spflag!=3 && opflag == 3 }">
- <th width="15%">操作</th>
- </c:if>
- </tr>
- <tr height="40px">
- <td>
- 1
- </td>
- <td>
- 初步设计文件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid31" id="delid31" value="${fjList31.fjid }">
- <input type="hidden" class="form-control" id="fjzdid31">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('31')"><span id="fjmc31">${fjList31.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw31">${recordfj31.fbdw }</span>
- </td>
- <td>
- <span id="wjh31">${recordfj31.wjh }</span>
- </td>
- <td>
- <span id="fbsj31">${recordfj31.fbsj }</span>
- </td>
- <c:if test="${spflag!=3 && opflag == 3 }">
- <td>
- <a id="tjbt31" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('31')">
- 添加</a>
- <a id="scbt31" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('31')">
- 删除</a>
- </td>
- </c:if>
- </tr>
-
- <tr height="40px">
- <td>
- 2
- </td>
- <td>
- 初步设计批复文件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid32" id="delid32" value="${fjList32.fjid }">
- <input type="hidden" class="form-control" id="fjzdid32">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('32')"><span id="fjmc32">${fjList32.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw32">${recordfj32.fbdw }</span>
- </td>
- <td>
- <span id="wjh32">${recordfj32.wjh }</span>
- </td>
- <td>
- <span id="fbsj32">${recordfj32.fbsj }</span>
- </td>
- <c:if test="${spflag!=3 && opflag == 3 }">
- <td>
- <a id="tjbt32" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('32')">
- 添加</a>
- <a id="scbt32" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('32')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
- <%-- <tr height="40px">
- <td>
- 3
- </td>
- <td>
- 港口建设项目批准或者核准、备案文件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid33" id="delid33" value="${fjList33.fjid }">
- <input type="hidden" class="form-control" id="fjzdid33">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('33')"><span id="fjmc33">${fjList33.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw33">${recordfj33.fbdw }</span>
- </td>
- <td>
- <span id="wjh33">${recordfj33.wjh }</span>
- </td>
- <td>
- <span id="fbsj33">${recordfj33.fbsj }</span>
- </td>
- <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
- <c:if test="${spflag!=3 && opflag == 3 }">
- <td>
- <a id="tjbt33" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('33')">
- 添加</a>
- <a id="scbt33" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('33')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag==3 && opflag == 3 }">
- <td></td>
- </c:if>
- </c:if>
- <tr>
- <td>4</td>
- <td>审查会议纪要</td>
- <td><input type="hidden" class="form-control"
- name="delid34" id="delid34" value="${fjList34.fjid }">
- <input type="hidden" class="form-control" id="fjzdid34">
- <a class='main_title' href="#"
- onclick="jsjdgl.detail.download('34')"><span id="fjmc34">${fjList34.fjmc }</span></a>
- </td>
- <td><span id="fbdw34">${recordfj34.fbdw }</span></td>
- <td><span id="wjh34">${recordfj34.wjh }</span></td>
- <td><span id="fbsj34">${recordfj34.fbsj }</span></td>
- <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
- <c:if test="${spflag ==3 && opflag == 3 }">
- <td>
- <a id="tjbt34" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('34')">
- 添加</a>
- <a id="scbt34" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('34')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag!=3 && opflag == 3 }">
- <td></td>
- </c:if>
- </c:if>
- </tr>
- <tr>
- <td>5</td>
- <td>专家审查意见</td>
- <td><input type="hidden" class="form-control"
- name="delid35" id="delid35" value="${fjList35.fjid }">
- <input type="hidden" class="form-control" id="fjzdid35">
- <a class='main_title' href="#"
- onclick="jsjdgl.detail.download('35')"><span id="fjmc35">${fjList35.fjmc }</span></a>
- </td>
- <td><span id="fbdw35">${recordfj35.fbdw }</span></td>
- <td><span id="wjh35">${recordfj35.wjh }</span></td>
- <td><span id="fbsj35">${recordfj35.fbsj }</span></td>
- <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
- <c:if test="${spflag==3 && opflag == 3 }">
- <td>
- <a id="tjbt35" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('35')">
- 添加</a>
- <a id="scbt35" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('35')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag!=3 && opflag == 3 }">
- <td></td>
- </c:if>
- </c:if>
- </tr>
- <tr>
- <td>6</td>
- <td>对审查意见的答复</td>
- <td><input type="hidden" class="form-control"
- name="delid36" id="delid36" value="${fjList36.fjid }">
- <input type="hidden" class="form-control" id="fjzdid36">
- <a class='main_title' href="#"
- onclick="jsjdgl.detail.download('36')"><span id="fjmc36">${fjList36.fjmc }</span></a>
- </td>
- <td><span id="fbdw36">${recordfj36.fbdw }</span></td>
- <td><span id="wjh36">${recordfj36.wjh }</span></td>
- <td><span id="fbsj36">${recordfj36.fbsj }</span></td>
- <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
- <c:if test="${spflag==3 && opflag == 3 }">
- <td>
- <a id="tjbt36" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('36')">
- 添加</a>
- <a id="scbt36" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('36')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag!=3 && opflag == 3 }">
- <td></td>
- </c:if>
- </c:if>
- </tr>
- <tr>
- <td>7</td>
- <td>第三方审查咨询报告 ( 可选 )</td>
- <td><input type="hidden" class="form-control"
- name="delid37" id="delid37" value="${fjList37.fjid }">
- <input type="hidden" class="form-control" id="fjzdid37">
- <a class='main_title' href="#"
- onclick="jsjdgl.detail.download('37')"><span id="fjmc37">${fjList37.fjmc }</span></a>
- </td>
- <td><span id="fbdw37">${recordfj37.fbdw }</span></td>
- <td><span id="wjh37">${recordfj37.wjh }</span></td>
- <td><span id="fbsj37">${recordfj37.fbsj }</span></td>
- <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
- <c:if test="${spflag==3 && opflag == 3 }">
- <td>
- <a id="tjbt37" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('37')">
- 添加</a>
- <a id="scbt37" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('37')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag!=3 && opflag == 3 }">
- <td></td>
- </c:if>
- </c:if>
- </tr>
- <tr>
- <td>8</td>
- <td>初步设计文件报批稿</td>
- <td><input type="hidden" class="form-control"
- name="delid38" id="delid38" value="${fjList38.fjid }">
- <input type="hidden" class="form-control" id="fjzdid38">
- <a class='main_title' href="#"
- onclick="jsjdgl.detail.download('38')"><span id="fjmc38">${fjList38.fjmc }</span></a>
- </td>
- <td><span id="fbdw38">${recordfj38.fbdw }</span></td>
- <td><span id="wjh38">${recordfj38.wjh }</span></td>
- <td><span id="fbsj38">${recordfj38.fbsj }</span></td>
- <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
- <c:if test="${spflag==3 && opflag == 3 }">
- <td>
- <a id="tjbt38" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('38')">
- 添加</a>
- <a id="scbt38" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('38')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag!=3 && opflag == 3 }">
- <td></td>
- </c:if>
- </c:if>
- </tr> --%>
- <c:forEach items="${fjvolist3}" var="qtfj" varStatus="status">
- <tr height="40px">
- <c:if test="${ record.flowstatus > 0 }">
- <td>${status.index+9}</td>
- </c:if>
- <c:if test="${ record.flowstatus == null || record.flowstatus == ''}">
- <td>${status.index+4}</td>
- </c:if>
- <td>其他附件</td>
- <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
- <td>${qtfj.fbdw }</td>
- <td>${qtfj.wjh }</td>
- <td>${qtfj.fbsj }</td>
- </tr>
- </c:forEach>
- <tbody id="viewqtfj3"></tbody>
- <c:if test="${sfjyr!=1 }">
- <c:if test="${spflag==3 || opflag > 3 }">
- <tr height=100px>
- <td colspan=1 >
- 审批意见
- </td>
- <td colspan=6>
- <textarea class="form-control" name="spyj3" id="spyj3" style="height:100px;" value="${xmxxfb.yj }"></textarea>
- </td>
- </tr>
- </c:if>
- </c:if>
- <tbody id="qtfjtb3"></tbody>
- </table>
- </div>
- </div>
- <div class="tab-pane fade" id="sgtsjsp">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" id="tb4" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">材料名称</th>
- <th width="10%">上传附件名称</th>
- <th width="10%">批文单位</th>
- <th width="10%">文号</th>
- <th width="10%">批文时间</th>
- <c:if test="${spflag!=4 && opflag == 4}">
- <th width="15%">操作</th>
- </c:if>
- </tr>
- <tr height="40px">
- <td>
- 1
- </td>
- <td>
- 施工图设计文件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid41" id="delid41" value="${fjList41.fjid }">
- <input type="hidden" class="form-control" id="fjzdid41">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('41')"><span id="fjmc41">${fjList41.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw41">${recordfj41.fbdw }</span>
- </td>
- <td>
- <span id="wjh41">${recordfj41.wjh }</span>
- </td>
- <td>
- <span id="fbsj41">${recordfj41.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=4 && opflag == 4 }">
- <td>
- <a id="tjbt41" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('41')">
- 添加</a>
- <a id="scbt41" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('41')">
- 删除</a>
- </td>
- </c:if>
- </tr>
-
- <tr height="40px">
- <td>
- 2
- </td>
- <td>
- 施工图设计批复文件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid42" id="delid42" value="${fjList42.fjid }">
- <input type="hidden" class="form-control" id="fjzdid42">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download(42')"><span id="fjmc42">${fjList42.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw42">${recordfj42.fbdw }</span>
- </td>
- <td>
- <span id="wjh42">${recordfj42.wjh }</span>
- </td>
- <td>
- <span id="fbsj42">${recordfj42.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=4 && opflag == 4 }">
- <td>
- <a id="tjbt42" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('42')">
- 添加</a>
- <a id="scbt42" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('42')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
- <c:forEach items="${fjvolist4}" var="qtfj" varStatus="status">
- <tr height="40px">
- <td>${status.index+3}</td>
- <td>其他附件</td>
- <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
- <td>${qtfj.fbdw }</td>
- <td>${qtfj.wjh }</td>
- <td>${qtfj.fbsj }</td>
- </tr>
- </c:forEach>
- <tbody id="viewqtfj4"></tbody>
- <c:if test="${sfjyr!=1 }">
- <c:if test="${spflag==4 || opflag > 4 }">
- <tr height=100px>
- <td colspan=1 >
- 审批意见
- </td>
- <td colspan=5>
- <textarea class="form-control" name="spyj4" id="spyj4" style="height:100px;" value="${xmxxfb.yj }"></textarea>
- </td>
- </tr>
- </c:if>
- </c:if>
- <tbody id="qtfjtb4"></tbody>
- </table>
- </div>
- </div>
- <div class="tab-pane fade" id="kgba">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" id="tb5" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">材料名称</th>
- <th width="10%">上传附件名称</th>
- <th width="10%">批文单位</th>
- <th width="10%">文号</th>
- <th width="10%">批文时间</th>
- <c:if test="${spflag!=5 && opflag == 5 }">
- <th width="15%">操作</th>
- </c:if>
- </tr>
- <tr height="40px">
- <td>
- 1
- </td>
- <td>
- 控制性用地的批复(可选)
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid51" id="delid51" value="${fjList51.fjid }">
- <input type="hidden" class="form-control" id="fjzdid51">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('51')"><span id="fjmc51">${fjList51.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw51">${recordfj51.fbdw }</span>
- </td>
- <td>
- <span id="wjh51">${recordfj51.wjh }</span>
- </td>
- <td>
- <span id="fbsj51">${recordfj51.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=5 && opflag == 5 }">
- <td>
- <a id="tjbt51" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('51')">
- 添加</a>
- <a id="scbt51" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('51')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
-
- <tr height="40px">
- <td>
- 2
- </td>
- <td>
- 与施工单位和监理单位签订的合同复印件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid52" id="delid52" value="${fjList52.fjid }">
- <input type="hidden" class="form-control" id="fjzdid52">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('52')"><span id="fjmc52">${fjList52.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw52">${recordfj52.fbdw }</span>
- </td>
- <td>
- <span id="wjh52">${recordfj52.wjh }</span>
- </td>
- <td>
- <span id="fbsj52">${recordfj52.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=5 && opflag == 5 }">
- <td>
- <a id="tjbt52" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('52')">
- 添加</a>
- <a id="scbt52" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('52')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
-
- <tr height="40px">
- <td>
- 3
- </td>
- <td>
- 质量监督手续材料复印件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid53" id="delid53" value="${fjList53.fjid }">
- <input type="hidden" class="form-control" id="fjzdid53">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('53')"><span id="fjmc53">${fjList53.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw53">${recordfj53.fbdw }</span>
- </td>
- <td>
- <span id="wjh53">${recordfj53.wjh }</span>
- </td>
- <td>
- <span id="fbsj53">${recordfj53.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=5 && opflag == 5 }">
- <td>
- <a id="tjbt53" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('53')">
- 添加</a>
- <a id="scbt53" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('53')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
-
- <tr height="40px">
- <td>
- 4
- </td>
- <td>
- 建设资金落实证明复印件
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid54" id="delid54" value="${fjList54.fjid }">
- <input type="hidden" class="form-control" id="fjzdid54">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('54')"><span id="fjmc54">${fjList54.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw54">${recordfj54.fbdw }</span>
- </td>
- <td>
- <span id="wjh54">${recordfj54.wjh }</span>
- </td>
- <td>
- <span id="fbsj54">${recordfj54.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=5 && opflag == 5 }">
- <td>
- <a id="tjbt54" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('54')">
- 添加</a>
- <a id="scbt54" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('54')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
-
- <tr height="40px">
- <td>
- 5
- </td>
- <td>
- 评标结果备案文件复印件(可选)
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid55" id="delid55" value="${fjList55.fjid }">
- <input type="hidden" class="form-control" id="fjzdid55">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('55')"><span id="fjmc55">${fjList55.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw55">${recordfj55.fbdw }</span>
- </td>
- <td>
- <span id="wjh55">${recordfj55.wjh }</span>
- </td>
- <td>
- <span id="fbsj55">${recordfj55.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=5 && opflag == 5 }">
- <td>
- <a id="tjbt55" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('55')">
- 添加</a>
- <a id="scbt55" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('55')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
-
- <tr height="40px">
- <td>
- 6
- </td>
- <td>
- 《开工备案表》
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid56" id="delid56" value="${fjList56.fjid }">
- <input type="hidden" class="form-control" id="fjzdid56">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('56')"><span id="fjmc56">${fjList56.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw56">${recordfj56.fbdw }</span>
- </td>
- <td>
- <span id="wjh56">${recordfj56.wjh }</span>
- </td>
- <td>
- <span id="fbsj56">${recordfj56.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=5 && opflag == 5 }">
- <td>
- <a id="tjbt56" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('56')">
- 添加</a>
- <a id="scbt56" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('56')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
- <c:forEach items="${fjvolist5}" var="qtfj" varStatus="status">
- <tr height="40px">
- <td>${status.index+7}</td>
- <td>其他附件</td>
- <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
- <td>${qtfj.fbdw }</td>
- <td>${qtfj.wjh }</td>
- <td>${qtfj.fbsj }</td>
- </tr>
- </c:forEach>
- <tbody id="viewqtfj5"></tbody>
- <c:if test="${sfjyr!=1 }">
- <c:if test="${spflag==5 || opflag > 5 }">
- <tr height=100px>
- <td colspan=1 >
- 审批意见
- </td>
- <td colspan=5>
- <textarea class="form-control" name="spyj5" id="spyj5" style="height:100px;" value="${xmxxfb.yj }"></textarea>
- </td>
- </tr>
- </c:if>
- </c:if>
- <tbody id="qtfjtb5"></tbody>
- </table>
- </div>
- </div>
- <div class="tab-pane fade" id="ssgc">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" id="tb6" cellpadding="0" cellspacing="0">
- <tr>
- <th>年度</th>
- <th>年度计划投资额</th>
- <th>当月实际完成投资额(万元)</th>
- <th>当前形象进度</th>
- <th>形象进度完成情况分析</th>
- <th>操作</th>
- </tr>
- <tbody id="ssgctb"></tbody>
- </table>
- </div>
- </div>
- <div class="tab-pane fade" id="jgys1">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">材料名称</th>
- <th width="10%">上传附件名称</th>
- <th width="10%">批文单位</th>
- <th width="10%">文号</th>
- <th width="10%">批文时间</th>
- <c:if test="${spflag!=6 && opflag == 6 }">
- <th width="15%">操作</th>
- </c:if>
- </tr>
- <tr height="40px">
- <td>
- 1
- </td>
- <td>
- 质监机构关于工程质量鉴定意见书
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid61" id="delid61" value="${fjList61.fjid }">
- <input type="hidden" class="form-control" id="fjzdid61">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('61')"><span id="fjmc61">${fjList61.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw61">${recordfj61.fbdw }</span>
- </td>
- <td>
- <span id="wjh61">${recordfj61.wjh }</span>
- </td>
- <td>
- <span id="fbsj61">${recordfj61.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=6 && opflag == 6 }">
- <td>
- <a id="tjbt61" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('61')">
- 添加</a>
- <a id="scbt61" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('61')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
-
- <tr height="40px">
- <td>
- 2
- </td>
- <td>
- 交工验收证书
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid62" id="delid62" value="${fjList62.fjid }">
- <input type="hidden" class="form-control" id="fjzdid62">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('62')"><span id="fjmc62">${fjList62.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw62">${recordfj62.fbdw }</span>
- </td>
- <td>
- <span id="wjh62">${recordfj62.wjh }</span>
- </td>
- <td>
- <span id="fbsj62">${recordfj62.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=6 && opflag == 6 }">
- <td>
- <a id="tjbt62" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('62')">
- 添加</a>
- <a id="scbt62" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('62')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
- <c:forEach items="${fjvolist6}" var="qtfj" varStatus="status">
- <tr height="40px">
- <td>${status.index+3}</td>
- <td>其他附件</td>
- <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
- <td>${qtfj.fbdw }</td>
- <td>${qtfj.wjh }</td>
- <td>${qtfj.fbsj }</td>
- </tr>
- </c:forEach>
- <tbody id="viewqtfj6"></tbody>
- <c:if test="${sfjyr!=1 }">
- <c:if test="${spflag==6 || opflag > 6 }">
- <tr height=100px>
- <td colspan=1 >
- 审批意见
- </td>
- <td colspan=5>
- <textarea class="form-control" name="spyj6" id="spyj6" style="height:100px;" value="${xmxxfb.yj }"></textarea>
- </td>
- </tr>
- </c:if>
- </c:if>
- <tbody id="qtfjtb6"></tbody>
- </table>
- </div>
- </div>
- <div class="tab-pane fade" id="syxba">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" id="tb7" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">材料名称</th>
- <th width="10%">上传附件名称</th>
- <th width="10%">批文单位</th>
- <th width="10%">文号</th>
- <th width="10%">批文时间</th>
- <c:if test="${spflag!=7 && opflag == 7 }">
- <th width="15%">操作</th>
- </c:if>
- </tr>
- <tr height="40px">
- <td>
- 1
- </td>
- <td>
- 环境保护、劳动安全卫生、消防主管部门关于试运行的准许意见
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid71" id="delid71" value="${fjList71.fjid }">
- <input type="hidden" class="form-control" id="fjzdid71">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('71')"><span id="fjmc71">${fjList71.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw71">${recordfj71.fbdw }</span>
- </td>
- <td>
- <span id="wjh71">${recordfj71.wjh }</span>
- </td>
- <td>
- <span id="fbsj71">${recordfj71.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=7 && opflag == 7 }">
- <td>
- <a id="tjbt71" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('71')">
- 添加</a>
- <a id="scbt71" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('71')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
-
- <tr height="40px">
- <td>
- 2
- </td>
- <td>
- 试运行备案表
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid72" id="delid72" value="${fjList72.fjid }">
- <input type="hidden" class="form-control" id="fjzdid72">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('72')"><span id="fjmc72">${fjList72.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw72">${recordfj72.fbdw }</span>
- </td>
- <td>
- <span id="wjh72">${recordfj72.wjh }</span>
- </td>
- <td>
- <span id="fbsj72">${recordfj72.fbsj }</span>
- </td>
-
- <c:if test="${spflag!=7 && opflag == 7 }">
- <td>
- <a id="tjbt72" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('72')">
- 添加</a>
- <a id="scbt72" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('72')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
- <c:forEach items="${fjvolist7}" var="qtfj" varStatus="status">
- <tr height="40px">
- <td>${status.index+3}</td>
- <td>其他附件</td>
- <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
- <td>${qtfj.fbdw }</td>
- <td>${qtfj.wjh }</td>
- <td>${qtfj.fbsj }</td>
- </tr>
- </c:forEach>
- <tbody id="viewqtfj7"></tbody>
- <c:if test="${sfjyr!=1 }">
- <c:if test="${spflag==7 || opflag > 7 }">
- <tr height=100px>
- <td colspan=1 >
- 审批意见
- </td>
- <td colspan=5>
- <textarea class="form-control" name="spyj7" id="spyj7" style="height:100px;" value="${xmxxfb.yj }"></textarea>
- </td>
- </tr>
- </c:if>
- </c:if>
- <tbody id="qtfjtb7"></tbody>
- </table>
- </div>
- </div>
- <div class="tab-pane fade" id="jgys2">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" id="tb8" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">材料名称</th>
- <th width="10%">上传附件名称</th>
- <th width="10%">批文单位</th>
- <th width="10%">文号</th>
- <th width="10%">批文时间</th>
- <c:if test="${spflag!=8 && opflag == 8 }">
- <th width="15%">操作</th>
- </c:if>
- </tr>
- <tr height="40px">
- <td>
- 1
- </td>
- <td>
- 竣工资料汇编
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid81" id="delid81" value="${fjList81.fjid }">
- <input type="hidden" class="form-control" id="fjzdid81">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('81')"><span id="fjmc81">${fjList81.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw81">${recordfj81.fbdw }</span>
- </td>
- <td>
- <span id=wjh81>${recordfj81.wjh }</span>
- </td>
- <td>
- <span id="fbsj81">${recordfj81.fbsj }</span>
- </td>
- <c:if test="${spflag!=8 && opflag == 8 }">
- <td>
- <a id="tjbt81" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('81')">
- 添加</a>
- <a id="scbt81" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('81')">
- 删除</a>
- </td>
- </c:if>
- </tr>
-
- <tr height="40px">
- <td>
- 2
- </td>
- <td>
- 竣工验收证书(多个,新码头,老码头改造)
- </td>
- <td>
- <input type="hidden" class="form-control" name="delid82" id="delid82" value="${fjList82.fjid }">
- <input type="hidden" class="form-control" id="fjzdid82">
- <a class='main_title' href="#" onclick="jsjdgl.detail.download('82')"><span id="fjmc82">${fjList82.fjmc }</span></a>
- </td>
- <td>
- <span id="fbdw82">${recordfj82.fbdw }</span>
- </td>
- <td>
- <span id="wjh82">${recordfj82.wjh }</span>
- </td>
- <td>
- <span id="fbsj82">${recordfj82.fbsj }</span>
- </td>
- <c:if test="${spflag!=8 && opflag == 8 }">
- <td>
- <a id="tjbt82" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('82')">
- 添加</a>
- <a id="scbt82" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('82')">
- 删除</a>
- </td>
- </c:if>
-
- </tr>
-
- <%-- <tr>
- <td>3</td>
- <td>竣工验收鉴定书</td>
- <td><input type="hidden" class="form-control"
- name="delid83" id="delid83" value="${fjList83.fjid }">
- <input type="hidden" class="form-control" id="fjzdid83">
- <a class='main_title' href="#"
- onclick="jsjdgl.detail.download('83')"><span id="fjmc83">${fjList83.fjmc }</span></a>
- </td>
- <td><span id="fbdw83">${recordfj83.fbdw }</span></td>
- <td><span id="wjh83">${recordfj83.wjh }</span></td>
- <td><span id="fbsj83">${recordfj83.fbsj }</span></td>
- <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
- <c:if test="${spflag==8 && opflag == 8 }">
- <td>
- <a id="tjbt83" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('83')">
- 添加</a>
- <a id="scbt83" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('83')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag!=8 && opflag == 8 }">
- <Td></Td>
- </c:if>
- </c:if>
- </tr>
- <Tr>
- <td>4</td>
- <td>专家审查意见</td>
- <td><input type="hidden" class="form-control"
- name="delid84" id="delid84" value="${fjList84.fjid }">
- <input type="hidden" class="form-control" id="fjzdid84">
- <a class='main_title' href="#"
- onclick="jsjdgl.detail.download('84')"><span id="fjmc84">${fjList84.fjmc }</span></a>
- </td>
- <td><span id="fbdw84">${recordfj84.fbdw }</span></td>
- <td><span id="wjh84">${recordfj84.wjh }</span></td>
- <td><span id="fbsj84">${recordfj84.fbsj }</span></td>
- <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
- <c:if test="${spflag==8 && opflag == 8 }">
- <td>
- <a id="tjbt84" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('84')">
- 添加</a>
- <a id="scbt84" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('84')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag!=8 && opflag == 8 }">
- <Td></Td>
- </c:if>
- </c:if>
- </tr>
- <tr>
- <td>5</td>
- <td>对验收意见的答复</td>
- <td><input type="hidden" class="form-control"
- name="delid85" id="delid85" value="${fjList85.fjid }">
- <input type="hidden" class="form-control" id="fjzdid85">
- <a class='main_title' href="#"
- onclick="jsjdgl.detail.download('85')"><span id="fjmc85">${fjList85.fjmc }</span></a>
- </td>
- <td><span id="fbdw85">${recordfj85.fbdw }</span></td>
- <td><span id="wjh85">${recordfj85.wjh }</span></td>
- <td><span id="fbsj85">${recordfj85.fbsj }</span></td>
- <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
- <c:if test="${spflag==8 && opflag == 8 }">
- <td>
- <a id="tjbt85" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('85')">
- 添加</a>
- <a id="scbt85" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('85')">
- 删除</a>
- </td>
- </c:if>
- <c:if test="${spflag!=8 && opflag == 8 }">
- <Td></Td>
- </c:if>
- </c:if>
- </tr> --%>
-
- <c:forEach items="${fjvolist8}" var="qtfj" varStatus="status">
- <tr height="40px">
- <td>${status.index+3}</td>
- <td>其他附件</td>
- <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
- <td>${qtfj.fbdw }</td>
- <td>${qtfj.wjh }</td>
- <td>${qtfj.fbsj }</td>
- </tr>
- </c:forEach>
- <tbody id="viewqtfj8"></tbody>
- <c:if test="${sfjyr!=1 }">
- <c:if test="${spflag==8 || opflag > 8 }">
- <tr height=100px>
- <td colspan=1 >
- 审批意见
- </td>
- <td colspan=6>
- <textarea class="form-control" name="spyj8" id="spyj8" style="height:100px;" value="${xmxxfb.yj }"></textarea>
- </td>
- </tr>
- </c:if>
- </c:if>
- <tbody id="qtfjtb8"></tbody>
- </table>
- </div>
- </div>
- <div class="tab-pane fade" id="lcls">
- <div style="background-color:#f4f4f4;">
- <table class="main_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="10%">流程节点名</th>
- <th width="10%">处理结果</th>
- <th width="10%">审批人</th>
- <th width="10%">审批时间</th>
- <th width="10%">审批意见</th>
- </tr>
- <tbody id="lclstb"></tbody>
- </table>
- </div>
- </div>
- </div>
- <div class="theme-popover" id="qtfjpopover" style="width: 900px;height: 400px;">
- <div class="theme-poptit">
- <input type="hidden" class="form-control" id="qtfjid" name="qtfjid">
- <input type="hidden" class="form-control" id="qtfjzdids" name="qtfjzdids">
- <input type="hidden" class="form-control" id="qtfjids" name="qtfjids">
- <div class="close-tc">
- <a href="#" title="关闭" onclick="jsjdgl.detail.qtfjguanbipop()" >×</a>
- </div>
- </div>
- <div class="popContent-tc" >
- <table class="apply" cellpadding="0" cellspacing="0">
- <tr>
- <th>文号 : </th>
- <td>
- <input type="text" class="form-control" name="qtwjh" id="wjh">
- </td>
- </tr>
- <tr>
- <th>批文时间: </th>
- <td>
- <input class="Wdate" name="qtfbsj" id="fbsj" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM-dd'})">
- </td>
- </tr>
- <tr>
- <th>批文单位: </th>
- <td>
- <input type="text" class="form-control" name="qtfbdw" id="fbdw">
- </td>
- </tr>
- <tr>
- <th>上传附件名称: </th>
- <td>
- <div>
- <a href="#" id="scqtfjbt" class="file"><input type="file" name="qtfilename" id="qtfileid" onchange="jsjdgl.detail.saveQtfj()">选择本地文件</a>
- </div>
- <div id="qtfjxq">
- </div>
- <span>(上传文件最大50M,只可上传pdf、doc、docx、xls、xlsx格式文件)</span>
- </td>
- </tr>
- </table>
- <div id="buttons">
- <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.xinzengqtfj()">
- <i></i>
- 保存</a>
- <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.qtfjguanbipop()">
- <i></i>
- 关闭</a>
- </div>
- </div>
- </div>
- <div class="theme-popover-mask" id="qtfjmask"></div>
- <div class="theme-popover" id="theme-popover" style="width: 900px;height: 400px;">
- <div class="theme-poptit">
- <input type="hidden" class="form-control" id="flag">
- <div class="close-tc">
- <a href="#" title="关闭" onclick="jsjdgl.detail.guanbipop()" >×</a>
- </div>
- </div>
- <div class="popContent-tc" >
- <table class="apply" cellpadding="0" cellspacing="0">
- <tr>
- <th>文号 : </th>
- <td>
- <input type="text" class="form-control" name="wjh" id="wjh1">
- </td>
- </tr>
- <tr>
- <th>批文时间: </th>
- <td>
- <input class="Wdate" name="fbsj" id="fbsj1" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM-dd'})">
- </td>
- </tr>
- <tr>
- <th>批文单位: </th>
- <td>
- <input type="text" class="form-control" name="fbdw" id="fbdw1">
- </td>
- </tr>
- <tr>
- <th>上传附件名称: </th>
- <td>
- <div>
- <a href="#" id="scfjbt" class="file"><input type="file" name="filename" id="fileid" onchange="jsjdgl.detail.saveFile()">选择本地文件</a>
- </div>
- <div id="fjxq">
- </div>
- <span>(上传文件最大50M,只可上传pdf、doc、docx、xls、xlsx格式文件)</span>
- </td>
- </tr>
- </table>
- <div id="buttons">
- <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.xinzengfj()">
- 保存</a>
- <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.guanbipop()">
- 关闭</a>
- </div>
- </div>
- </div>
- <div class="theme-popover-mask" id="theme-popover-mask"></div>
- </form>
- <%-- <div id="buttons">
- <c:if test="${sfjyr==1 }">
- <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.qtfj()">
- 其他附件</a>
- </c:if>
- <c:if test="${sfjyr=='' }">
- <c:if test="${flag=='audit' }">
- <c:if test="${ spflag !='3' && spflag !='8' }">
- <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
- <i class="glyphicon glyphicon-ok-sign"></i>
- 同意</a>
- <c:if test="${sfjyr!=1 }">
- <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
- <i class="glyphicon glyphicon-ban-circle"></i>
- 退回</a>
- </c:if>
- </c:if>
-
- <c:if test="${ spflag =='3' }">
- <c:if test="${record.flowstatus == '1' }">
- <c:if test="${sfjyr!=1 }">
- <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
- <i class="glyphicon glyphicon-ban-circle"></i>
- 退回</a>
- </c:if>
- </c:if>
- <c:if test="${record.flowstatus == '2' || record.flowstatus == '' || record.flowstatus == null }">
- <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
- <i class="glyphicon glyphicon-ok-sign"></i>
- 同意</a>
- <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
- <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.saveTbzt('${record.id}')">
- <i class="glyphicon glyphicon-ok-sign"></i>
- 转报省级</a>
- </c:if>
- <c:if test="${sfjyr!=1 }">
- <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
- <i class="glyphicon glyphicon-ban-circle"></i>
- 退回</a>
-
- </c:if>
- </c:if>
- </c:if>
-
- <c:if test="${ spflag =='8' }">
- <c:if test="${record.flowstatus == '3' }">
- <c:if test="${sfjyr!=1 }">
- <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
- <i class="glyphicon glyphicon-ban-circle"></i>
- 退回</a>
- </c:if>
- </c:if>
- <c:if test="${ record.flowstatus == '2' || record.flowstatus == '4' || record.flowstatus == '' || record.flowstatus == null }">
- <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
- <i class="glyphicon glyphicon-ok-sign"></i>
- 同意</a>
- <c:if test="${ record.flowstatus == '2' || record.flowstatus == '' || record.flowstatus == null }">
- <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.saveTbzt('${record.id}')">
- <i class="glyphicon glyphicon-ok-sign"></i>
- 转报省级</a>
- </c:if>
- <c:if test="${sfjyr!=1 }">
- <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
- <i class="glyphicon glyphicon-ban-circle"></i>
- 退回</a>
-
- </c:if>
- </c:if>
- </c:if>
- </c:if>
- </c:if>
-
-
- <c:if test="${sfjyr==1 }">
- <c:if test="${flag=='audit' }">
- <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
- <i class="glyphicon glyphicon-share"></i>
- 提交</a>
- </c:if>
- </c:if>
-
- <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.back()">
- <i class="glyphicon glyphicon-arrow-left"></i>
- 返回</a>
- </div> --%>
- <div id="buttons">
- <c:if test="${sfjyr==1 }">
- <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.qtfj()">
- 其他附件</a>
- </c:if>
- <c:if test="${sfjyr=='' }">
- <c:if test="${flag=='audit' }">
- <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
- <i class="glyphicon glyphicon-ok-sign"></i>
- 同意</a>
- </c:if>
- </c:if>
- <c:if test="${sfjyr==1 }">
- <c:if test="${flag=='audit' }">
- <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
- <i class="glyphicon glyphicon-ok-sign"></i>
- 提交</a>
- </c:if>
- </c:if>
- <c:if test="${sfjyr!=1 }">
- <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
- <i class="glyphicon glyphicon-ban-circle"></i>
- 退回</a>
- </c:if>
- <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.back()">
- <i class="glyphicon glyphicon-arrow-left"></i>
- 返回</a>
- </div>
- </div>
- </div>
- </div>
-
- </body>
- </html>
|