高章伟
2022-03-18 4bfe21c4b5ddc089ae5a95f4b10f6cff148b690d
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="MaxManagmentCodeController"  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>