buli
2022-05-09 0953b3b5fcf19c627c6479a6b86648df653c40db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<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>