<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>
|