123
chenjingwu
2024-04-19 450f9922c8b9435e219e9ee44ccc90df581dcd60
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>