jsjdgledit.jsp 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8">
  7. <title>江苏省港口建设与经营管理信息系统</title>
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <%@ include file="../../common.jsp"%>
  10. <script type="text/javascript" src="${app }/static/biz/js/gkjsgl/jsjdgl/jsjdgldetail.js"></script>
  11. <script type="text/javascript" src="${app }/static/biz/js/gkjsgl/xmxxgl/xmxxgldetail.js"></script>
  12. <script type="text/javascript">
  13. $(document).ready(function () {
  14. if('${record.tzlx }' == "1903") {
  15. $("#zftzDiv").css("display","table-row");
  16. var ztz = '${record.ztz}';
  17. var zftze = '${record.zftze}';
  18. if(isEmpty(ztz) || isEmpty(zftze)) {
  19. return;
  20. }
  21. if(isFDS(ztz) && isFDS(zftze)) {
  22. var rate = (zftze/ztz)*100;
  23. $("#zftzTd").html(rate.toFixed(2));
  24. }
  25. } else {
  26. $("#zftzDiv").css("display","none");
  27. }
  28. jsjdgl.detail.init();
  29. jsjdgl.detail.path='${path}';
  30. jsjdgl.detail.type='${type}';
  31. initSylxSelect('sylxsel', '${record.sylx }', '80%');
  32. initTzlxSelect('tzlxsel','${record.tzlx }','80%');
  33. initXmhzjbSelect('xmhzjbsel','${record.xmhzjb }','80%');
  34. initAxspjbSelect('axspjbsel','${record.axspjb }','80%');
  35. xmxxgl.detail.initszdSelect('szdsel', '${jyr.szd.id }', 'showgk', '80%','disable');
  36. xmxxgl.detail.initgkSelect('gksel','${record.szgk }','${jyr.szd.id }','showgq','80%','disable');
  37. xmxxgl.detail.initgqSelect('gqsel','${record.szgq }','${jyr.szd.id }','${record.szgk }',null,'80%','disable');
  38. //初始化实施过程
  39. jsjdgl.detail.initssgc('${record.id }');
  40. xmxxgl.detail.initBwyt('bwytsel', '${record.bwyt }');
  41. xmxxgl.detail.initZyhbwfl('zyhbwflsel', '${record.zyhbwfl }','${record.bwyt }');
  42. jsjdgl.detail.opflag="${opflag}";
  43. var opflag = "${opflag}";
  44. if(opflag == 2){
  45. $("#xmsphzbali").addClass("active");
  46. $("#xmsphzba").addClass("tab-pane fade in active");
  47. $("#spyj1").attr("readonly","readonly");
  48. //附件
  49. jsjdgl.detail.fjid21='${fjList21.fjid }';
  50. fjgt(jsjdgl.detail.fjid21,'scbt21','tjbt21');
  51. }else if(opflag== 3){
  52. $("#cbsjspli").addClass("active");
  53. $("#cbsjsp").addClass("tab-pane fade in active");
  54. $("#spyj1").attr("readonly","readonly");
  55. $("#spyj2").attr("readonly","readonly");
  56. //附件
  57. jsjdgl.detail.fjid31='${fjList31.fjid }';
  58. fjgt(jsjdgl.detail.fjid31,'scbt31','tjbt31');
  59. jsjdgl.detail.fjid32='${fjList32.fjid }';
  60. fjgt(jsjdgl.detail.fjid32,'scbt32','tjbt32');
  61. jsjdgl.detail.fjid33='${fjList33.fjid }';
  62. fjgt(jsjdgl.detail.fjid33,'scbt33','tjbt33');
  63. jsjdgl.detail.fjid34='${fjList34.fjid }';
  64. fjgt(jsjdgl.detail.fjid34,'scbt34','tjbt34');
  65. jsjdgl.detail.fjid35='${fjList35.fjid }';
  66. fjgt(jsjdgl.detail.fjid35,'scbt35','tjbt35');
  67. jsjdgl.detail.fjid36='${fjList36.fjid }';
  68. fjgt(jsjdgl.detail.fjid36,'scbt36','tjbt34');
  69. jsjdgl.detail.fjid37='${fjList37.fjid }';
  70. fjgt(jsjdgl.detail.fjid37,'scbt37','tjbt37');
  71. jsjdgl.detail.fjid38='${fjList38.fjid }';
  72. fjgt(jsjdgl.detail.fjid38,'scbt38','tjbt38');
  73. }else if(opflag== 4){
  74. $("#sgtsjspli").addClass("active");
  75. $("#sgtsjsp").addClass("tab-pane fade in active");
  76. $("#spyj1").attr("readonly","readonly");
  77. $("#spyj2").attr("readonly","readonly");
  78. $("#spyj3").attr("readonly","readonly");
  79. //附件
  80. jsjdgl.detail.fjid41='${fjList41.fjid }';
  81. fjgt(jsjdgl.detail.fjid41,'scbt41','tjbt41');
  82. jsjdgl.detail.fjid42='${fjList42.fjid }';
  83. fjgt(jsjdgl.detail.fjid42,'scbt42','tjbt42');
  84. }else if(opflag== 5){
  85. $("#kgbali").addClass("active");
  86. $("#kgba").addClass("tab-pane fade in active");
  87. $("#spyj1").attr("readonly","readonly");
  88. $("#spyj2").attr("readonly","readonly");
  89. $("#spyj3").attr("readonly","readonly");
  90. $("#spyj4").attr("readonly","readonly");
  91. //附件
  92. jsjdgl.detail.fjid51='${fjList51.fjid }';
  93. fjgt(jsjdgl.detail.fjid51,'scbt51','tjbt51');
  94. jsjdgl.detail.fjid52='${fjList52.fjid }';
  95. fjgt(jsjdgl.detail.fjid52,'scbt52','tjbt52');
  96. jsjdgl.detail.fjid53='${fjList53.fjid }';
  97. fjgt(jsjdgl.detail.fjid53,'scbt53','tjbt53');
  98. jsjdgl.detail.fjid54='${fjList54.fjid }';
  99. fjgt(jsjdgl.detail.fjid54,'scbt54','tjbt54');
  100. jsjdgl.detail.fjid55='${fjList55.fjid }';
  101. fjgt(jsjdgl.detail.fjid55,'scbt55','tjbt55');
  102. jsjdgl.detail.fjid56='${fjList56.fjid }';
  103. fjgt(jsjdgl.detail.fjid56,'scbt56','tjbt56');
  104. }else if(opflag== 6){
  105. $("#jgys1li").addClass("active");
  106. $("#jgys1").addClass("tab-pane fade in active");
  107. $("#spyj1").attr("readonly","readonly");
  108. $("#spyj2").attr("readonly","readonly");
  109. $("#spyj3").attr("readonly","readonly");
  110. $("#spyj4").attr("readonly","readonly");
  111. $("#spyj5").attr("readonly","readonly");
  112. //附件
  113. jsjdgl.detail.fjid61='${fjList61.fjid }';
  114. fjgt(jsjdgl.detail.fjid61,'scbt61','tjbt61');
  115. jsjdgl.detail.fjid62='${fjList62.fjid }';
  116. fjgt(jsjdgl.detail.fjid62,'scbt62','tjbt62');
  117. }else if(opflag== 7){
  118. $("#syxbali").addClass("active");
  119. $("#syxba").addClass("tab-pane fade in active");
  120. $("#spyj1").attr("readonly","readonly");
  121. $("#spyj2").attr("readonly","readonly");
  122. $("#spyj3").attr("readonly","readonly");
  123. $("#spyj4").attr("readonly","readonly");
  124. $("#spyj5").attr("readonly","readonly");
  125. $("#spyj6").attr("readonly","readonly");
  126. //附件
  127. jsjdgl.detail.fjid71='${fjList71.fjid }';
  128. fjgt(jsjdgl.detail.fjid71,'scbt71','tjbt71');
  129. jsjdgl.detail.fjid72='${fjList72.fjid }';
  130. fjgt(jsjdgl.detail.fjid72,'scbt72','tjbt72');
  131. }else if(opflag== 8){
  132. $("#jgys2li").addClass("active");
  133. $("#jgys2").addClass("tab-pane fade in active");
  134. $("#spyj1").attr("readonly","readonly");
  135. $("#spyj2").attr("readonly","readonly");
  136. $("#spyj3").attr("readonly","readonly");
  137. $("#spyj4").attr("readonly","readonly");
  138. $("#spyj5").attr("readonly","readonly");
  139. $("#spyj6").attr("readonly","readonly");
  140. $("#spyj7").attr("readonly","readonly");
  141. //附件
  142. jsjdgl.detail.fjid81='${fjList81.fjid }';
  143. fjgt(jsjdgl.detail.fjid81,'scbt81','tjbt81');
  144. jsjdgl.detail.fjid82='${fjList82.fjid }';
  145. fjgt(jsjdgl.detail.fjid82,'scbt82','tjbt82');
  146. jsjdgl.detail.fjid83='${fjList83.fjid }';
  147. fjgt(jsjdgl.detail.fjid83,'scbt83','tjbt83');
  148. jsjdgl.detail.fjid84='${fjList84.fjid }';
  149. fjgt(jsjdgl.detail.fjid84,'scbt84','tjbt84');
  150. jsjdgl.detail.fjid85='${fjList85.fjid }';
  151. fjgt(jsjdgl.detail.fjid85,'scbt85','tjbt85');
  152. }else {
  153. $("#axlyspli").addClass("active");
  154. $("#axlysp").addClass("tab-pane fade in active");
  155. //附件
  156. jsjdgl.detail.fjid11='${fjList11.fjid }';
  157. fjgt(jsjdgl.detail.fjid11,'scbt11','tjbt11');
  158. }
  159. //返回判断
  160. jsjdgl.detail.fhpd(opflag);
  161. });
  162. function showgk(){
  163. initgkSelect('gksel','${record.szgk }',$('.szdselectpicker').val(),"showgq",'80%');
  164. showgq();
  165. }
  166. function showgq(){
  167. initgqSelect('gqsel','${record.szgq }',$('.szdselectpicker').val(),$('.gkselectpicker').val(),null,'80%');
  168. }
  169. function tanchu(){
  170. //此处可以先进行ajax请求获取数据,然后再回掉中再显示弹出框
  171. $('.theme-popover-mask').fadeIn(100);
  172. $('.theme-popover').slideDown(0);
  173. }
  174. function guanbi(){
  175. $('.theme-popover-mask').fadeOut(100);
  176. $('.theme-popover').slideUp(0);
  177. }
  178. function ytsel(){
  179. xmxxgl.detail.initZyhbwfl('zyhbwflsel', '',$('.bwytselectpicker').val()+"");
  180. }
  181. function fjgt(fjid,scbtid,tjbtid){
  182. if(fjid!=null&&fjid!=''){
  183. $("#"+scbtid).show();
  184. $("#"+tjbtid).hide();
  185. }else{
  186. $("#"+scbtid).hide();
  187. $("#"+tjbtid).show();
  188. }
  189. }
  190. function guanbipop(){
  191. $('.theme-popover-mask').fadeOut(100);
  192. $('.theme-popover').slideUp(0);
  193. }
  194. </script>
  195. </head>
  196. <jsp:include page="../../showbwview.jsp"></jsp:include>
  197. <body>
  198. <div class="box" >
  199. <div class="box-content" >
  200. <div class="apply_fill">
  201. <form id="addform" method="post" enctype="multipart/form-data">
  202. <input type="hidden" class="form-control" name="fjzdids" id="fjzdids">
  203. <input type="hidden" class="form-control" name="accids" id="accids">
  204. <input type="hidden" class="form-control" id="xiazaibz" value="${xiazaibz }">
  205. <input type="hidden" id="fhbz" value="${fhbz }">
  206. <input type="hidden" id ="id" name="id" value="${record.id }"/>
  207. <input type="hidden" id ="opflag" name="opflag" value="${opflag }"/>
  208. <input type="hidden" id ="spflag" name="spflag" value="${spflag }"/>
  209. <input type="hidden" id ="sfjyr" name="sfjyr" value="${sfjyr }">
  210. <table class="apply3" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
  211. <tr>
  212. <th><span class="needwrite">*</span>项目编码:&nbsp;</th>
  213. <td >
  214. <input type="text" class="form-control" name="xmbm" readonly value="${record.xmbm }">
  215. </td>
  216. <th><span class="needwrite">*</span>项目名称:&nbsp;</th>
  217. <td style="position:relative;">
  218. <input type="text" class="form-control" id="xmmc" name="xmmc" readonly value="${record.xmmc }">
  219. </td>
  220. </tr>
  221. <tr>
  222. <th>项目概况:&nbsp;</th>
  223. <td colspan="3">
  224. <input type="text" class="form-control" name="xmgk" value="${record.xmgk }">
  225. </td>
  226. </tr>
  227. <tr>
  228. <th>建设规模:&nbsp;</th>
  229. <td colspan="3">
  230. <input type="text" class="form-control" name="jsgm" value="${record.jsgm }">
  231. </td>
  232. </tr>
  233. <tr>
  234. <th><span class="needwrite">*</span>项目法人:&nbsp;</th>
  235. <td>
  236. <input type="text" class="form-control" id="xmfr" name="xmfr" value="${record.xmfr }">
  237. </td>
  238. <th><span class="needwrite">*</span>建设单位:&nbsp;</th>
  239. <td >
  240. <input type="hidden" class="form-control" id="ssjyrid" name="ssjyrid" value="${jyr.id }">
  241. <input type="text" readonly class="form-control" id="jyrmc" value="${jyr.gkjyr }">
  242. </td>
  243. </tr>
  244. <tr>
  245. <th><span class="needwrite">*</span>行政区划:&nbsp;</th>
  246. <td>
  247. <input type="text" readonly="readonly" class="form-control" value="${xzqhname}">
  248. </td>
  249. <th><span class="needwrite">*</span>所在地:&nbsp;</th>
  250. <td>
  251. <div id="szdsel"></div>
  252. </td>
  253. </tr>
  254. <tr>
  255. <th><span class="needwrite">*</span>所在港口:&nbsp;</th>
  256. <td >
  257. <div id="gksel"></div>
  258. </td>
  259. <th><span class="needwrite">*</span>所在港区:&nbsp;</th>
  260. <td>
  261. <div id="gqsel"></div>
  262. </td>
  263. </tr>
  264. <tr>
  265. <th><span class="needwrite">*</span>项目类型:&nbsp;</th>
  266. <td >
  267. <input type="text" readonly class="form-control" id="xmlx" name="xmlx" value="${record.xmlxzw }">
  268. <input type="hidden" id="xmlxid" name="xmlxid" value="${record.xmlx }">
  269. </td>
  270. <th><span class="needwrite">*</span>建设地址:&nbsp;</th>
  271. <td >
  272. <input type="text" class="form-control" id="jsdd" name="jsdd" value="${record.jsdd }">
  273. </td>
  274. </tr>
  275. <tr>
  276. <th>总投资 (万元):&nbsp;</th>
  277. <td>
  278. <input type="text" class="form-control" id="ztz" name="ztz" value="${record.ztz }">
  279. </td>
  280. <th>投资类型:&nbsp;</th>
  281. <td>
  282. <div id="tzlxsel"></div>
  283. </td>
  284. </tr>
  285. <tr id="zftzDiv" style="display:none">
  286. <th>政府投资(万元):&nbsp;</th>
  287. <td >
  288. <input type="text" class="form-control" name="zftze" value="${record.zftze }" onchange="ratesub()">
  289. </td>
  290. <th>政府投资占比(%):&nbsp;</th>
  291. <td >
  292. <input type="text" class="form-control" readonly="readonly" id="zftzezb">
  293. </td>
  294. </tr>
  295. <tr>
  296. <th>建成时间:&nbsp;</th>
  297. <td>
  298. <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'})">
  299. </td>
  300. <th>泊位个数:&nbsp;</th>
  301. <td>
  302. <input type="text" class="form-control" id="bwgs" value="${bwgs }">
  303. </td>
  304. </tr>
  305. <tr>
  306. <th>项目核准级别:&nbsp;</th>
  307. <td>
  308. <div id="xmhzjbsel"></div>
  309. </td>
  310. <th>通过能力(万吨):&nbsp;</th>
  311. <td >
  312. <input type="text" class="form-control" id="tgnl" name="tgnl" value="${record.tgnl }">
  313. </td>
  314. </tr>
  315. <tr>
  316. <th>岸线审批级别:&nbsp;</th>
  317. <td >
  318. <div id="axspjbsel"></div>
  319. </td>
  320. <th>岸线长度 (米):&nbsp;</th>
  321. <td >
  322. <input type="text" class="form-control" id="axcd" name="axcd" value="${record.axcd }">
  323. </td>
  324. </tr>
  325. <tr>
  326. <th>水域类型:&nbsp;</th>
  327. <td >
  328. <div id="sylxsel"></div>
  329. </td>
  330. </tr>
  331. </table>
  332. <table id="bwtableID" class="main_table" cellpadding="0" cellspacing="0">
  333. <thead>
  334. <tr>
  335. <th width="5%">序号</th>
  336. <th width="10%">泊位名称</th>
  337. <th width="10%">港口经营人</th>
  338. <th width="10%">码头名称</th>
  339. <th width="10%">所在港口</th>
  340. <th width="10%">所在港区</th>
  341. <th width="15%">泊位用途</th>
  342. <th width="5%">是否<br>危险品泊位</th>
  343. <th width="5%">是否<br>对外开放泊位</th>
  344. </tr>
  345. </thead>
  346. <c:forEach items="${bwlist}" var="bw" varStatus="status">
  347. <tr >
  348. <td >${status.count }</td>
  349. <td ><a onclick="jsjdgl.detail.viewBw('${bw.id}')">${bw.bwmc }</a></td>
  350. <td >${bw.ssjyrzw }</td>
  351. <td >${bw.ssmtzw }</td>
  352. <td >${bw.szgkzw }</td>
  353. <td >${bw.szgqzw }</td>
  354. <td >${bw.bwytzw }</td>
  355. <td >${bw.wxpbwzw }</td>
  356. <td >${bw.sfdwkfzw }</td>
  357. </tr>
  358. </c:forEach>
  359. </table>
  360. <ul id="myTab" class="nav nav-tabs">
  361. <li style="width:11%;font-size:14px;text-align:center" id="axlyspli">
  362. <a href="#axlysp" data-toggle="tab" onclick ="jsjdgl.detail.show(1)">
  363. 岸线利<br>用审批
  364. </a>
  365. </li>
  366. <c:if test="${opflag > 1 }">
  367. <li style="width:11%;font-size:14px;text-align:center" id="xmsphzbali">
  368. <a href="#xmsphzba" data-toggle="tab" onclick ="jsjdgl.detail.show(2)">
  369. 项目审批<br>核准备案
  370. </a>
  371. </li>
  372. </c:if>
  373. <c:if test="${opflag > 2}">
  374. <li style="width:10%;font-size:14px;text-align:center" id="cbsjspli">
  375. <a href="#cbsjsp" data-toggle="tab" onclick ="jsjdgl.detail.show(3)">
  376. 初步设<br>计审批
  377. </a>
  378. </li>
  379. </c:if>
  380. <c:if test="${opflag > 3 }">
  381. <li style="width:12%;font-size:14px;text-align:center" id="sgtsjspli">
  382. <a href="#sgtsjsp" data-toggle="tab" onclick ="jsjdgl.detail.show(4)">
  383. 施工图设<br>计审批
  384. </a>
  385. </li>
  386. </c:if>
  387. <c:if test="${opflag > 4 }">
  388. <li style="width:9%;font-size:14px;text-align:center" id="kgbali">
  389. <a href="#kgba" data-toggle="tab" onclick ="jsjdgl.detail.show(5)">
  390. 开工<br>备案
  391. </a>
  392. </li>
  393. </c:if>
  394. <c:if test="${opflag > 5 }">
  395. <li style="width:9%;font-size:14px;text-align:center" id="jgys1li">
  396. <a href="#jgys1" data-toggle="tab" onclick ="jsjdgl.detail.show(6)">
  397. 交工<br>验收
  398. </a>
  399. </li>
  400. </c:if>
  401. <c:if test="${record.xmlx!=2202 }">
  402. <c:if test="${opflag > 6 }">
  403. <li style="width:10%;font-size:14px;text-align:center" id="syxbali">
  404. <a href="#syxba" data-toggle="tab" onclick ="jsjdgl.detail.show(7)">
  405. 试运行<br>备案
  406. </a>
  407. </li>
  408. </c:if>
  409. </c:if>
  410. <c:if test="${opflag > 7 }">
  411. <li style="width:9%;font-size:14px;text-align:center" id="jgys2li">
  412. <a href="#jgys2" data-toggle="tab" onclick ="jsjdgl.detail.show(8)">
  413. 竣工<br>验收
  414. </a>
  415. </li>
  416. </c:if>
  417. <li style="width:9%;font-size:14px;text-align:center" id="ssgcli">
  418. <a href="#ssgc" data-toggle="tab" >
  419. 实施<br>过程
  420. </a>
  421. </li>
  422. <li style="width:10%;font-size:14px;text-align:center" >
  423. <a href="#lcls" data-toggle="tab" onclick ="jsjdgl.detail.lcls('${record.id }')">
  424. 流程<br>历史
  425. </a>
  426. </li>
  427. </ul>
  428. <div id="myTabContent" class="tab-content">
  429. <div class="tab-pane fade" id="axlysp">
  430. <div style="background-color:#f4f4f4;">
  431. <table class="main_table" id="tb1" cellpadding="0" cellspacing="0">
  432. <tr>
  433. <th width="10%">序号</th>
  434. <th width="10%">材料名称</th>
  435. <th width="10%">上传附件名称</th>
  436. <th width="10%">批文单位</th>
  437. <th width="10%">文号</th>
  438. <th width="10%">批文时间</th>
  439. <c:if test="${spflag!=1 && opflag == 1 }">
  440. <th width="15%">操作</th>
  441. </c:if>
  442. </tr>
  443. <tr height="40px">
  444. <td>
  445. 1
  446. </td>
  447. <td>
  448. 岸线使用批复文件复印件
  449. </td>
  450. <td>
  451. <input type="hidden" class="form-control" name="delid11" id="delid11" value="${fjList11.fjid }">
  452. <input type="hidden" class="form-control" id="fjzdid11">
  453. <a class='main_title' href="#" onclick="jsjdgl.detail.download('11')"><span id="fjmc11">${fjList11.fjmc }</span></a>
  454. </td>
  455. <td>
  456. <span id="fbdw11">${recordfj11.fbdw }</span>
  457. </td>
  458. <td>
  459. <span id="wjh11">${recordfj11.wjh }</span>
  460. </td>
  461. <td>
  462. <span id="fbsj11">${recordfj11.fbsj }</span>
  463. </td>
  464. <c:if test="${spflag!=1 && opflag == 1 }">
  465. <td>
  466. <a id="tjbt11" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('11')">
  467. 添加</a>
  468. <a id="scbt11" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('11')">
  469. 删除</a>
  470. </td>
  471. </c:if>
  472. </tr>
  473. <c:forEach items="${fjvolist}" var="qtfj" varStatus="status">
  474. <tr height="40px">
  475. <td>${status.index+2}</td>
  476. <td>其他附件</td>
  477. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  478. <td>${qtfj.fbdw }</td>
  479. <td>${qtfj.wjh }</td>
  480. <td>${qtfj.fbsj }</td>
  481. </tr>
  482. </c:forEach>
  483. <tbody id="viewqtfj1"></tbody>
  484. <c:if test="${sfjyr!=1 }">
  485. <c:if test="${spflag==1 || opflag > 1 }">
  486. <tr height=100px>
  487. <td colspan=1 >
  488. 审批意见
  489. </td>
  490. <td colspan=5>
  491. <textarea class="form-control" name="spyj1" id="spyj1" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  492. </td>
  493. </tr>
  494. </c:if>
  495. </c:if>
  496. </table>
  497. </div>
  498. </div>
  499. <div class="tab-pane fade " id="xmsphzba">
  500. <div style="background-color:#f4f4f4;">
  501. <table class="main_table" id="tb2" cellpadding="0" cellspacing="0">
  502. <tr>
  503. <th width="10%">序号</th>
  504. <th width="10%">材料名称</th>
  505. <th width="10%">上传附件名称</th>
  506. <th width="10%">批文单位</th>
  507. <th width="10%">文号</th>
  508. <th width="10%">批文时间</th>
  509. <c:if test="${spflag!=2 && opflag == 2}">
  510. <th width="15%">操作</th>
  511. </c:if>
  512. </tr>
  513. <tr height="40px">
  514. <td>
  515. 1
  516. </td>
  517. <td>
  518. 项目批准或者核准、备案文件的复印件
  519. </td>
  520. <td>
  521. <input type="hidden" class="form-control" name="delid21" id="delid21" value="${fjList21.fjid }">
  522. <input type="hidden" class="form-control" id="fjzdid21">
  523. <a class='main_title' href="#" onclick="jsjdgl.detail.download('21')"><span id="fjmc21">${fjList21.fjmc}</span></a>
  524. </td>
  525. <td>
  526. <span id="fbdw21">${recordfj21.fbdw }</span>
  527. </td>
  528. <td>
  529. <span id="wjh21">${recordfj21.wjh }</span>
  530. </td>
  531. <td>
  532. <span id="fbsj21">${recordfj21.fbsj }</span>
  533. </td>
  534. <c:if test="${spflag!=2 && opflag == 2 }">
  535. <td>
  536. <a id="tjbt21" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('21')">
  537. 添加</a>
  538. <a id="scbt21" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('21')">
  539. 删除</a>
  540. </td>
  541. </c:if>
  542. </tr>
  543. <c:forEach items="${fjvolist2}" var="qtfj" varStatus="status">
  544. <tr height="40px">
  545. <td>${status.index+2}</td>
  546. <td>其他附件</td>
  547. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  548. <td>${qtfj.fbdw }</td>
  549. <td>${qtfj.wjh }</td>
  550. <td>${qtfj.fbsj }</td>
  551. </tr>
  552. </c:forEach>
  553. <tbody id="viewqtfj2"></tbody>
  554. <c:if test="${sfjyr!=1 }">
  555. <c:if test="${spflag==2 || opflag > 2 }">
  556. <tr height=100px>
  557. <td colspan=1 >
  558. 审批意见
  559. </td>
  560. <td colspan=5>
  561. <textarea class="form-control" name="spyj2" id="spyj2" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  562. </td>
  563. </tr>
  564. </c:if>
  565. </c:if>
  566. <tbody id="qtfjtb2"></tbody>
  567. </table>
  568. </div>
  569. </div>
  570. <div class="tab-pane fade" id="cbsjsp">
  571. <div style="background-color:#f4f4f4;">
  572. <table class="main_table" id="tb3" cellpadding="0" cellspacing="0">
  573. <tr>
  574. <th width="10%">序号</th>
  575. <th width="10%">材料名称</th>
  576. <th width="10%">上传附件名称</th>
  577. <th width="10%">批文单位</th>
  578. <th width="10%">文号</th>
  579. <th width="10%">批文时间</th>
  580. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  581. <c:if test="${spflag==3 || opflag == 3}">
  582. <th width="15%">操作</th>
  583. </c:if>
  584. </c:if>
  585. </tr>
  586. <tr height="40px">
  587. <td>
  588. 1
  589. </td>
  590. <td>
  591. 港口建设项目初步设计审批申请文件
  592. </td>
  593. <td>
  594. <input type="hidden" class="form-control" name="delid31" id="delid31" value="${fjList31.fjid }">
  595. <input type="hidden" class="form-control" id="fjzdid31">
  596. <a class='main_title' href="#" onclick="jsjdgl.detail.download('31')"><span id="fjmc31">${fjList31.fjmc }</span></a>
  597. </td>
  598. <td>
  599. <span id="fbdw31">${recordfj31.fbdw }</span>
  600. </td>
  601. <td>
  602. <span id="wjh31">${recordfj31.wjh }</span>
  603. </td>
  604. <td>
  605. <span id="fbsj31">${recordfj31.fbsj }</span>
  606. </td>
  607. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  608. <c:if test="${spflag!=3 && opflag == 3 }">
  609. <td>
  610. <a id="tjbt31" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('31')">
  611. 添加</a>
  612. <a id="scbt31" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('31')">
  613. 删除</a>
  614. </td>
  615. </c:if>
  616. <c:if test="${spflag==3 && opflag == 3 }">
  617. <td></td>
  618. </c:if>
  619. </c:if>
  620. </tr>
  621. <tr height="40px">
  622. <td>
  623. 2
  624. </td>
  625. <td>
  626. 港口建设项目初步设计文件
  627. </td>
  628. <td>
  629. <input type="hidden" class="form-control" name="delid32" id="delid32" value="${fjList32.fjid }">
  630. <input type="hidden" class="form-control" id="fjzdid32">
  631. <a class='main_title' href="#" onclick="jsjdgl.detail.download('32')"><span id="fjmc32">${fjList32.fjmc }</span></a>
  632. </td>
  633. <td>
  634. <span id="fbdw32">${recordfj32.fbdw }</span>
  635. </td>
  636. <td>
  637. <span id="wjh32">${recordfj32.wjh }</span>
  638. </td>
  639. <td>
  640. <span id="fbsj32">${recordfj32.fbsj }</span>
  641. </td>
  642. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  643. <c:if test="${spflag!=3 && opflag == 3 }">
  644. <td>
  645. <a id="tjbt32" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('32')">
  646. 添加</a>
  647. <a id="scbt32" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('32')">
  648. 删除</a>
  649. </td>
  650. </c:if>
  651. <c:if test="${spflag==3 && opflag == 3 }">
  652. <td></td>
  653. </c:if>
  654. </c:if>
  655. </tr>
  656. <tr height="40px">
  657. <td>
  658. 3
  659. </td>
  660. <td>
  661. 港口建设项目批准或者核准、备案文件
  662. </td>
  663. <td>
  664. <input type="hidden" class="form-control" name="delid33" id="delid33" value="${fjList33.fjid }">
  665. <input type="hidden" class="form-control" id="fjzdid33">
  666. <a class='main_title' href="#" onclick="jsjdgl.detail.download('33')"><span id="fjmc33">${fjList33.fjmc }</span></a>
  667. </td>
  668. <td>
  669. <span id="fbdw33">${recordfj33.fbdw }</span>
  670. </td>
  671. <td>
  672. <span id="wjh33">${recordfj33.wjh }</span>
  673. </td>
  674. <td>
  675. <span id="fbsj33">${recordfj33.fbsj }</span>
  676. </td>
  677. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  678. <c:if test="${spflag!=3 && opflag == 3 }">
  679. <td>
  680. <a id="tjbt33" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('33')">
  681. 添加</a>
  682. <a id="scbt33" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('33')">
  683. 删除</a>
  684. </td>
  685. </c:if>
  686. <c:if test="${spflag==3 && opflag == 3 }">
  687. <td></td>
  688. </c:if>
  689. </c:if>
  690. <tr>
  691. <td>4</td>
  692. <td>审查会议纪要</td>
  693. <td><input type="hidden" class="form-control"
  694. name="delid34" id="delid34" value="${fjList34.fjid }">
  695. <input type="hidden" class="form-control" id="fjzdid34">
  696. <a class='main_title' href="#"
  697. onclick="jsjdgl.detail.download('34')"><span id="fjmc34">${fjList34.fjmc }</span></a>
  698. </td>
  699. <td><span id="fbdw34">${recordfj34.fbdw }</span></td>
  700. <td><span id="wjh34">${recordfj34.wjh }</span></td>
  701. <td><span id="fbsj34">${recordfj34.fbsj }</span></td>
  702. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  703. <c:if test="${spflag ==3 && opflag == 3 }">
  704. <td>
  705. <a id="tjbt34" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('34')">
  706. 添加</a>
  707. <a id="scbt34" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('34')">
  708. 删除</a>
  709. </td>
  710. </c:if>
  711. <c:if test="${spflag!=3 && opflag == 3 }">
  712. <td></td>
  713. </c:if>
  714. </c:if>
  715. </tr>
  716. <tr>
  717. <td>5</td>
  718. <td>专家审查意见</td>
  719. <td><input type="hidden" class="form-control"
  720. name="delid35" id="delid35" value="${fjList35.fjid }">
  721. <input type="hidden" class="form-control" id="fjzdid35">
  722. <a class='main_title' href="#"
  723. onclick="jsjdgl.detail.download('35')"><span id="fjmc35">${fjList35.fjmc }</span></a>
  724. </td>
  725. <td><span id="fbdw35">${recordfj35.fbdw }</span></td>
  726. <td><span id="wjh35">${recordfj35.wjh }</span></td>
  727. <td><span id="fbsj35">${recordfj35.fbsj }</span></td>
  728. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  729. <c:if test="${spflag==3 && opflag == 3 }">
  730. <td>
  731. <a id="tjbt35" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('35')">
  732. 添加</a>
  733. <a id="scbt35" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('35')">
  734. 删除</a>
  735. </td>
  736. </c:if>
  737. <c:if test="${spflag!=3 && opflag == 3 }">
  738. <td></td>
  739. </c:if>
  740. </c:if>
  741. </tr>
  742. <tr>
  743. <td>6</td>
  744. <td>对审查意见的答复</td>
  745. <td><input type="hidden" class="form-control"
  746. name="delid36" id="delid36" value="${fjList36.fjid }">
  747. <input type="hidden" class="form-control" id="fjzdid36">
  748. <a class='main_title' href="#"
  749. onclick="jsjdgl.detail.download('36')"><span id="fjmc36">${fjList36.fjmc }</span></a>
  750. </td>
  751. <td><span id="fbdw36">${recordfj36.fbdw }</span></td>
  752. <td><span id="wjh36">${recordfj36.wjh }</span></td>
  753. <td><span id="fbsj36">${recordfj36.fbsj }</span></td>
  754. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  755. <c:if test="${spflag==3 && opflag == 3 }">
  756. <td>
  757. <a id="tjbt36" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('36')">
  758. 添加</a>
  759. <a id="scbt36" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('36')">
  760. 删除</a>
  761. </td>
  762. </c:if>
  763. <c:if test="${spflag!=3 && opflag == 3 }">
  764. <td></td>
  765. </c:if>
  766. </c:if>
  767. </tr>
  768. <tr>
  769. <td>7</td>
  770. <td>第三方审查咨询报告 ( 可选 )</td>
  771. <td><input type="hidden" class="form-control"
  772. name="delid37" id="delid37" value="${fjList37.fjid }">
  773. <input type="hidden" class="form-control" id="fjzdid37">
  774. <a class='main_title' href="#"
  775. onclick="jsjdgl.detail.download('37')"><span id="fjmc37">${fjList37.fjmc }</span></a>
  776. </td>
  777. <td><span id="fbdw37">${recordfj37.fbdw }</span></td>
  778. <td><span id="wjh37">${recordfj37.wjh }</span></td>
  779. <td><span id="fbsj37">${recordfj37.fbsj }</span></td>
  780. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  781. <c:if test="${spflag==3 && opflag == 3 }">
  782. <td>
  783. <a id="tjbt37" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('37')">
  784. 添加</a>
  785. <a id="scbt37" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('37')">
  786. 删除</a>
  787. </td>
  788. </c:if>
  789. <c:if test="${spflag!=3 && opflag == 3 }">
  790. <td></td>
  791. </c:if>
  792. </c:if>
  793. </tr>
  794. <tr>
  795. <td>8</td>
  796. <td>初步设计文件报批稿</td>
  797. <td><input type="hidden" class="form-control"
  798. name="delid38" id="delid38" value="${fjList38.fjid }">
  799. <input type="hidden" class="form-control" id="fjzdid38">
  800. <a class='main_title' href="#"
  801. onclick="jsjdgl.detail.download('38')"><span id="fjmc38">${fjList38.fjmc }</span></a>
  802. </td>
  803. <td><span id="fbdw38">${recordfj38.fbdw }</span></td>
  804. <td><span id="wjh38">${recordfj38.wjh }</span></td>
  805. <td><span id="fbsj38">${recordfj38.fbsj }</span></td>
  806. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  807. <c:if test="${spflag==3 && opflag == 3 }">
  808. <td>
  809. <a id="tjbt38" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('38')">
  810. 添加</a>
  811. <a id="scbt38" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('38')">
  812. 删除</a>
  813. </td>
  814. </c:if>
  815. <c:if test="${spflag!=3 && opflag == 3 }">
  816. <td></td>
  817. </c:if>
  818. </c:if>
  819. </tr>
  820. <c:forEach items="${fjvolist3}" var="qtfj" varStatus="status">
  821. <tr height="40px">
  822. <c:if test="${ record.flowstatus > 0 }">
  823. <td>${status.index+9}</td>
  824. </c:if>
  825. <c:if test="${ record.flowstatus == null || record.flowstatus == ''}">
  826. <td>${status.index+4}</td>
  827. </c:if>
  828. <td>其他附件</td>
  829. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  830. <td>${qtfj.fbdw }</td>
  831. <td>${qtfj.wjh }</td>
  832. <td>${qtfj.fbsj }</td>
  833. </tr>
  834. </c:forEach>
  835. <tbody id="viewqtfj3"></tbody>
  836. <c:if test="${sfjyr!=1 }">
  837. <c:if test="${spflag==3 || opflag > 3 }">
  838. <tr height=100px>
  839. <td colspan=1 >
  840. 审批意见
  841. </td>
  842. <td colspan=6>
  843. <textarea class="form-control" name="spyj3" id="spyj3" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  844. </td>
  845. </tr>
  846. </c:if>
  847. </c:if>
  848. <tbody id="qtfjtb3"></tbody>
  849. </table>
  850. </div>
  851. </div>
  852. <div class="tab-pane fade" id="sgtsjsp">
  853. <div style="background-color:#f4f4f4;">
  854. <table class="main_table" id="tb4" cellpadding="0" cellspacing="0">
  855. <tr>
  856. <th width="10%">序号</th>
  857. <th width="10%">材料名称</th>
  858. <th width="10%">上传附件名称</th>
  859. <th width="10%">批文单位</th>
  860. <th width="10%">文号</th>
  861. <th width="10%">批文时间</th>
  862. <c:if test="${spflag!=4 && opflag == 4}">
  863. <th width="15%">操作</th>
  864. </c:if>
  865. </tr>
  866. <tr height="40px">
  867. <td>
  868. 1
  869. </td>
  870. <td>
  871. 施工图设计文件
  872. </td>
  873. <td>
  874. <input type="hidden" class="form-control" name="delid41" id="delid41" value="${fjList41.fjid }">
  875. <input type="hidden" class="form-control" id="fjzdid41">
  876. <a class='main_title' href="#" onclick="jsjdgl.detail.download('41')"><span id="fjmc41">${fjList41.fjmc }</span></a>
  877. </td>
  878. <td>
  879. <span id="fbdw41">${recordfj41.fbdw }</span>
  880. </td>
  881. <td>
  882. <span id="wjh41">${recordfj41.wjh }</span>
  883. </td>
  884. <td>
  885. <span id="fbsj41">${recordfj41.fbsj }</span>
  886. </td>
  887. <c:if test="${spflag!=4 && opflag == 4 }">
  888. <td>
  889. <a id="tjbt41" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('41')">
  890. 添加</a>
  891. <a id="scbt41" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('41')">
  892. 删除</a>
  893. </td>
  894. </c:if>
  895. </tr>
  896. <tr height="40px">
  897. <td>
  898. 2
  899. </td>
  900. <td>
  901. 施工图设计批复文件
  902. </td>
  903. <td>
  904. <input type="hidden" class="form-control" name="delid42" id="delid42" value="${fjList42.fjid }">
  905. <input type="hidden" class="form-control" id="fjzdid42">
  906. <a class='main_title' href="#" onclick="jsjdgl.detail.download(42')"><span id="fjmc42">${fjList42.fjmc }</span></a>
  907. </td>
  908. <td>
  909. <span id="fbdw42">${recordfj42.fbdw }</span>
  910. </td>
  911. <td>
  912. <span id="wjh42">${recordfj42.wjh }</span>
  913. </td>
  914. <td>
  915. <span id="fbsj42">${recordfj42.fbsj }</span>
  916. </td>
  917. <c:if test="${spflag!=4 && opflag == 4 }">
  918. <td>
  919. <a id="tjbt42" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('42')">
  920. 添加</a>
  921. <a id="scbt42" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('42')">
  922. 删除</a>
  923. </td>
  924. </c:if>
  925. </tr>
  926. <c:forEach items="${fjvolist4}" var="qtfj" varStatus="status">
  927. <tr height="40px">
  928. <td>${status.index+3}</td>
  929. <td>其他附件</td>
  930. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  931. <td>${qtfj.fbdw }</td>
  932. <td>${qtfj.wjh }</td>
  933. <td>${qtfj.fbsj }</td>
  934. </tr>
  935. </c:forEach>
  936. <tbody id="viewqtfj4"></tbody>
  937. <c:if test="${sfjyr!=1 }">
  938. <c:if test="${spflag==4 || opflag > 4 }">
  939. <tr height=100px>
  940. <td colspan=1 >
  941. 审批意见
  942. </td>
  943. <td colspan=5>
  944. <textarea class="form-control" name="spyj4" id="spyj4" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  945. </td>
  946. </tr>
  947. </c:if>
  948. </c:if>
  949. <tbody id="qtfjtb4"></tbody>
  950. </table>
  951. </div>
  952. </div>
  953. <div class="tab-pane fade" id="kgba">
  954. <div style="background-color:#f4f4f4;">
  955. <table class="main_table" id="tb5" cellpadding="0" cellspacing="0">
  956. <tr>
  957. <th width="10%">序号</th>
  958. <th width="10%">材料名称</th>
  959. <th width="10%">上传附件名称</th>
  960. <th width="10%">批文单位</th>
  961. <th width="10%">文号</th>
  962. <th width="10%">批文时间</th>
  963. <c:if test="${spflag!=5 && opflag == 5 }">
  964. <th width="15%">操作</th>
  965. </c:if>
  966. </tr>
  967. <tr height="40px">
  968. <td>
  969. 1
  970. </td>
  971. <td>
  972. 控制性用地的批复(可选)
  973. </td>
  974. <td>
  975. <input type="hidden" class="form-control" name="delid51" id="delid51" value="${fjList51.fjid }">
  976. <input type="hidden" class="form-control" id="fjzdid51">
  977. <a class='main_title' href="#" onclick="jsjdgl.detail.download('51')"><span id="fjmc51">${fjList51.fjmc }</span></a>
  978. </td>
  979. <td>
  980. <span id="fbdw51">${recordfj51.fbdw }</span>
  981. </td>
  982. <td>
  983. <span id="wjh51">${recordfj51.wjh }</span>
  984. </td>
  985. <td>
  986. <span id="fbsj51">${recordfj51.fbsj }</span>
  987. </td>
  988. <c:if test="${spflag!=5 && opflag == 5 }">
  989. <td>
  990. <a id="tjbt51" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('51')">
  991. 添加</a>
  992. <a id="scbt51" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('51')">
  993. 删除</a>
  994. </td>
  995. </c:if>
  996. </tr>
  997. <tr height="40px">
  998. <td>
  999. 2
  1000. </td>
  1001. <td>
  1002. 与施工单位和监理单位签订的合同复印件
  1003. </td>
  1004. <td>
  1005. <input type="hidden" class="form-control" name="delid52" id="delid52" value="${fjList52.fjid }">
  1006. <input type="hidden" class="form-control" id="fjzdid52">
  1007. <a class='main_title' href="#" onclick="jsjdgl.detail.download('52')"><span id="fjmc52">${fjList52.fjmc }</span></a>
  1008. </td>
  1009. <td>
  1010. <span id="fbdw52">${recordfj52.fbdw }</span>
  1011. </td>
  1012. <td>
  1013. <span id="wjh52">${recordfj52.wjh }</span>
  1014. </td>
  1015. <td>
  1016. <span id="fbsj52">${recordfj52.fbsj }</span>
  1017. </td>
  1018. <c:if test="${spflag!=5 && opflag == 5 }">
  1019. <td>
  1020. <a id="tjbt52" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('52')">
  1021. 添加</a>
  1022. <a id="scbt52" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('52')">
  1023. 删除</a>
  1024. </td>
  1025. </c:if>
  1026. </tr>
  1027. <tr height="40px">
  1028. <td>
  1029. 3
  1030. </td>
  1031. <td>
  1032. 质量监督手续材料复印件
  1033. </td>
  1034. <td>
  1035. <input type="hidden" class="form-control" name="delid53" id="delid53" value="${fjList53.fjid }">
  1036. <input type="hidden" class="form-control" id="fjzdid53">
  1037. <a class='main_title' href="#" onclick="jsjdgl.detail.download('53')"><span id="fjmc53">${fjList53.fjmc }</span></a>
  1038. </td>
  1039. <td>
  1040. <span id="fbdw53">${recordfj53.fbdw }</span>
  1041. </td>
  1042. <td>
  1043. <span id="wjh53">${recordfj53.wjh }</span>
  1044. </td>
  1045. <td>
  1046. <span id="fbsj53">${recordfj53.fbsj }</span>
  1047. </td>
  1048. <c:if test="${spflag!=5 && opflag == 5 }">
  1049. <td>
  1050. <a id="tjbt53" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('53')">
  1051. 添加</a>
  1052. <a id="scbt53" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('53')">
  1053. 删除</a>
  1054. </td>
  1055. </c:if>
  1056. </tr>
  1057. <tr height="40px">
  1058. <td>
  1059. 4
  1060. </td>
  1061. <td>
  1062. 建设资金落实证明复印件
  1063. </td>
  1064. <td>
  1065. <input type="hidden" class="form-control" name="delid54" id="delid54" value="${fjList54.fjid }">
  1066. <input type="hidden" class="form-control" id="fjzdid54">
  1067. <a class='main_title' href="#" onclick="jsjdgl.detail.download('54')"><span id="fjmc54">${fjList54.fjmc }</span></a>
  1068. </td>
  1069. <td>
  1070. <span id="fbdw54">${recordfj54.fbdw }</span>
  1071. </td>
  1072. <td>
  1073. <span id="wjh54">${recordfj54.wjh }</span>
  1074. </td>
  1075. <td>
  1076. <span id="fbsj54">${recordfj54.fbsj }</span>
  1077. </td>
  1078. <c:if test="${spflag!=5 && opflag == 5 }">
  1079. <td>
  1080. <a id="tjbt54" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('54')">
  1081. 添加</a>
  1082. <a id="scbt54" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('54')">
  1083. 删除</a>
  1084. </td>
  1085. </c:if>
  1086. </tr>
  1087. <tr height="40px">
  1088. <td>
  1089. 5
  1090. </td>
  1091. <td>
  1092. 评标结果备案文件复印件(可选)
  1093. </td>
  1094. <td>
  1095. <input type="hidden" class="form-control" name="delid55" id="delid55" value="${fjList55.fjid }">
  1096. <input type="hidden" class="form-control" id="fjzdid55">
  1097. <a class='main_title' href="#" onclick="jsjdgl.detail.download('55')"><span id="fjmc55">${fjList55.fjmc }</span></a>
  1098. </td>
  1099. <td>
  1100. <span id="fbdw55">${recordfj55.fbdw }</span>
  1101. </td>
  1102. <td>
  1103. <span id="wjh55">${recordfj55.wjh }</span>
  1104. </td>
  1105. <td>
  1106. <span id="fbsj55">${recordfj55.fbsj }</span>
  1107. </td>
  1108. <c:if test="${spflag!=5 && opflag == 5 }">
  1109. <td>
  1110. <a id="tjbt55" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('55')">
  1111. 添加</a>
  1112. <a id="scbt55" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('55')">
  1113. 删除</a>
  1114. </td>
  1115. </c:if>
  1116. </tr>
  1117. <tr height="40px">
  1118. <td>
  1119. 6
  1120. </td>
  1121. <td>
  1122. 《开工备案表》
  1123. </td>
  1124. <td>
  1125. <input type="hidden" class="form-control" name="delid56" id="delid56" value="${fjList56.fjid }">
  1126. <input type="hidden" class="form-control" id="fjzdid56">
  1127. <a class='main_title' href="#" onclick="jsjdgl.detail.download('56')"><span id="fjmc56">${fjList56.fjmc }</span></a>
  1128. </td>
  1129. <td>
  1130. <span id="fbdw56">${recordfj56.fbdw }</span>
  1131. </td>
  1132. <td>
  1133. <span id="wjh56">${recordfj56.wjh }</span>
  1134. </td>
  1135. <td>
  1136. <span id="fbsj56">${recordfj56.fbsj }</span>
  1137. </td>
  1138. <c:if test="${spflag!=5 && opflag == 5 }">
  1139. <td>
  1140. <a id="tjbt56" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('56')">
  1141. 添加</a>
  1142. <a id="scbt56" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('56')">
  1143. 删除</a>
  1144. </td>
  1145. </c:if>
  1146. </tr>
  1147. <c:forEach items="${fjvolist5}" var="qtfj" varStatus="status">
  1148. <tr height="40px">
  1149. <td>${status.index+7}</td>
  1150. <td>其他附件</td>
  1151. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  1152. <td>${qtfj.fbdw }</td>
  1153. <td>${qtfj.wjh }</td>
  1154. <td>${qtfj.fbsj }</td>
  1155. </tr>
  1156. </c:forEach>
  1157. <tbody id="viewqtfj5"></tbody>
  1158. <c:if test="${sfjyr!=1 }">
  1159. <c:if test="${spflag==5 || opflag > 5 }">
  1160. <tr height=100px>
  1161. <td colspan=1 >
  1162. 审批意见
  1163. </td>
  1164. <td colspan=5>
  1165. <textarea class="form-control" name="spyj5" id="spyj5" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  1166. </td>
  1167. </tr>
  1168. </c:if>
  1169. </c:if>
  1170. <tbody id="qtfjtb5"></tbody>
  1171. </table>
  1172. </div>
  1173. </div>
  1174. <div class="tab-pane fade" id="ssgc">
  1175. <div style="background-color:#f4f4f4;">
  1176. <table class="main_table" id="tb6" cellpadding="0" cellspacing="0">
  1177. <tr>
  1178. <th>年度</th>
  1179. <th>年度计划投资额</th>
  1180. <th>当月实际完成投资额(万元)</th>
  1181. <th>当前形象进度</th>
  1182. <th>形象进度完成情况分析</th>
  1183. <th>操作</th>
  1184. </tr>
  1185. <tbody id="ssgctb"></tbody>
  1186. </table>
  1187. </div>
  1188. </div>
  1189. <div class="tab-pane fade" id="jgys1">
  1190. <div style="background-color:#f4f4f4;">
  1191. <table class="main_table" cellpadding="0" cellspacing="0">
  1192. <tr>
  1193. <th width="10%">序号</th>
  1194. <th width="10%">材料名称</th>
  1195. <th width="10%">上传附件名称</th>
  1196. <th width="10%">批文单位</th>
  1197. <th width="10%">文号</th>
  1198. <th width="10%">批文时间</th>
  1199. <c:if test="${spflag!=6 && opflag == 6 }">
  1200. <th width="15%">操作</th>
  1201. </c:if>
  1202. </tr>
  1203. <tr height="40px">
  1204. <td>
  1205. 1
  1206. </td>
  1207. <td>
  1208. 质监机构关于工程质量鉴定意见书
  1209. </td>
  1210. <td>
  1211. <input type="hidden" class="form-control" name="delid61" id="delid61" value="${fjList61.fjid }">
  1212. <input type="hidden" class="form-control" id="fjzdid61">
  1213. <a class='main_title' href="#" onclick="jsjdgl.detail.download('61')"><span id="fjmc61">${fjList61.fjmc }</span></a>
  1214. </td>
  1215. <td>
  1216. <span id="fbdw61">${recordfj61.fbdw }</span>
  1217. </td>
  1218. <td>
  1219. <span id="wjh61">${recordfj61.wjh }</span>
  1220. </td>
  1221. <td>
  1222. <span id="fbsj61">${recordfj61.fbsj }</span>
  1223. </td>
  1224. <c:if test="${spflag!=6 && opflag == 6 }">
  1225. <td>
  1226. <a id="tjbt61" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('61')">
  1227. 添加</a>
  1228. <a id="scbt61" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('61')">
  1229. 删除</a>
  1230. </td>
  1231. </c:if>
  1232. </tr>
  1233. <tr height="40px">
  1234. <td>
  1235. 2
  1236. </td>
  1237. <td>
  1238. 交工验收证书
  1239. </td>
  1240. <td>
  1241. <input type="hidden" class="form-control" name="delid62" id="delid62" value="${fjList62.fjid }">
  1242. <input type="hidden" class="form-control" id="fjzdid62">
  1243. <a class='main_title' href="#" onclick="jsjdgl.detail.download('62')"><span id="fjmc62">${fjList62.fjmc }</span></a>
  1244. </td>
  1245. <td>
  1246. <span id="fbdw62">${recordfj62.fbdw }</span>
  1247. </td>
  1248. <td>
  1249. <span id="wjh62">${recordfj62.wjh }</span>
  1250. </td>
  1251. <td>
  1252. <span id="fbsj62">${recordfj62.fbsj }</span>
  1253. </td>
  1254. <c:if test="${spflag!=6 && opflag == 6 }">
  1255. <td>
  1256. <a id="tjbt62" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('62')">
  1257. 添加</a>
  1258. <a id="scbt62" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('62')">
  1259. 删除</a>
  1260. </td>
  1261. </c:if>
  1262. </tr>
  1263. <c:forEach items="${fjvolist6}" var="qtfj" varStatus="status">
  1264. <tr height="40px">
  1265. <td>${status.index+3}</td>
  1266. <td>其他附件</td>
  1267. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  1268. <td>${qtfj.fbdw }</td>
  1269. <td>${qtfj.wjh }</td>
  1270. <td>${qtfj.fbsj }</td>
  1271. </tr>
  1272. </c:forEach>
  1273. <tbody id="viewqtfj6"></tbody>
  1274. <c:if test="${sfjyr!=1 }">
  1275. <c:if test="${spflag==6 || opflag > 6 }">
  1276. <tr height=100px>
  1277. <td colspan=1 >
  1278. 审批意见
  1279. </td>
  1280. <td colspan=5>
  1281. <textarea class="form-control" name="spyj6" id="spyj6" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  1282. </td>
  1283. </tr>
  1284. </c:if>
  1285. </c:if>
  1286. <tbody id="qtfjtb6"></tbody>
  1287. </table>
  1288. </div>
  1289. </div>
  1290. <div class="tab-pane fade" id="syxba">
  1291. <div style="background-color:#f4f4f4;">
  1292. <table class="main_table" id="tb7" cellpadding="0" cellspacing="0">
  1293. <tr>
  1294. <th width="10%">序号</th>
  1295. <th width="10%">材料名称</th>
  1296. <th width="10%">上传附件名称</th>
  1297. <th width="10%">批文单位</th>
  1298. <th width="10%">文号</th>
  1299. <th width="10%">批文时间</th>
  1300. <c:if test="${spflag!=7 && opflag == 7 }">
  1301. <th width="15%">操作</th>
  1302. </c:if>
  1303. </tr>
  1304. <tr height="40px">
  1305. <td>
  1306. 1
  1307. </td>
  1308. <td>
  1309. 环境保护、劳动安全卫生、消防主管部门关于试运行的准许意见
  1310. </td>
  1311. <td>
  1312. <input type="hidden" class="form-control" name="delid71" id="delid71" value="${fjList71.fjid }">
  1313. <input type="hidden" class="form-control" id="fjzdid71">
  1314. <a class='main_title' href="#" onclick="jsjdgl.detail.download('71')"><span id="fjmc71">${fjList71.fjmc }</span></a>
  1315. </td>
  1316. <td>
  1317. <span id="fbdw71">${recordfj71.fbdw }</span>
  1318. </td>
  1319. <td>
  1320. <span id="wjh71">${recordfj71.wjh }</span>
  1321. </td>
  1322. <td>
  1323. <span id="fbsj71">${recordfj71.fbsj }</span>
  1324. </td>
  1325. <c:if test="${spflag!=7 && opflag == 7 }">
  1326. <td>
  1327. <a id="tjbt71" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('71')">
  1328. 添加</a>
  1329. <a id="scbt71" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('71')">
  1330. 删除</a>
  1331. </td>
  1332. </c:if>
  1333. </tr>
  1334. <tr height="40px">
  1335. <td>
  1336. 2
  1337. </td>
  1338. <td>
  1339. 试运行备案表
  1340. </td>
  1341. <td>
  1342. <input type="hidden" class="form-control" name="delid72" id="delid72" value="${fjList72.fjid }">
  1343. <input type="hidden" class="form-control" id="fjzdid72">
  1344. <a class='main_title' href="#" onclick="jsjdgl.detail.download('72')"><span id="fjmc72">${fjList72.fjmc }</span></a>
  1345. </td>
  1346. <td>
  1347. <span id="fbdw72">${recordfj72.fbdw }</span>
  1348. </td>
  1349. <td>
  1350. <span id="wjh72">${recordfj72.wjh }</span>
  1351. </td>
  1352. <td>
  1353. <span id="fbsj72">${recordfj72.fbsj }</span>
  1354. </td>
  1355. <c:if test="${spflag!=7 && opflag == 7 }">
  1356. <td>
  1357. <a id="tjbt72" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('72')">
  1358. 添加</a>
  1359. <a id="scbt72" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('72')">
  1360. 删除</a>
  1361. </td>
  1362. </c:if>
  1363. </tr>
  1364. <c:forEach items="${fjvolist7}" var="qtfj" varStatus="status">
  1365. <tr height="40px">
  1366. <td>${status.index+3}</td>
  1367. <td>其他附件</td>
  1368. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  1369. <td>${qtfj.fbdw }</td>
  1370. <td>${qtfj.wjh }</td>
  1371. <td>${qtfj.fbsj }</td>
  1372. </tr>
  1373. </c:forEach>
  1374. <tbody id="viewqtfj7"></tbody>
  1375. <c:if test="${sfjyr!=1 }">
  1376. <c:if test="${spflag==7 || opflag > 7 }">
  1377. <tr height=100px>
  1378. <td colspan=1 >
  1379. 审批意见
  1380. </td>
  1381. <td colspan=5>
  1382. <textarea class="form-control" name="spyj7" id="spyj7" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  1383. </td>
  1384. </tr>
  1385. </c:if>
  1386. </c:if>
  1387. <tbody id="qtfjtb7"></tbody>
  1388. </table>
  1389. </div>
  1390. </div>
  1391. <div class="tab-pane fade" id="jgys2">
  1392. <div style="background-color:#f4f4f4;">
  1393. <table class="main_table" id="tb8" cellpadding="0" cellspacing="0">
  1394. <tr>
  1395. <th width="10%">序号</th>
  1396. <th width="10%">材料名称</th>
  1397. <th width="10%">上传附件名称</th>
  1398. <th width="10%">批文单位</th>
  1399. <th width="10%">文号</th>
  1400. <th width="10%">批文时间</th>
  1401. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1402. <c:if test="${spflag==8 || opflag == 8 }">
  1403. <th width="15%">操作</th>
  1404. </c:if>
  1405. </c:if>
  1406. </tr>
  1407. <tr height="40px">
  1408. <td>
  1409. 1
  1410. </td>
  1411. <td>
  1412. 港口建设项目竣工验收申请文件
  1413. </td>
  1414. <td>
  1415. <input type="hidden" class="form-control" name="delid81" id="delid81" value="${fjList81.fjid }">
  1416. <input type="hidden" class="form-control" id="fjzdid81">
  1417. <a class='main_title' href="#" onclick="jsjdgl.detail.download('81')"><span id="fjmc81">${fjList81.fjmc }</span></a>
  1418. </td>
  1419. <td>
  1420. <span id="fbdw81">${recordfj81.fbdw }</span>
  1421. </td>
  1422. <td>
  1423. <span id=wjh81>${recordfj81.wjh }</span>
  1424. </td>
  1425. <td>
  1426. <span id="fbsj81">${recordfj81.fbsj }</span>
  1427. </td>
  1428. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1429. <c:if test="${spflag!=8 && opflag == 8 }">
  1430. <td>
  1431. <a id="tjbt81" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('81')">
  1432. 添加</a>
  1433. <a id="scbt81" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('81')">
  1434. 删除</a>
  1435. </td>
  1436. </c:if>
  1437. <c:if test="${spflag==8 && opflag == 8 }">
  1438. <Td></Td>
  1439. </c:if>
  1440. </c:if>
  1441. </tr>
  1442. <tr height="40px">
  1443. <td>
  1444. 2
  1445. </td>
  1446. <td>
  1447. 港口建设项目竣工验收材料
  1448. </td>
  1449. <td>
  1450. <input type="hidden" class="form-control" name="delid82" id="delid82" value="${fjList82.fjid }">
  1451. <input type="hidden" class="form-control" id="fjzdid82">
  1452. <a class='main_title' href="#" onclick="jsjdgl.detail.download('82')"><span id="fjmc82">${fjList82.fjmc }</span></a>
  1453. </td>
  1454. <td>
  1455. <span id="fbdw82">${recordfj82.fbdw }</span>
  1456. </td>
  1457. <td>
  1458. <span id="wjh82">${recordfj82.wjh }</span>
  1459. </td>
  1460. <td>
  1461. <span id="fbsj82">${recordfj82.fbsj }</span>
  1462. </td>
  1463. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1464. <c:if test="${spflag!=8 && opflag == 8 }">
  1465. <td>
  1466. <a id="tjbt82" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('82')">
  1467. 添加</a>
  1468. <a id="scbt82" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('82')">
  1469. 删除</a>
  1470. </td>
  1471. </c:if>
  1472. <c:if test="${spflag==8 && opflag == 8 }">
  1473. <Td></Td>
  1474. </c:if>
  1475. </c:if>
  1476. </tr>
  1477. <tr>
  1478. <td>3</td>
  1479. <td>竣工验收鉴定书</td>
  1480. <td><input type="hidden" class="form-control"
  1481. name="delid83" id="delid83" value="${fjList83.fjid }">
  1482. <input type="hidden" class="form-control" id="fjzdid83">
  1483. <a class='main_title' href="#"
  1484. onclick="jsjdgl.detail.download('83')"><span id="fjmc83">${fjList83.fjmc }</span></a>
  1485. </td>
  1486. <td><span id="fbdw83">${recordfj83.fbdw }</span></td>
  1487. <td><span id="wjh83">${recordfj83.wjh }</span></td>
  1488. <td><span id="fbsj83">${recordfj83.fbsj }</span></td>
  1489. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1490. <c:if test="${spflag==8 && opflag == 8 }">
  1491. <td>
  1492. <a id="tjbt83" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('83')">
  1493. 添加</a>
  1494. <a id="scbt83" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('83')">
  1495. 删除</a>
  1496. </td>
  1497. </c:if>
  1498. <c:if test="${spflag!=8 && opflag == 8 }">
  1499. <Td></Td>
  1500. </c:if>
  1501. </c:if>
  1502. </tr>
  1503. <Tr>
  1504. <td>4</td>
  1505. <td>专家审查意见</td>
  1506. <td><input type="hidden" class="form-control"
  1507. name="delid84" id="delid84" value="${fjList84.fjid }">
  1508. <input type="hidden" class="form-control" id="fjzdid84">
  1509. <a class='main_title' href="#"
  1510. onclick="jsjdgl.detail.download('84')"><span id="fjmc84">${fjList84.fjmc }</span></a>
  1511. </td>
  1512. <td><span id="fbdw84">${recordfj84.fbdw }</span></td>
  1513. <td><span id="wjh84">${recordfj84.wjh }</span></td>
  1514. <td><span id="fbsj84">${recordfj84.fbsj }</span></td>
  1515. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1516. <c:if test="${spflag==8 && opflag == 8 }">
  1517. <td>
  1518. <a id="tjbt84" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('84')">
  1519. 添加</a>
  1520. <a id="scbt84" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('84')">
  1521. 删除</a>
  1522. </td>
  1523. </c:if>
  1524. <c:if test="${spflag!=8 && opflag == 8 }">
  1525. <Td></Td>
  1526. </c:if>
  1527. </c:if>
  1528. </tr>
  1529. <tr>
  1530. <td>5</td>
  1531. <td>对验收意见的答复</td>
  1532. <td><input type="hidden" class="form-control"
  1533. name="delid85" id="delid85" value="${fjList85.fjid }">
  1534. <input type="hidden" class="form-control" id="fjzdid85">
  1535. <a class='main_title' href="#"
  1536. onclick="jsjdgl.detail.download('85')"><span id="fjmc85">${fjList85.fjmc }</span></a>
  1537. </td>
  1538. <td><span id="fbdw85">${recordfj85.fbdw }</span></td>
  1539. <td><span id="wjh85">${recordfj85.wjh }</span></td>
  1540. <td><span id="fbsj85">${recordfj85.fbsj }</span></td>
  1541. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1542. <c:if test="${spflag==8 && opflag == 8 }">
  1543. <td>
  1544. <a id="tjbt85" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('85')">
  1545. 添加</a>
  1546. <a id="scbt85" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('85')">
  1547. 删除</a>
  1548. </td>
  1549. </c:if>
  1550. <c:if test="${spflag!=8 && opflag == 8 }">
  1551. <Td></Td>
  1552. </c:if>
  1553. </c:if>
  1554. </tr>
  1555. <c:forEach items="${fjvolist8}" var="qtfj" varStatus="status">
  1556. <tr height="40px">
  1557. <td>${status.index+3}</td>
  1558. <td>其他附件</td>
  1559. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  1560. <td>${qtfj.fbdw }</td>
  1561. <td>${qtfj.wjh }</td>
  1562. <td>${qtfj.fbsj }</td>
  1563. </tr>
  1564. </c:forEach>
  1565. <tbody id="viewqtfj8"></tbody>
  1566. <c:if test="${sfjyr!=1 }">
  1567. <c:if test="${spflag==8 || opflag > 8 }">
  1568. <tr height=100px>
  1569. <td colspan=1 >
  1570. 审批意见
  1571. </td>
  1572. <td colspan=6>
  1573. <textarea class="form-control" name="spyj8" id="spyj8" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  1574. </td>
  1575. </tr>
  1576. </c:if>
  1577. </c:if>
  1578. <tbody id="qtfjtb8"></tbody>
  1579. </table>
  1580. </div>
  1581. </div>
  1582. <div class="tab-pane fade" id="lcls">
  1583. <div style="background-color:#f4f4f4;">
  1584. <table class="main_table" cellpadding="0" cellspacing="0">
  1585. <tr>
  1586. <th width="10%">序号</th>
  1587. <th width="10%">流程节点名</th>
  1588. <th width="10%">处理结果</th>
  1589. <th width="10%">审批人</th>
  1590. <th width="10%">审批时间</th>
  1591. <th width="10%">审批意见</th>
  1592. </tr>
  1593. <tbody id="lclstb"></tbody>
  1594. </table>
  1595. </div>
  1596. </div>
  1597. </div>
  1598. <div class="theme-popover" id="qtfjpopover" style="width: 900px;height: 400px;">
  1599. <div class="theme-poptit">
  1600. <input type="hidden" class="form-control" id="qtfjid" name="qtfjid">
  1601. <input type="hidden" class="form-control" id="qtfjzdids" name="qtfjzdids">
  1602. <input type="hidden" class="form-control" id="qtfjids" name="qtfjids">
  1603. <div class="close-tc">
  1604. <a href="#" title="关闭" onclick="jsjdgl.detail.qtfjguanbipop()" >×</a>
  1605. </div>
  1606. </div>
  1607. <div class="popContent-tc" >
  1608. <table class="apply" cellpadding="0" cellspacing="0">
  1609. <tr>
  1610. <th>文号 : &nbsp;</th>
  1611. <td>
  1612. <input type="text" class="form-control" name="qtwjh" id="wjh">
  1613. </td>
  1614. </tr>
  1615. <tr>
  1616. <th>批文时间: &nbsp;</th>
  1617. <td>
  1618. <input class="Wdate" name="qtfbsj" id="fbsj" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM-dd'})">
  1619. </td>
  1620. </tr>
  1621. <tr>
  1622. <th>批文单位: &nbsp;</th>
  1623. <td>
  1624. <input type="text" class="form-control" name="qtfbdw" id="fbdw">
  1625. </td>
  1626. </tr>
  1627. <tr>
  1628. <th>上传附件名称: &nbsp;</th>
  1629. <td>
  1630. <div>
  1631. <a href="#" id="scqtfjbt" class="file"><input type="file" name="qtfilename" id="qtfileid" onchange="jsjdgl.detail.saveQtfj()">选择本地文件</a>
  1632. </div>
  1633. <div id="qtfjxq">
  1634. </div>
  1635. <span>(上传文件最大50M,只可上传pdf、doc、docx、xls、xlsx格式文件)</span>
  1636. </td>
  1637. </tr>
  1638. </table>
  1639. <div id="buttons">
  1640. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.xinzengqtfj()">
  1641. <i></i>
  1642. 保存</a>
  1643. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.qtfjguanbipop()">
  1644. <i></i>
  1645. 关闭</a>
  1646. </div>
  1647. </div>
  1648. </div>
  1649. <div class="theme-popover-mask" id="qtfjmask"></div>
  1650. <div class="theme-popover" id="theme-popover" style="width: 900px;height: 400px;">
  1651. <div class="theme-poptit">
  1652. <input type="hidden" class="form-control" id="flag">
  1653. <div class="close-tc">
  1654. <a href="#" title="关闭" onclick="jsjdgl.detail.guanbipop()" >×</a>
  1655. </div>
  1656. </div>
  1657. <div class="popContent-tc" >
  1658. <table class="apply" cellpadding="0" cellspacing="0">
  1659. <tr>
  1660. <th>文号 : &nbsp;</th>
  1661. <td>
  1662. <input type="text" class="form-control" name="wjh" id="wjh1">
  1663. </td>
  1664. </tr>
  1665. <tr>
  1666. <th>批文时间: &nbsp;</th>
  1667. <td>
  1668. <input class="Wdate" name="fbsj" id="fbsj1" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM-dd'})">
  1669. </td>
  1670. </tr>
  1671. <tr>
  1672. <th>批文单位: &nbsp;</th>
  1673. <td>
  1674. <input type="text" class="form-control" name="fbdw" id="fbdw1">
  1675. </td>
  1676. </tr>
  1677. <tr>
  1678. <th>上传附件名称: &nbsp;</th>
  1679. <td>
  1680. <div>
  1681. <a href="#" id="scfjbt" class="file"><input type="file" name="filename" id="fileid" onchange="jsjdgl.detail.saveFile()">选择本地文件</a>
  1682. </div>
  1683. <div id="fjxq">
  1684. </div>
  1685. <span>(上传文件最大50M,只可上传pdf、doc、docx、xls、xlsx格式文件)</span>
  1686. </td>
  1687. </tr>
  1688. </table>
  1689. <div id="buttons">
  1690. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.xinzengfj()">
  1691. 保存</a>
  1692. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.guanbipop()">
  1693. 关闭</a>
  1694. </div>
  1695. </div>
  1696. </div>
  1697. <div class="theme-popover-mask" id="theme-popover-mask"></div>
  1698. </form>
  1699. <div id="buttons">
  1700. <c:if test="${sfjyr==1 }">
  1701. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.qtfj()">
  1702. 其他附件</a>
  1703. </c:if>
  1704. <c:if test="${sfjyr=='' }">
  1705. <c:if test="${flag=='audit' }">
  1706. <c:if test="${ spflag !='3' && spflag !='8' }">
  1707. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1708. <i class="glyphicon glyphicon-ok-sign"></i>
  1709. 同意</a>
  1710. <c:if test="${sfjyr!=1 }">
  1711. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1712. <i class="glyphicon glyphicon-ban-circle"></i>
  1713. 退回</a>
  1714. </c:if>
  1715. </c:if>
  1716. <c:if test="${ spflag =='3' }">
  1717. <c:if test="${record.flowstatus == '1' }">
  1718. <c:if test="${sfjyr!=1 }">
  1719. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1720. <i class="glyphicon glyphicon-ban-circle"></i>
  1721. 退回</a>
  1722. </c:if>
  1723. </c:if>
  1724. <c:if test="${record.flowstatus == '2' || record.flowstatus == '' || record.flowstatus == null }">
  1725. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1726. <i class="glyphicon glyphicon-ok-sign"></i>
  1727. 同意</a>
  1728. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  1729. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.saveTbzt('${record.id}')">
  1730. <i class="glyphicon glyphicon-ok-sign"></i>
  1731. 转报省级</a>
  1732. </c:if>
  1733. <c:if test="${sfjyr!=1 }">
  1734. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1735. <i class="glyphicon glyphicon-ban-circle"></i>
  1736. 退回</a>
  1737. </c:if>
  1738. </c:if>
  1739. </c:if>
  1740. <c:if test="${ spflag =='8' }">
  1741. <c:if test="${record.flowstatus == '3' }">
  1742. <c:if test="${sfjyr!=1 }">
  1743. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1744. <i class="glyphicon glyphicon-ban-circle"></i>
  1745. 退回</a>
  1746. </c:if>
  1747. </c:if>
  1748. <c:if test="${ record.flowstatus == '2' || record.flowstatus == '4' || record.flowstatus == '' || record.flowstatus == null }">
  1749. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1750. <i class="glyphicon glyphicon-ok-sign"></i>
  1751. 同意</a>
  1752. <c:if test="${ record.flowstatus == '2' || record.flowstatus == '' || record.flowstatus == null }">
  1753. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.saveTbzt('${record.id}')">
  1754. <i class="glyphicon glyphicon-ok-sign"></i>
  1755. 转报省级</a>
  1756. </c:if>
  1757. <c:if test="${sfjyr!=1 }">
  1758. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1759. <i class="glyphicon glyphicon-ban-circle"></i>
  1760. 退回</a>
  1761. </c:if>
  1762. </c:if>
  1763. </c:if>
  1764. </c:if>
  1765. </c:if>
  1766. <c:if test="${sfjyr==1 }">
  1767. <c:if test="${flag=='audit' }">
  1768. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1769. <i class="glyphicon glyphicon-share"></i>
  1770. 提交</a>
  1771. </c:if>
  1772. </c:if>
  1773. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.back()">
  1774. <i class="glyphicon glyphicon-arrow-left"></i>
  1775. 返回</a>
  1776. </div>
  1777. </div>
  1778. </div>
  1779. </div>
  1780. </body>
  1781. </html>