彭锟
2022-03-22 2ecb63062fe10bbfb6853e37a38a74dcc10291db
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>