|  |  | 
 |  |  |         <apex:pageBlock title="PDF列表" id="pdf"> | 
 |  |  |             <!-- <apex:pageBlockSection > --> | 
 |  |  |             <!-- show uploated file list --> | 
 |  |  |             <apex:pageBlockTable value="{!fileList}" var="file" align="center" columns="3" columnsWidth="30%,30%,40%"> | 
 |  |  |             <apex:pageBlockTable value="{!fileList}" var="file" align="center" columns="7" columnsWidth="40%,10%,10%,10%,10%,10%,10%"> | 
 |  |  |                 <apex:column id="name" headerValue="文件名称"> | 
 |  |  |                     <apex:outputLink value="/{!file.Id}" target="_blank">{!file.FileName__c}</apex:outputLink> | 
 |  |  |                 </apex:column> | 
 |  |  |                 <!-- <apex:column id="num" headerValue="父记录链接"> | 
 |  |  |                     <apex:outputLink value="/{!file.ParentRecordId__c}" target="_blank">{!file.ParentRecordId__c}</apex:outputLink> | 
 |  |  |                 </apex:column> --> | 
 |  |  |                 <apex:column id="infoId" headerValue="信息ID"> | 
 |  |  |                     {!file.InfoId__c} | 
 |  |  |                 </apex:column> | 
 |  |  |                 <apex:column id="infoType" headerValue="项目阶段"> | 
 |  |  |                     {!file.InfoType__c} | 
 |  |  |                 </apex:column> | 
 |  |  |                 <apex:column id="subInfoType" headerValue="阶段补充说明"> | 
 |  |  |                     {!file.subInfoType__c} | 
 |  |  |                 </apex:column> | 
 |  |  |                 <apex:column id="updDate" headerValue="更新日期"> | 
 |  |  |                     <apex:outputField value="{!file.UpdateDate__c}"/> | 
 |  |  |                 </apex:column> | 
 |  |  |                 <apex:column id="previewLink" headerValue="预览链接"> | 
 |  |  |                     <apex:outputLink value="{!file.ViewLink__c}" target="{!file.ViewLink__c}">预览链接 | 
 |  |  |                     </apex:outputLink> |