<apex:page showHeader="true" sidebar="true" Controller="SidebarController" lightningStylesheets="true">
|
<head>
|
<title></title>
|
<style>
|
ul li {
|
list-style: none;
|
/* line-height: 25px; */
|
/* text-align: center; */
|
}
|
a{
|
text-decoration:none;
|
/* font-size: 20px; */
|
cursor: pointer;
|
}
|
</style>
|
</head>
|
<script>
|
function toURLPreJs(name) {
|
// alert(name);
|
toURL(name);
|
|
}
|
|
function toURLJs() {
|
// alert({!reportid});
|
var ss = document.getElementById("hidden").value;
|
//新窗口打开,还是本页面打开,还是弹窗打开请自行修改window.open
|
window.open('/'+ss,'_blank');
|
}
|
|
|
</script>
|
<apex:form id="allForm">
|
<apex:actionFunction name="toURL" action="{!toURL}" rerender="allForm,checEventFrame" oncomplete="toURLJs();">
|
<apex:param name="firstParam" assignTo="{!DeveloperName}" value="" />
|
</apex:actionFunction>
|
<apex:outputPanel id="message">
|
<apex:pageMessages />
|
<input id="hidden" type="hidden" name="hidden" value="{!reportid}"/>
|
</apex:outputPanel>
|
<ul style="margin : 0 auto;">
|
<li><a href="/apex/EquipmentRentalExtend" target="_blank" >查询借出中备品</a></li>
|
<hr />
|
<li><a href="/apex/RentalApplySequence" target="_blank" >备品排队查看</a></li>
|
<hr />
|
<li><a href="" onclick="toURLPreJs('Copy_quotation_request1024');return false;" target="_blank" >报价委托一览</a></li>
|
<hr />
|
<li><a href="" onclick="toURLPreJs('OPD_Analysis');return false;" target="_blank" >OPD报告书一栏</a></li>
|
<hr />
|
<li><a href="" onclick="toURLPreJs('Contain_stop_pcl');return false;" target="_blank" >包含停止产品询价</a></li>
|
|
<!-- <li>window.open('/apex/WebToEquipmentSetShippmentReceived','','height=700, width=1000, top=200, left=200, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')</li> -->
|
</ul>
|
</apex:form>
|
</apex:page>
|