Li Jun
2022-03-17 69dc5df6ec51f6f7f6737c61d9c4c1e7757a2b96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<apex:page standardController="Solution_Programme__c" extensions="Solution_ProgrammeDeleteController"  action="{!init}" sidebar="true">
    <apex:outputPanel layout="none" rendered="{!IF(is_Alert_Delete, false,true )}">
        <apex:form >
            <apex style="font-size: 18px;">Solution方案只有状态为草案中时才可删除</apex><br/>
            <apex style="font-size: 18px;">请点击<a href="javascript: history.go(-1)" style="color: blue;font-size: 20px;">返回</a></apex>
        </apex:form>
    </apex:outputPanel>
    <apex:outputPanel layout="none" rendered="{!IF(is_Alert_Delete, true, false)}">
        <apex:form >
            <apex style="font-size: 18px;">删除成功</apex><br/>
            <apex style="font-size: 18px;">请点击<a href="javascript: history.go(-1)" style="color: blue;font-size: 20px;">返回</a></apex>
        </apex:form>
    </apex:outputPanel>
</apex:page>