123
chenjingwu
2024-04-26 f21f65b61a35cd45d4885f66c76678c3b9a6d8b3
1
2
3
4
5
6
7
8
<apex:page standardController="Report__c" sidebar="false" showHeader="false" >
    <script type="text/javascript">
    var now_status = '{!Report__c.Status__c}';
    if (now_status == null || now_status == "" || now_status == "作成中") {
        alert("报告书状态为“提交”时,作为KPI统计对象,请及时登录完整并提交。");
    }
    </script>
</apex:page>