高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
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>