DESKTOP-0K9VGFE\hp
2022-03-11 6d766b0c8e9b31e7e03ffd344a94c2851aa9beb9
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
<apex:page controller="MaxManagmentCodeTransferController"  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:includeScript value="/soap/ajax/29.0/connection.js"/>
<apex:includeScript value="/soap/ajax/29.0/apex.js"/>
<apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
<apex:form id="allForm">
 
<table class="list" border="0" cellpadding="0" cellspacing="0" width="10%" >
    <thead>
    <tr class="headerRow" >
        <th style="padding-bottom: 6px;">调拨最大编码</th>
    </tr>
    </thead>
    <tbody>
    <apex:repeat value="{!codeList}" var="info"  >
    <tr>
        <td><apex:outputText value="{!info}"/></td>
    </tr>
    </apex:repeat>
    </tbody>
</table>
</apex:form>
</apex:page>