jsjdgledit.jsp 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866
  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="${spflag!=3 && opflag == 3 }">
  581. <th width="15%">操作</th>
  582. </c:if>
  583. </tr>
  584. <tr height="40px">
  585. <td>
  586. 1
  587. </td>
  588. <td>
  589. 初步设计文件
  590. </td>
  591. <td>
  592. <input type="hidden" class="form-control" name="delid31" id="delid31" value="${fjList31.fjid }">
  593. <input type="hidden" class="form-control" id="fjzdid31">
  594. <a class='main_title' href="#" onclick="jsjdgl.detail.download('31')"><span id="fjmc31">${fjList31.fjmc }</span></a>
  595. </td>
  596. <td>
  597. <span id="fbdw31">${recordfj31.fbdw }</span>
  598. </td>
  599. <td>
  600. <span id="wjh31">${recordfj31.wjh }</span>
  601. </td>
  602. <td>
  603. <span id="fbsj31">${recordfj31.fbsj }</span>
  604. </td>
  605. <c:if test="${spflag!=3 && opflag == 3 }">
  606. <td>
  607. <a id="tjbt31" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('31')">
  608. 添加</a>
  609. <a id="scbt31" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('31')">
  610. 删除</a>
  611. </td>
  612. </c:if>
  613. </tr>
  614. <tr height="40px">
  615. <td>
  616. 2
  617. </td>
  618. <td>
  619. 初步设计批复文件
  620. </td>
  621. <td>
  622. <input type="hidden" class="form-control" name="delid32" id="delid32" value="${fjList32.fjid }">
  623. <input type="hidden" class="form-control" id="fjzdid32">
  624. <a class='main_title' href="#" onclick="jsjdgl.detail.download('32')"><span id="fjmc32">${fjList32.fjmc }</span></a>
  625. </td>
  626. <td>
  627. <span id="fbdw32">${recordfj32.fbdw }</span>
  628. </td>
  629. <td>
  630. <span id="wjh32">${recordfj32.wjh }</span>
  631. </td>
  632. <td>
  633. <span id="fbsj32">${recordfj32.fbsj }</span>
  634. </td>
  635. <c:if test="${spflag!=3 && opflag == 3 }">
  636. <td>
  637. <a id="tjbt32" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('32')">
  638. 添加</a>
  639. <a id="scbt32" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('32')">
  640. 删除</a>
  641. </td>
  642. </c:if>
  643. </tr>
  644. <%-- <tr height="40px">
  645. <td>
  646. 3
  647. </td>
  648. <td>
  649. 港口建设项目批准或者核准、备案文件
  650. </td>
  651. <td>
  652. <input type="hidden" class="form-control" name="delid33" id="delid33" value="${fjList33.fjid }">
  653. <input type="hidden" class="form-control" id="fjzdid33">
  654. <a class='main_title' href="#" onclick="jsjdgl.detail.download('33')"><span id="fjmc33">${fjList33.fjmc }</span></a>
  655. </td>
  656. <td>
  657. <span id="fbdw33">${recordfj33.fbdw }</span>
  658. </td>
  659. <td>
  660. <span id="wjh33">${recordfj33.wjh }</span>
  661. </td>
  662. <td>
  663. <span id="fbsj33">${recordfj33.fbsj }</span>
  664. </td>
  665. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  666. <c:if test="${spflag!=3 && opflag == 3 }">
  667. <td>
  668. <a id="tjbt33" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('33')">
  669. 添加</a>
  670. <a id="scbt33" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('33')">
  671. 删除</a>
  672. </td>
  673. </c:if>
  674. <c:if test="${spflag==3 && opflag == 3 }">
  675. <td></td>
  676. </c:if>
  677. </c:if>
  678. <tr>
  679. <td>4</td>
  680. <td>审查会议纪要</td>
  681. <td><input type="hidden" class="form-control"
  682. name="delid34" id="delid34" value="${fjList34.fjid }">
  683. <input type="hidden" class="form-control" id="fjzdid34">
  684. <a class='main_title' href="#"
  685. onclick="jsjdgl.detail.download('34')"><span id="fjmc34">${fjList34.fjmc }</span></a>
  686. </td>
  687. <td><span id="fbdw34">${recordfj34.fbdw }</span></td>
  688. <td><span id="wjh34">${recordfj34.wjh }</span></td>
  689. <td><span id="fbsj34">${recordfj34.fbsj }</span></td>
  690. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  691. <c:if test="${spflag ==3 && opflag == 3 }">
  692. <td>
  693. <a id="tjbt34" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('34')">
  694. 添加</a>
  695. <a id="scbt34" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('34')">
  696. 删除</a>
  697. </td>
  698. </c:if>
  699. <c:if test="${spflag!=3 && opflag == 3 }">
  700. <td></td>
  701. </c:if>
  702. </c:if>
  703. </tr>
  704. <tr>
  705. <td>5</td>
  706. <td>专家审查意见</td>
  707. <td><input type="hidden" class="form-control"
  708. name="delid35" id="delid35" value="${fjList35.fjid }">
  709. <input type="hidden" class="form-control" id="fjzdid35">
  710. <a class='main_title' href="#"
  711. onclick="jsjdgl.detail.download('35')"><span id="fjmc35">${fjList35.fjmc }</span></a>
  712. </td>
  713. <td><span id="fbdw35">${recordfj35.fbdw }</span></td>
  714. <td><span id="wjh35">${recordfj35.wjh }</span></td>
  715. <td><span id="fbsj35">${recordfj35.fbsj }</span></td>
  716. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  717. <c:if test="${spflag==3 && opflag == 3 }">
  718. <td>
  719. <a id="tjbt35" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('35')">
  720. 添加</a>
  721. <a id="scbt35" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('35')">
  722. 删除</a>
  723. </td>
  724. </c:if>
  725. <c:if test="${spflag!=3 && opflag == 3 }">
  726. <td></td>
  727. </c:if>
  728. </c:if>
  729. </tr>
  730. <tr>
  731. <td>6</td>
  732. <td>对审查意见的答复</td>
  733. <td><input type="hidden" class="form-control"
  734. name="delid36" id="delid36" value="${fjList36.fjid }">
  735. <input type="hidden" class="form-control" id="fjzdid36">
  736. <a class='main_title' href="#"
  737. onclick="jsjdgl.detail.download('36')"><span id="fjmc36">${fjList36.fjmc }</span></a>
  738. </td>
  739. <td><span id="fbdw36">${recordfj36.fbdw }</span></td>
  740. <td><span id="wjh36">${recordfj36.wjh }</span></td>
  741. <td><span id="fbsj36">${recordfj36.fbsj }</span></td>
  742. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  743. <c:if test="${spflag==3 && opflag == 3 }">
  744. <td>
  745. <a id="tjbt36" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('36')">
  746. 添加</a>
  747. <a id="scbt36" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('36')">
  748. 删除</a>
  749. </td>
  750. </c:if>
  751. <c:if test="${spflag!=3 && opflag == 3 }">
  752. <td></td>
  753. </c:if>
  754. </c:if>
  755. </tr>
  756. <tr>
  757. <td>7</td>
  758. <td>第三方审查咨询报告 ( 可选 )</td>
  759. <td><input type="hidden" class="form-control"
  760. name="delid37" id="delid37" value="${fjList37.fjid }">
  761. <input type="hidden" class="form-control" id="fjzdid37">
  762. <a class='main_title' href="#"
  763. onclick="jsjdgl.detail.download('37')"><span id="fjmc37">${fjList37.fjmc }</span></a>
  764. </td>
  765. <td><span id="fbdw37">${recordfj37.fbdw }</span></td>
  766. <td><span id="wjh37">${recordfj37.wjh }</span></td>
  767. <td><span id="fbsj37">${recordfj37.fbsj }</span></td>
  768. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  769. <c:if test="${spflag==3 && opflag == 3 }">
  770. <td>
  771. <a id="tjbt37" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('37')">
  772. 添加</a>
  773. <a id="scbt37" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('37')">
  774. 删除</a>
  775. </td>
  776. </c:if>
  777. <c:if test="${spflag!=3 && opflag == 3 }">
  778. <td></td>
  779. </c:if>
  780. </c:if>
  781. </tr>
  782. <tr>
  783. <td>8</td>
  784. <td>初步设计文件报批稿</td>
  785. <td><input type="hidden" class="form-control"
  786. name="delid38" id="delid38" value="${fjList38.fjid }">
  787. <input type="hidden" class="form-control" id="fjzdid38">
  788. <a class='main_title' href="#"
  789. onclick="jsjdgl.detail.download('38')"><span id="fjmc38">${fjList38.fjmc }</span></a>
  790. </td>
  791. <td><span id="fbdw38">${recordfj38.fbdw }</span></td>
  792. <td><span id="wjh38">${recordfj38.wjh }</span></td>
  793. <td><span id="fbsj38">${recordfj38.fbsj }</span></td>
  794. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  795. <c:if test="${spflag==3 && opflag == 3 }">
  796. <td>
  797. <a id="tjbt38" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('38')">
  798. 添加</a>
  799. <a id="scbt38" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('38')">
  800. 删除</a>
  801. </td>
  802. </c:if>
  803. <c:if test="${spflag!=3 && opflag == 3 }">
  804. <td></td>
  805. </c:if>
  806. </c:if>
  807. </tr> --%>
  808. <c:forEach items="${fjvolist3}" var="qtfj" varStatus="status">
  809. <tr height="40px">
  810. <c:if test="${ record.flowstatus > 0 }">
  811. <td>${status.index+9}</td>
  812. </c:if>
  813. <c:if test="${ record.flowstatus == null || record.flowstatus == ''}">
  814. <td>${status.index+4}</td>
  815. </c:if>
  816. <td>其他附件</td>
  817. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  818. <td>${qtfj.fbdw }</td>
  819. <td>${qtfj.wjh }</td>
  820. <td>${qtfj.fbsj }</td>
  821. </tr>
  822. </c:forEach>
  823. <tbody id="viewqtfj3"></tbody>
  824. <c:if test="${sfjyr!=1 }">
  825. <c:if test="${spflag==3 || opflag > 3 }">
  826. <tr height=100px>
  827. <td colspan=1 >
  828. 审批意见
  829. </td>
  830. <td colspan=6>
  831. <textarea class="form-control" name="spyj3" id="spyj3" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  832. </td>
  833. </tr>
  834. </c:if>
  835. </c:if>
  836. <tbody id="qtfjtb3"></tbody>
  837. </table>
  838. </div>
  839. </div>
  840. <div class="tab-pane fade" id="sgtsjsp">
  841. <div style="background-color:#f4f4f4;">
  842. <table class="main_table" id="tb4" cellpadding="0" cellspacing="0">
  843. <tr>
  844. <th width="10%">序号</th>
  845. <th width="10%">材料名称</th>
  846. <th width="10%">上传附件名称</th>
  847. <th width="10%">批文单位</th>
  848. <th width="10%">文号</th>
  849. <th width="10%">批文时间</th>
  850. <c:if test="${spflag!=4 && opflag == 4}">
  851. <th width="15%">操作</th>
  852. </c:if>
  853. </tr>
  854. <tr height="40px">
  855. <td>
  856. 1
  857. </td>
  858. <td>
  859. 施工图设计文件
  860. </td>
  861. <td>
  862. <input type="hidden" class="form-control" name="delid41" id="delid41" value="${fjList41.fjid }">
  863. <input type="hidden" class="form-control" id="fjzdid41">
  864. <a class='main_title' href="#" onclick="jsjdgl.detail.download('41')"><span id="fjmc41">${fjList41.fjmc }</span></a>
  865. </td>
  866. <td>
  867. <span id="fbdw41">${recordfj41.fbdw }</span>
  868. </td>
  869. <td>
  870. <span id="wjh41">${recordfj41.wjh }</span>
  871. </td>
  872. <td>
  873. <span id="fbsj41">${recordfj41.fbsj }</span>
  874. </td>
  875. <c:if test="${spflag!=4 && opflag == 4 }">
  876. <td>
  877. <a id="tjbt41" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('41')">
  878. 添加</a>
  879. <a id="scbt41" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('41')">
  880. 删除</a>
  881. </td>
  882. </c:if>
  883. </tr>
  884. <tr height="40px">
  885. <td>
  886. 2
  887. </td>
  888. <td>
  889. 施工图设计批复文件
  890. </td>
  891. <td>
  892. <input type="hidden" class="form-control" name="delid42" id="delid42" value="${fjList42.fjid }">
  893. <input type="hidden" class="form-control" id="fjzdid42">
  894. <a class='main_title' href="#" onclick="jsjdgl.detail.download(42')"><span id="fjmc42">${fjList42.fjmc }</span></a>
  895. </td>
  896. <td>
  897. <span id="fbdw42">${recordfj42.fbdw }</span>
  898. </td>
  899. <td>
  900. <span id="wjh42">${recordfj42.wjh }</span>
  901. </td>
  902. <td>
  903. <span id="fbsj42">${recordfj42.fbsj }</span>
  904. </td>
  905. <c:if test="${spflag!=4 && opflag == 4 }">
  906. <td>
  907. <a id="tjbt42" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('42')">
  908. 添加</a>
  909. <a id="scbt42" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('42')">
  910. 删除</a>
  911. </td>
  912. </c:if>
  913. </tr>
  914. <c:forEach items="${fjvolist4}" var="qtfj" varStatus="status">
  915. <tr height="40px">
  916. <td>${status.index+3}</td>
  917. <td>其他附件</td>
  918. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  919. <td>${qtfj.fbdw }</td>
  920. <td>${qtfj.wjh }</td>
  921. <td>${qtfj.fbsj }</td>
  922. </tr>
  923. </c:forEach>
  924. <tbody id="viewqtfj4"></tbody>
  925. <c:if test="${sfjyr!=1 }">
  926. <c:if test="${spflag==4 || opflag > 4 }">
  927. <tr height=100px>
  928. <td colspan=1 >
  929. 审批意见
  930. </td>
  931. <td colspan=5>
  932. <textarea class="form-control" name="spyj4" id="spyj4" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  933. </td>
  934. </tr>
  935. </c:if>
  936. </c:if>
  937. <tbody id="qtfjtb4"></tbody>
  938. </table>
  939. </div>
  940. </div>
  941. <div class="tab-pane fade" id="kgba">
  942. <div style="background-color:#f4f4f4;">
  943. <table class="main_table" id="tb5" cellpadding="0" cellspacing="0">
  944. <tr>
  945. <th width="10%">序号</th>
  946. <th width="10%">材料名称</th>
  947. <th width="10%">上传附件名称</th>
  948. <th width="10%">批文单位</th>
  949. <th width="10%">文号</th>
  950. <th width="10%">批文时间</th>
  951. <c:if test="${spflag!=5 && opflag == 5 }">
  952. <th width="15%">操作</th>
  953. </c:if>
  954. </tr>
  955. <tr height="40px">
  956. <td>
  957. 1
  958. </td>
  959. <td>
  960. 控制性用地的批复(可选)
  961. </td>
  962. <td>
  963. <input type="hidden" class="form-control" name="delid51" id="delid51" value="${fjList51.fjid }">
  964. <input type="hidden" class="form-control" id="fjzdid51">
  965. <a class='main_title' href="#" onclick="jsjdgl.detail.download('51')"><span id="fjmc51">${fjList51.fjmc }</span></a>
  966. </td>
  967. <td>
  968. <span id="fbdw51">${recordfj51.fbdw }</span>
  969. </td>
  970. <td>
  971. <span id="wjh51">${recordfj51.wjh }</span>
  972. </td>
  973. <td>
  974. <span id="fbsj51">${recordfj51.fbsj }</span>
  975. </td>
  976. <c:if test="${spflag!=5 && opflag == 5 }">
  977. <td>
  978. <a id="tjbt51" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('51')">
  979. 添加</a>
  980. <a id="scbt51" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('51')">
  981. 删除</a>
  982. </td>
  983. </c:if>
  984. </tr>
  985. <tr height="40px">
  986. <td>
  987. 2
  988. </td>
  989. <td>
  990. 与施工单位和监理单位签订的合同复印件
  991. </td>
  992. <td>
  993. <input type="hidden" class="form-control" name="delid52" id="delid52" value="${fjList52.fjid }">
  994. <input type="hidden" class="form-control" id="fjzdid52">
  995. <a class='main_title' href="#" onclick="jsjdgl.detail.download('52')"><span id="fjmc52">${fjList52.fjmc }</span></a>
  996. </td>
  997. <td>
  998. <span id="fbdw52">${recordfj52.fbdw }</span>
  999. </td>
  1000. <td>
  1001. <span id="wjh52">${recordfj52.wjh }</span>
  1002. </td>
  1003. <td>
  1004. <span id="fbsj52">${recordfj52.fbsj }</span>
  1005. </td>
  1006. <c:if test="${spflag!=5 && opflag == 5 }">
  1007. <td>
  1008. <a id="tjbt52" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('52')">
  1009. 添加</a>
  1010. <a id="scbt52" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('52')">
  1011. 删除</a>
  1012. </td>
  1013. </c:if>
  1014. </tr>
  1015. <tr height="40px">
  1016. <td>
  1017. 3
  1018. </td>
  1019. <td>
  1020. 质量监督手续材料复印件
  1021. </td>
  1022. <td>
  1023. <input type="hidden" class="form-control" name="delid53" id="delid53" value="${fjList53.fjid }">
  1024. <input type="hidden" class="form-control" id="fjzdid53">
  1025. <a class='main_title' href="#" onclick="jsjdgl.detail.download('53')"><span id="fjmc53">${fjList53.fjmc }</span></a>
  1026. </td>
  1027. <td>
  1028. <span id="fbdw53">${recordfj53.fbdw }</span>
  1029. </td>
  1030. <td>
  1031. <span id="wjh53">${recordfj53.wjh }</span>
  1032. </td>
  1033. <td>
  1034. <span id="fbsj53">${recordfj53.fbsj }</span>
  1035. </td>
  1036. <c:if test="${spflag!=5 && opflag == 5 }">
  1037. <td>
  1038. <a id="tjbt53" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('53')">
  1039. 添加</a>
  1040. <a id="scbt53" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('53')">
  1041. 删除</a>
  1042. </td>
  1043. </c:if>
  1044. </tr>
  1045. <tr height="40px">
  1046. <td>
  1047. 4
  1048. </td>
  1049. <td>
  1050. 建设资金落实证明复印件
  1051. </td>
  1052. <td>
  1053. <input type="hidden" class="form-control" name="delid54" id="delid54" value="${fjList54.fjid }">
  1054. <input type="hidden" class="form-control" id="fjzdid54">
  1055. <a class='main_title' href="#" onclick="jsjdgl.detail.download('54')"><span id="fjmc54">${fjList54.fjmc }</span></a>
  1056. </td>
  1057. <td>
  1058. <span id="fbdw54">${recordfj54.fbdw }</span>
  1059. </td>
  1060. <td>
  1061. <span id="wjh54">${recordfj54.wjh }</span>
  1062. </td>
  1063. <td>
  1064. <span id="fbsj54">${recordfj54.fbsj }</span>
  1065. </td>
  1066. <c:if test="${spflag!=5 && opflag == 5 }">
  1067. <td>
  1068. <a id="tjbt54" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('54')">
  1069. 添加</a>
  1070. <a id="scbt54" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('54')">
  1071. 删除</a>
  1072. </td>
  1073. </c:if>
  1074. </tr>
  1075. <tr height="40px">
  1076. <td>
  1077. 5
  1078. </td>
  1079. <td>
  1080. 评标结果备案文件复印件(可选)
  1081. </td>
  1082. <td>
  1083. <input type="hidden" class="form-control" name="delid55" id="delid55" value="${fjList55.fjid }">
  1084. <input type="hidden" class="form-control" id="fjzdid55">
  1085. <a class='main_title' href="#" onclick="jsjdgl.detail.download('55')"><span id="fjmc55">${fjList55.fjmc }</span></a>
  1086. </td>
  1087. <td>
  1088. <span id="fbdw55">${recordfj55.fbdw }</span>
  1089. </td>
  1090. <td>
  1091. <span id="wjh55">${recordfj55.wjh }</span>
  1092. </td>
  1093. <td>
  1094. <span id="fbsj55">${recordfj55.fbsj }</span>
  1095. </td>
  1096. <c:if test="${spflag!=5 && opflag == 5 }">
  1097. <td>
  1098. <a id="tjbt55" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('55')">
  1099. 添加</a>
  1100. <a id="scbt55" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('55')">
  1101. 删除</a>
  1102. </td>
  1103. </c:if>
  1104. </tr>
  1105. <tr height="40px">
  1106. <td>
  1107. 6
  1108. </td>
  1109. <td>
  1110. 《开工备案表》
  1111. </td>
  1112. <td>
  1113. <input type="hidden" class="form-control" name="delid56" id="delid56" value="${fjList56.fjid }">
  1114. <input type="hidden" class="form-control" id="fjzdid56">
  1115. <a class='main_title' href="#" onclick="jsjdgl.detail.download('56')"><span id="fjmc56">${fjList56.fjmc }</span></a>
  1116. </td>
  1117. <td>
  1118. <span id="fbdw56">${recordfj56.fbdw }</span>
  1119. </td>
  1120. <td>
  1121. <span id="wjh56">${recordfj56.wjh }</span>
  1122. </td>
  1123. <td>
  1124. <span id="fbsj56">${recordfj56.fbsj }</span>
  1125. </td>
  1126. <c:if test="${spflag!=5 && opflag == 5 }">
  1127. <td>
  1128. <a id="tjbt56" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('56')">
  1129. 添加</a>
  1130. <a id="scbt56" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('56')">
  1131. 删除</a>
  1132. </td>
  1133. </c:if>
  1134. </tr>
  1135. <c:forEach items="${fjvolist5}" var="qtfj" varStatus="status">
  1136. <tr height="40px">
  1137. <td>${status.index+7}</td>
  1138. <td>其他附件</td>
  1139. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  1140. <td>${qtfj.fbdw }</td>
  1141. <td>${qtfj.wjh }</td>
  1142. <td>${qtfj.fbsj }</td>
  1143. </tr>
  1144. </c:forEach>
  1145. <tbody id="viewqtfj5"></tbody>
  1146. <c:if test="${sfjyr!=1 }">
  1147. <c:if test="${spflag==5 || opflag > 5 }">
  1148. <tr height=100px>
  1149. <td colspan=1 >
  1150. 审批意见
  1151. </td>
  1152. <td colspan=5>
  1153. <textarea class="form-control" name="spyj5" id="spyj5" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  1154. </td>
  1155. </tr>
  1156. </c:if>
  1157. </c:if>
  1158. <tbody id="qtfjtb5"></tbody>
  1159. </table>
  1160. </div>
  1161. </div>
  1162. <div class="tab-pane fade" id="ssgc">
  1163. <div style="background-color:#f4f4f4;">
  1164. <table class="main_table" id="tb6" cellpadding="0" cellspacing="0">
  1165. <tr>
  1166. <th>年度</th>
  1167. <th>年度计划投资额</th>
  1168. <th>当月实际完成投资额(万元)</th>
  1169. <th>当前形象进度</th>
  1170. <th>形象进度完成情况分析</th>
  1171. <th>操作</th>
  1172. </tr>
  1173. <tbody id="ssgctb"></tbody>
  1174. </table>
  1175. </div>
  1176. </div>
  1177. <div class="tab-pane fade" id="jgys1">
  1178. <div style="background-color:#f4f4f4;">
  1179. <table class="main_table" cellpadding="0" cellspacing="0">
  1180. <tr>
  1181. <th width="10%">序号</th>
  1182. <th width="10%">材料名称</th>
  1183. <th width="10%">上传附件名称</th>
  1184. <th width="10%">批文单位</th>
  1185. <th width="10%">文号</th>
  1186. <th width="10%">批文时间</th>
  1187. <c:if test="${spflag!=6 && opflag == 6 }">
  1188. <th width="15%">操作</th>
  1189. </c:if>
  1190. </tr>
  1191. <tr height="40px">
  1192. <td>
  1193. 1
  1194. </td>
  1195. <td>
  1196. 质监机构关于工程质量鉴定意见书
  1197. </td>
  1198. <td>
  1199. <input type="hidden" class="form-control" name="delid61" id="delid61" value="${fjList61.fjid }">
  1200. <input type="hidden" class="form-control" id="fjzdid61">
  1201. <a class='main_title' href="#" onclick="jsjdgl.detail.download('61')"><span id="fjmc61">${fjList61.fjmc }</span></a>
  1202. </td>
  1203. <td>
  1204. <span id="fbdw61">${recordfj61.fbdw }</span>
  1205. </td>
  1206. <td>
  1207. <span id="wjh61">${recordfj61.wjh }</span>
  1208. </td>
  1209. <td>
  1210. <span id="fbsj61">${recordfj61.fbsj }</span>
  1211. </td>
  1212. <c:if test="${spflag!=6 && opflag == 6 }">
  1213. <td>
  1214. <a id="tjbt61" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('61')">
  1215. 添加</a>
  1216. <a id="scbt61" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('61')">
  1217. 删除</a>
  1218. </td>
  1219. </c:if>
  1220. </tr>
  1221. <tr height="40px">
  1222. <td>
  1223. 2
  1224. </td>
  1225. <td>
  1226. 交工验收证书
  1227. </td>
  1228. <td>
  1229. <input type="hidden" class="form-control" name="delid62" id="delid62" value="${fjList62.fjid }">
  1230. <input type="hidden" class="form-control" id="fjzdid62">
  1231. <a class='main_title' href="#" onclick="jsjdgl.detail.download('62')"><span id="fjmc62">${fjList62.fjmc }</span></a>
  1232. </td>
  1233. <td>
  1234. <span id="fbdw62">${recordfj62.fbdw }</span>
  1235. </td>
  1236. <td>
  1237. <span id="wjh62">${recordfj62.wjh }</span>
  1238. </td>
  1239. <td>
  1240. <span id="fbsj62">${recordfj62.fbsj }</span>
  1241. </td>
  1242. <c:if test="${spflag!=6 && opflag == 6 }">
  1243. <td>
  1244. <a id="tjbt62" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('62')">
  1245. 添加</a>
  1246. <a id="scbt62" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('62')">
  1247. 删除</a>
  1248. </td>
  1249. </c:if>
  1250. </tr>
  1251. <c:forEach items="${fjvolist6}" var="qtfj" varStatus="status">
  1252. <tr height="40px">
  1253. <td>${status.index+3}</td>
  1254. <td>其他附件</td>
  1255. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  1256. <td>${qtfj.fbdw }</td>
  1257. <td>${qtfj.wjh }</td>
  1258. <td>${qtfj.fbsj }</td>
  1259. </tr>
  1260. </c:forEach>
  1261. <tbody id="viewqtfj6"></tbody>
  1262. <c:if test="${sfjyr!=1 }">
  1263. <c:if test="${spflag==6 || opflag > 6 }">
  1264. <tr height=100px>
  1265. <td colspan=1 >
  1266. 审批意见
  1267. </td>
  1268. <td colspan=5>
  1269. <textarea class="form-control" name="spyj6" id="spyj6" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  1270. </td>
  1271. </tr>
  1272. </c:if>
  1273. </c:if>
  1274. <tbody id="qtfjtb6"></tbody>
  1275. </table>
  1276. </div>
  1277. </div>
  1278. <div class="tab-pane fade" id="syxba">
  1279. <div style="background-color:#f4f4f4;">
  1280. <table class="main_table" id="tb7" cellpadding="0" cellspacing="0">
  1281. <tr>
  1282. <th width="10%">序号</th>
  1283. <th width="10%">材料名称</th>
  1284. <th width="10%">上传附件名称</th>
  1285. <th width="10%">批文单位</th>
  1286. <th width="10%">文号</th>
  1287. <th width="10%">批文时间</th>
  1288. <c:if test="${spflag!=7 && opflag == 7 }">
  1289. <th width="15%">操作</th>
  1290. </c:if>
  1291. </tr>
  1292. <tr height="40px">
  1293. <td>
  1294. 1
  1295. </td>
  1296. <td>
  1297. 环境保护、劳动安全卫生、消防主管部门关于试运行的准许意见
  1298. </td>
  1299. <td>
  1300. <input type="hidden" class="form-control" name="delid71" id="delid71" value="${fjList71.fjid }">
  1301. <input type="hidden" class="form-control" id="fjzdid71">
  1302. <a class='main_title' href="#" onclick="jsjdgl.detail.download('71')"><span id="fjmc71">${fjList71.fjmc }</span></a>
  1303. </td>
  1304. <td>
  1305. <span id="fbdw71">${recordfj71.fbdw }</span>
  1306. </td>
  1307. <td>
  1308. <span id="wjh71">${recordfj71.wjh }</span>
  1309. </td>
  1310. <td>
  1311. <span id="fbsj71">${recordfj71.fbsj }</span>
  1312. </td>
  1313. <c:if test="${spflag!=7 && opflag == 7 }">
  1314. <td>
  1315. <a id="tjbt71" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('71')">
  1316. 添加</a>
  1317. <a id="scbt71" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('71')">
  1318. 删除</a>
  1319. </td>
  1320. </c:if>
  1321. </tr>
  1322. <tr height="40px">
  1323. <td>
  1324. 2
  1325. </td>
  1326. <td>
  1327. 试运行备案表
  1328. </td>
  1329. <td>
  1330. <input type="hidden" class="form-control" name="delid72" id="delid72" value="${fjList72.fjid }">
  1331. <input type="hidden" class="form-control" id="fjzdid72">
  1332. <a class='main_title' href="#" onclick="jsjdgl.detail.download('72')"><span id="fjmc72">${fjList72.fjmc }</span></a>
  1333. </td>
  1334. <td>
  1335. <span id="fbdw72">${recordfj72.fbdw }</span>
  1336. </td>
  1337. <td>
  1338. <span id="wjh72">${recordfj72.wjh }</span>
  1339. </td>
  1340. <td>
  1341. <span id="fbsj72">${recordfj72.fbsj }</span>
  1342. </td>
  1343. <c:if test="${spflag!=7 && opflag == 7 }">
  1344. <td>
  1345. <a id="tjbt72" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('72')">
  1346. 添加</a>
  1347. <a id="scbt72" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('72')">
  1348. 删除</a>
  1349. </td>
  1350. </c:if>
  1351. </tr>
  1352. <c:forEach items="${fjvolist7}" var="qtfj" varStatus="status">
  1353. <tr height="40px">
  1354. <td>${status.index+3}</td>
  1355. <td>其他附件</td>
  1356. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  1357. <td>${qtfj.fbdw }</td>
  1358. <td>${qtfj.wjh }</td>
  1359. <td>${qtfj.fbsj }</td>
  1360. </tr>
  1361. </c:forEach>
  1362. <tbody id="viewqtfj7"></tbody>
  1363. <c:if test="${sfjyr!=1 }">
  1364. <c:if test="${spflag==7 || opflag > 7 }">
  1365. <tr height=100px>
  1366. <td colspan=1 >
  1367. 审批意见
  1368. </td>
  1369. <td colspan=5>
  1370. <textarea class="form-control" name="spyj7" id="spyj7" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  1371. </td>
  1372. </tr>
  1373. </c:if>
  1374. </c:if>
  1375. <tbody id="qtfjtb7"></tbody>
  1376. </table>
  1377. </div>
  1378. </div>
  1379. <div class="tab-pane fade" id="jgys2">
  1380. <div style="background-color:#f4f4f4;">
  1381. <table class="main_table" id="tb8" cellpadding="0" cellspacing="0">
  1382. <tr>
  1383. <th width="10%">序号</th>
  1384. <th width="10%">材料名称</th>
  1385. <th width="10%">上传附件名称</th>
  1386. <th width="10%">批文单位</th>
  1387. <th width="10%">文号</th>
  1388. <th width="10%">批文时间</th>
  1389. <c:if test="${spflag!=8 && opflag == 8 }">
  1390. <th width="15%">操作</th>
  1391. </c:if>
  1392. </tr>
  1393. <tr height="40px">
  1394. <td>
  1395. 1
  1396. </td>
  1397. <td>
  1398. 竣工资料汇编
  1399. </td>
  1400. <td>
  1401. <input type="hidden" class="form-control" name="delid81" id="delid81" value="${fjList81.fjid }">
  1402. <input type="hidden" class="form-control" id="fjzdid81">
  1403. <a class='main_title' href="#" onclick="jsjdgl.detail.download('81')"><span id="fjmc81">${fjList81.fjmc }</span></a>
  1404. </td>
  1405. <td>
  1406. <span id="fbdw81">${recordfj81.fbdw }</span>
  1407. </td>
  1408. <td>
  1409. <span id=wjh81>${recordfj81.wjh }</span>
  1410. </td>
  1411. <td>
  1412. <span id="fbsj81">${recordfj81.fbsj }</span>
  1413. </td>
  1414. <c:if test="${spflag!=8 && opflag == 8 }">
  1415. <td>
  1416. <a id="tjbt81" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('81')">
  1417. 添加</a>
  1418. <a id="scbt81" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('81')">
  1419. 删除</a>
  1420. </td>
  1421. </c:if>
  1422. </tr>
  1423. <tr height="40px">
  1424. <td>
  1425. 2
  1426. </td>
  1427. <td>
  1428. 竣工验收证书(多个,新码头,老码头改造)
  1429. </td>
  1430. <td>
  1431. <input type="hidden" class="form-control" name="delid82" id="delid82" value="${fjList82.fjid }">
  1432. <input type="hidden" class="form-control" id="fjzdid82">
  1433. <a class='main_title' href="#" onclick="jsjdgl.detail.download('82')"><span id="fjmc82">${fjList82.fjmc }</span></a>
  1434. </td>
  1435. <td>
  1436. <span id="fbdw82">${recordfj82.fbdw }</span>
  1437. </td>
  1438. <td>
  1439. <span id="wjh82">${recordfj82.wjh }</span>
  1440. </td>
  1441. <td>
  1442. <span id="fbsj82">${recordfj82.fbsj }</span>
  1443. </td>
  1444. <c:if test="${spflag!=8 && opflag == 8 }">
  1445. <td>
  1446. <a id="tjbt82" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('82')">
  1447. 添加</a>
  1448. <a id="scbt82" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('82')">
  1449. 删除</a>
  1450. </td>
  1451. </c:if>
  1452. </tr>
  1453. <%-- <tr>
  1454. <td>3</td>
  1455. <td>竣工验收鉴定书</td>
  1456. <td><input type="hidden" class="form-control"
  1457. name="delid83" id="delid83" value="${fjList83.fjid }">
  1458. <input type="hidden" class="form-control" id="fjzdid83">
  1459. <a class='main_title' href="#"
  1460. onclick="jsjdgl.detail.download('83')"><span id="fjmc83">${fjList83.fjmc }</span></a>
  1461. </td>
  1462. <td><span id="fbdw83">${recordfj83.fbdw }</span></td>
  1463. <td><span id="wjh83">${recordfj83.wjh }</span></td>
  1464. <td><span id="fbsj83">${recordfj83.fbsj }</span></td>
  1465. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1466. <c:if test="${spflag==8 && opflag == 8 }">
  1467. <td>
  1468. <a id="tjbt83" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('83')">
  1469. 添加</a>
  1470. <a id="scbt83" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('83')">
  1471. 删除</a>
  1472. </td>
  1473. </c:if>
  1474. <c:if test="${spflag!=8 && opflag == 8 }">
  1475. <Td></Td>
  1476. </c:if>
  1477. </c:if>
  1478. </tr>
  1479. <Tr>
  1480. <td>4</td>
  1481. <td>专家审查意见</td>
  1482. <td><input type="hidden" class="form-control"
  1483. name="delid84" id="delid84" value="${fjList84.fjid }">
  1484. <input type="hidden" class="form-control" id="fjzdid84">
  1485. <a class='main_title' href="#"
  1486. onclick="jsjdgl.detail.download('84')"><span id="fjmc84">${fjList84.fjmc }</span></a>
  1487. </td>
  1488. <td><span id="fbdw84">${recordfj84.fbdw }</span></td>
  1489. <td><span id="wjh84">${recordfj84.wjh }</span></td>
  1490. <td><span id="fbsj84">${recordfj84.fbsj }</span></td>
  1491. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1492. <c:if test="${spflag==8 && opflag == 8 }">
  1493. <td>
  1494. <a id="tjbt84" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('84')">
  1495. 添加</a>
  1496. <a id="scbt84" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('84')">
  1497. 删除</a>
  1498. </td>
  1499. </c:if>
  1500. <c:if test="${spflag!=8 && opflag == 8 }">
  1501. <Td></Td>
  1502. </c:if>
  1503. </c:if>
  1504. </tr>
  1505. <tr>
  1506. <td>5</td>
  1507. <td>对验收意见的答复</td>
  1508. <td><input type="hidden" class="form-control"
  1509. name="delid85" id="delid85" value="${fjList85.fjid }">
  1510. <input type="hidden" class="form-control" id="fjzdid85">
  1511. <a class='main_title' href="#"
  1512. onclick="jsjdgl.detail.download('85')"><span id="fjmc85">${fjList85.fjmc }</span></a>
  1513. </td>
  1514. <td><span id="fbdw85">${recordfj85.fbdw }</span></td>
  1515. <td><span id="wjh85">${recordfj85.wjh }</span></td>
  1516. <td><span id="fbsj85">${recordfj85.fbsj }</span></td>
  1517. <c:if test="${record.flowstatus == 2 || record.flowstatus == null }">
  1518. <c:if test="${spflag==8 && opflag == 8 }">
  1519. <td>
  1520. <a id="tjbt85" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.tianjiafj('85')">
  1521. 添加</a>
  1522. <a id="scbt85" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.delFile('85')">
  1523. 删除</a>
  1524. </td>
  1525. </c:if>
  1526. <c:if test="${spflag!=8 && opflag == 8 }">
  1527. <Td></Td>
  1528. </c:if>
  1529. </c:if>
  1530. </tr> --%>
  1531. <c:forEach items="${fjvolist8}" var="qtfj" varStatus="status">
  1532. <tr height="40px">
  1533. <td>${status.index+3}</td>
  1534. <td>其他附件</td>
  1535. <td><a class="main_title" href='/jsjy/accessory/download?id=${qtfj.fjid }'>${qtfj.fjmc }</a></td>
  1536. <td>${qtfj.fbdw }</td>
  1537. <td>${qtfj.wjh }</td>
  1538. <td>${qtfj.fbsj }</td>
  1539. </tr>
  1540. </c:forEach>
  1541. <tbody id="viewqtfj8"></tbody>
  1542. <c:if test="${sfjyr!=1 }">
  1543. <c:if test="${spflag==8 || opflag > 8 }">
  1544. <tr height=100px>
  1545. <td colspan=1 >
  1546. 审批意见
  1547. </td>
  1548. <td colspan=6>
  1549. <textarea class="form-control" name="spyj8" id="spyj8" style="height:100px;" value="${xmxxfb.yj }"></textarea>
  1550. </td>
  1551. </tr>
  1552. </c:if>
  1553. </c:if>
  1554. <tbody id="qtfjtb8"></tbody>
  1555. </table>
  1556. </div>
  1557. </div>
  1558. <div class="tab-pane fade" id="lcls">
  1559. <div style="background-color:#f4f4f4;">
  1560. <table class="main_table" cellpadding="0" cellspacing="0">
  1561. <tr>
  1562. <th width="10%">序号</th>
  1563. <th width="10%">流程节点名</th>
  1564. <th width="10%">处理结果</th>
  1565. <th width="10%">审批人</th>
  1566. <th width="10%">审批时间</th>
  1567. <th width="10%">审批意见</th>
  1568. </tr>
  1569. <tbody id="lclstb"></tbody>
  1570. </table>
  1571. </div>
  1572. </div>
  1573. </div>
  1574. <div class="theme-popover" id="qtfjpopover" style="width: 900px;height: 400px;">
  1575. <div class="theme-poptit">
  1576. <input type="hidden" class="form-control" id="qtfjid" name="qtfjid">
  1577. <input type="hidden" class="form-control" id="qtfjzdids" name="qtfjzdids">
  1578. <input type="hidden" class="form-control" id="qtfjids" name="qtfjids">
  1579. <div class="close-tc">
  1580. <a href="#" title="关闭" onclick="jsjdgl.detail.qtfjguanbipop()" >×</a>
  1581. </div>
  1582. </div>
  1583. <div class="popContent-tc" >
  1584. <table class="apply" cellpadding="0" cellspacing="0">
  1585. <tr>
  1586. <th>文号 : &nbsp;</th>
  1587. <td>
  1588. <input type="text" class="form-control" name="qtwjh" id="wjh">
  1589. </td>
  1590. </tr>
  1591. <tr>
  1592. <th>批文时间: &nbsp;</th>
  1593. <td>
  1594. <input class="Wdate" name="qtfbsj" id="fbsj" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM-dd'})">
  1595. </td>
  1596. </tr>
  1597. <tr>
  1598. <th>批文单位: &nbsp;</th>
  1599. <td>
  1600. <input type="text" class="form-control" name="qtfbdw" id="fbdw">
  1601. </td>
  1602. </tr>
  1603. <tr>
  1604. <th>上传附件名称: &nbsp;</th>
  1605. <td>
  1606. <div>
  1607. <a href="#" id="scqtfjbt" class="file"><input type="file" name="qtfilename" id="qtfileid" onchange="jsjdgl.detail.saveQtfj()">选择本地文件</a>
  1608. </div>
  1609. <div id="qtfjxq">
  1610. </div>
  1611. <span>(上传文件最大50M,只可上传pdf、doc、docx、xls、xlsx格式文件)</span>
  1612. </td>
  1613. </tr>
  1614. </table>
  1615. <div id="buttons">
  1616. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.xinzengqtfj()">
  1617. <i></i>
  1618. 保存</a>
  1619. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.qtfjguanbipop()">
  1620. <i></i>
  1621. 关闭</a>
  1622. </div>
  1623. </div>
  1624. </div>
  1625. <div class="theme-popover-mask" id="qtfjmask"></div>
  1626. <div class="theme-popover" id="theme-popover" style="width: 900px;height: 400px;">
  1627. <div class="theme-poptit">
  1628. <input type="hidden" class="form-control" id="flag">
  1629. <div class="close-tc">
  1630. <a href="#" title="关闭" onclick="jsjdgl.detail.guanbipop()" >×</a>
  1631. </div>
  1632. </div>
  1633. <div class="popContent-tc" >
  1634. <table class="apply" cellpadding="0" cellspacing="0">
  1635. <tr>
  1636. <th>文号 : &nbsp;</th>
  1637. <td>
  1638. <input type="text" class="form-control" name="wjh" id="wjh1">
  1639. </td>
  1640. </tr>
  1641. <tr>
  1642. <th>批文时间: &nbsp;</th>
  1643. <td>
  1644. <input class="Wdate" name="fbsj" id="fbsj1" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM-dd'})">
  1645. </td>
  1646. </tr>
  1647. <tr>
  1648. <th>批文单位: &nbsp;</th>
  1649. <td>
  1650. <input type="text" class="form-control" name="fbdw" id="fbdw1">
  1651. </td>
  1652. </tr>
  1653. <tr>
  1654. <th>上传附件名称: &nbsp;</th>
  1655. <td>
  1656. <div>
  1657. <a href="#" id="scfjbt" class="file"><input type="file" name="filename" id="fileid" onchange="jsjdgl.detail.saveFile()">选择本地文件</a>
  1658. </div>
  1659. <div id="fjxq">
  1660. </div>
  1661. <span>(上传文件最大50M,只可上传pdf、doc、docx、xls、xlsx格式文件)</span>
  1662. </td>
  1663. </tr>
  1664. </table>
  1665. <div id="buttons">
  1666. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.xinzengfj()">
  1667. 保存</a>
  1668. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.guanbipop()">
  1669. 关闭</a>
  1670. </div>
  1671. </div>
  1672. </div>
  1673. <div class="theme-popover-mask" id="theme-popover-mask"></div>
  1674. </form>
  1675. <%-- <div id="buttons">
  1676. <c:if test="${sfjyr==1 }">
  1677. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.qtfj()">
  1678. 其他附件</a>
  1679. </c:if>
  1680. <c:if test="${sfjyr=='' }">
  1681. <c:if test="${flag=='audit' }">
  1682. <c:if test="${ spflag !='3' && spflag !='8' }">
  1683. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1684. <i class="glyphicon glyphicon-ok-sign"></i>
  1685. 同意</a>
  1686. <c:if test="${sfjyr!=1 }">
  1687. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1688. <i class="glyphicon glyphicon-ban-circle"></i>
  1689. 退回</a>
  1690. </c:if>
  1691. </c:if>
  1692. <c:if test="${ spflag =='3' }">
  1693. <c:if test="${record.flowstatus == '1' }">
  1694. <c:if test="${sfjyr!=1 }">
  1695. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1696. <i class="glyphicon glyphicon-ban-circle"></i>
  1697. 退回</a>
  1698. </c:if>
  1699. </c:if>
  1700. <c:if test="${record.flowstatus == '2' || record.flowstatus == '' || record.flowstatus == null }">
  1701. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1702. <i class="glyphicon glyphicon-ok-sign"></i>
  1703. 同意</a>
  1704. <c:if test="${record.flowstatus == '' || record.flowstatus == null }">
  1705. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.saveTbzt('${record.id}')">
  1706. <i class="glyphicon glyphicon-ok-sign"></i>
  1707. 转报省级</a>
  1708. </c:if>
  1709. <c:if test="${sfjyr!=1 }">
  1710. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1711. <i class="glyphicon glyphicon-ban-circle"></i>
  1712. 退回</a>
  1713. </c:if>
  1714. </c:if>
  1715. </c:if>
  1716. <c:if test="${ spflag =='8' }">
  1717. <c:if test="${record.flowstatus == '3' }">
  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 == '4' || 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 == '2' || 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>
  1741. </c:if>
  1742. <c:if test="${sfjyr==1 }">
  1743. <c:if test="${flag=='audit' }">
  1744. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1745. <i class="glyphicon glyphicon-share"></i>
  1746. 提交</a>
  1747. </c:if>
  1748. </c:if>
  1749. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.back()">
  1750. <i class="glyphicon glyphicon-arrow-left"></i>
  1751. 返回</a>
  1752. </div> --%>
  1753. <div id="buttons">
  1754. <c:if test="${sfjyr==1 }">
  1755. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.qtfj()">
  1756. 其他附件</a>
  1757. </c:if>
  1758. <c:if test="${sfjyr=='' }">
  1759. <c:if test="${flag=='audit' }">
  1760. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1761. <i class="glyphicon glyphicon-ok-sign"></i>
  1762. 同意</a>
  1763. </c:if>
  1764. </c:if>
  1765. <c:if test="${sfjyr==1 }">
  1766. <c:if test="${flag=='audit' }">
  1767. <a id="auditbt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('Y','${record.id}')">
  1768. <i class="glyphicon glyphicon-ok-sign"></i>
  1769. 提交</a>
  1770. </c:if>
  1771. </c:if>
  1772. <c:if test="${sfjyr!=1 }">
  1773. <a id="tuihuibt" class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.audit('N','${record.id}')">
  1774. <i class="glyphicon glyphicon-ban-circle"></i>
  1775. 退回</a>
  1776. </c:if>
  1777. <a class="btn btn-default btn-sm" href="#" onclick="jsjdgl.detail.back()">
  1778. <i class="glyphicon glyphicon-arrow-left"></i>
  1779. 返回</a>
  1780. </div>
  1781. </div>
  1782. </div>
  1783. </div>
  1784. </body>
  1785. </html>