<apex:page standardController="Order" extensions="NewOrderController" showHeader="false" sidebar="false" id="allPage" action="{!init}" title="合同配置">
|
<apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
|
<apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
|
<apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/>
|
|
<apex:form id="allForm">
|
<apex:outputPanel rendered="{!errorflg}" layout="none">
|
<table width="200px">
|
<tr>
|
<td align="left"><div class="errorMsg">{!errorMessage}</div></td>
|
</tr>
|
</table>
|
</apex:outputPanel>
|
<apex:outputPanel id="allPanel">
|
<table class="linetable" border="0" style="border-collapse: collapse;width:200px;table-layout:fixed;">
|
<tr>
|
<td style="width: 40%;text-align: right;">文件名称</td>
|
<td style="width: 60%;text-align: left;"><apex:inputText id="fileName" value="{!fileName}" style="width:90%;"/></td>
|
</tr>
|
<tr>
|
<td style="width: 100%;text-align: center;"><apex:commandButton action="{!csvExport}" value="配置导出"/></td>
|
</tr>
|
</table>
|
</apex:outputPanel>
|
</apex:form>
|
</apex:page>
|