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