lihuijuan
2022-03-10 547cb5fe9bcb0996c95b65e0e93ec4d9a8a90c2e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<apex:page standardController="Consumable_order__c"  extensions="Consumable_order_AlertController" 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_Price_Apply = '{!IS_Alert_Price_Apply}';
            if(IS_Alert_Price_Apply == 'true'){
                alert('请确认是否进行价格申请!');
            }
        }
    </script>
 
    <body onload="init()">
    </body>
    
</apex:page>