<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>
|