高章伟
2022-03-18 4bfe21c4b5ddc089ae5a95f4b10f6cff148b690d
1
2
3
4
5
6
7
8
9
10
11
12
13
<apex:page showHeader="false" sidebar="false" standardController="PersonalEvaluation__c">
<apex:form >
<b>留言时的截图:</b>
<apex:outputField value="{!PersonalEvaluation__c.Graph1__c}" />
<b>留言一览:</b><br/>
<apex:outputPanel layout="none" rendered="{!ISBLANK(PersonalEvaluation__c.province__c)}">
    <iframe id="tabComment" seamless="seamless" src="/apex/PersonalEvaluationCommentList?user={!PersonalEvaluation__c.OwnerId}&tab={!PersonalEvaluation__c.TabName__c}&rpt={!URLENCODE(PersonalEvaluation__c.ReportName__c)}" frameborder="0" allowtransparency="true" height="200" width="990"></iframe>
</apex:outputPanel>
<apex:outputPanel layout="none" rendered="{!NOT(ISBLANK(PersonalEvaluation__c.province__c))}">
    <iframe id="tabComment" seamless="seamless" src="/apex/PersonalEvaluationCommentList?province={!PersonalEvaluation__c.province__c}&tab={!PersonalEvaluation__c.TabName__c}&rpt={!URLENCODE(PersonalEvaluation__c.ReportName__c)}" frameborder="0" allowtransparency="true" height="200" width="990"></iframe>
</apex:outputPanel>
</apex:form>
</apex:page>