binxie
2023-06-26 1b3fb93f787b8b546a307bf063183f5295d183f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<apex:page standardController="Account"  extensions="AccountQualifyAlertController" showHeader="false" sidebar="false" action="{!init}">
    <apex:includeScript value="{!URLFOR($Resource.connection20)}"/>
    <apex:includeScript value="{!URLFOR($Resource.apex20)}"/>
    <script type="text/javascript">
        function init() {    
            var is_Alert_Qualify = '{!is_Alert_Qualify}';
            if(is_Alert_Qualify == 'true'){
                alert('医院信息发生变化,请重新申请医院资质审批!');
            }
        }
    </script>
    <body onload="init()">
    </body>
</apex:page>