| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <html>
- <head>
- <meta http-equiv="X-UA-Compatible"content="IE=9; IE=8; IE=7; IE=EDGE" />
- </head>
- <body style="overflow:hidden !important;">
- <%
- pageContext.setAttribute("dataType","bdplay");
- %>
- <script>
- function addWdDragHeight(selecter,param,top){
- console.log(selecter);
- console.log(param);
- var aa="";
- if(param.minHeight){
- aa+="min:"+param.minHeight+",";
- }
- if(param.maxHeight){
- aa+="max:"+param.maxHeight+",";
- }
- if(top){
- aa+="top:"+top+",";
- }
- if(param&&aa){
- aa=aa.substr(0,aa.length-1)
- document.querySelector(selecter).setAttribute("ssDragh",aa); // ("wdDragHeight",。Lin
- }
- }
- </script>
- <%-- 改为 <data@ss name="info"/>。Lin
- <tab@ss name="info"/> --%>
- <data.ss name="info"/>
- <form method="post" id="myForm">
- <div class="content-div" ssFith='{max:490,min:100,lvl:1}' style="height: 762px;padding: 0px;box-sizing: border-box; overflow:hidden;">
- <div ssDragh='{max:490,min:50,lvl:2,pct:60}'>
- <iframe width="100%" height="100%" frameborder="0"
- src="<varServ.ss name='${info.service}' dest='${info.dest}' parm='${info.param}'/>">
- </iframe>
- </div>
- <div ssDragh='{max:490,min:50,lvl:2,pct:40}'>
- <iframe width="100%" height="100%" frameborder="0"
- src="<serv.ss name='selSh' dest='shList' parm='{sqid:"${sqid}"}'/>">
- </iframe>
- </div>
- </div>
- <div class="bottom-div" >
- <div class="bottom-up-div">
- <div class="bottom-up-div-left" style="width: 16%;display: inline-block;height: 100%;line-height: 99px;font-size: 16px;text-align: right;padding-right: 16px;box-sizing: border-box;">
- 审核意见
- </div>
- <div class="bottom-up-div-left-right" style="width: 84%;display: inline-block;float: right;height: 100%;">
- <input type='hidden' name='ynrid' value='' />
- <div id='ynrEdit' data-shid="${shid}" style="height: 63px;"> <%-- 增加 data-shid,解决 "每次进入办理页都会产生一个 CMS 内容(最后一次仍会垃圾)" 的问题。Lin --%>
- </div>
- <%-- 再改,规范命名。Lin
- <inper@ss name='ynr' btn='{name:"附件",key:"fjid",val:""}'/> --%>
- <inper.ss name='ynr' btn='{desc:"附件",name:"fjid",val:""}'/>
- </div>
- </div>
- <div class="bottom-down-div">
- <%-- 改为 <data@ss name="agrAdd"/>。Lin
- <tab@ss name="agr"/>
- <tab@ss name="rej"/> --%>
- <data.ss name="agrAdd"/>
- <data.ss name="rejAdd"/>
- <equal.ss val="${empty agrAdd}" val2="false"> <%-- ="${empty agr}"。Lin --%>
- <input type="submit" value="同意" class="bottom-button"
- <%-- 再去掉 wd.display.changeFormAction(,改用 <varServ@ss subm="true"。Lin
- 去掉 sfty:"1" 参数,不用了 -- ${agr.service} 里的服务,最终是 "ss.agrTask"
- 原 name="${agr.service}" dest="${agr.dest}"
- onclick='wd.display.changeFormAction("<varServ@ss name='${agr.service}' dest='${agr.dest}' parm='{shid:"${shid}",sfty:"1"}'/>",this);'/> --%>
- onclick='<varServ.ss subm="true" name="${agrAdd.service}" dest="${agrAdd.dest}" parm="{shid:"${shid}"}"/>'/>
- </equal.ss>
- <equal.ss val="${empty rejAdd}" val2="false"> <%-- val="${empty rej}"。Lin --%>
- <input type="submit" value="退回" class="bottom-button"
- <%-- 再去掉 wd.display.changeFormAction(,改用 <varServ@ss subm="true"。Lin
- 去掉 sfty:"0" 参数,不用了 -- ${agr.service} 里的服务,最终是 "ss.rejTask"
- 原 name="${rej.service}" dest="${rej.dest}"
- onclick='wd.display.changeFormAction("<varServ@ss name='${rej.service}' dest='${rej.dest}' parm='{shid:"${shid}",sfty:"0"}'/>",this);'/> --%>
- onclick='<varServ.ss subm="true" name="${rejAdd.service}" dest="${rejAdd.dest}" parm="{shid:"${shid}"}"/>'/>
- </equal.ss>
- <%--
- <input type="submit" value="同意" class="bottom-button" onclick="@service{submit:true,name:'check',dest:'sys_info',param:{shid:'${shid}',sfty:'1'}}@"/>
- <input type="submit" class="bottom-button" value="退回" onclick="@service{submit:true,name:'check',dest:'sys_info',param:{shid:'${shid}',sfty:'0'}}@"/>
- --%>
- <input type="button" onclick="wd.display.closeDialog();" class="bottom-button" value="关闭"/>
- </div>
- </div>
- </form>
- </body>
- </html>
|