| <apex:page Controller="ConsumableAllDetController" sidebar="false" showHeader="false" action="{!init}" title="所有产品一览"> | 
| <style> | 
|     tr.dataRow { | 
|         background-color:white; | 
|     } | 
|     td.columus { | 
|         background-color:white; | 
|         text-align: right; | 
|     } | 
| </style> | 
|     <apex:form id="allForm"> | 
|         <apex:pageBlock id="allBlock" title="所有产品一览" > | 
|                 <table class="list" border="0" cellpadding="0" cellspacing="0" id="example"> | 
|                     <tr class="headerRow"> | 
|                         <th style="text-align: center;">{!$ObjectType.Consumable_order_details2__c.fields.Asset_Model_No__c.label}</th> | 
|                         <th style="text-align: center;">数量</th> | 
|                     </tr> | 
|                     <apex:repeat value="{!allOtherDetIifo}" var="records" id="re"> | 
|                     <tr class="dataRow"> | 
|                         <td class="dataCell" style="text-align: center;"> | 
|                             {!records.prodModel} | 
|                         </td> | 
|                         <td class="dataCell" style="text-align: center;"> | 
|                             {!records.recordCount} | 
|                         </td> | 
|                     </tr> | 
|                     </apex:repeat> | 
|                 </table> | 
|         </apex:pageBlock> | 
|     </apex:form> | 
| </apex:page> |