涂煌豪
2022-03-24 7a6bde159e19c304b3a512ed21171b7ce09055d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<apex:page controller="UpdateRentalApplySignatureController" showHeader="false" action="{!init}" id="allPage">
<apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
<apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
<apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/>
 
<script type="text/javascript">
    //跳转到标准页面
    function standardPage(){
        window.location.href='/{!uuid}';
    }
</script>
<style>
 
</style>
<apex:form id="allForm">
    <apex:pageMessages id="message"/>
    <apex:pageBlock id="allBlock">
        <table width="700px;">
             <tr>
                <td colspan="4">
                    <apex:pageBlockSection columns="1">
                        <apex:inputField value="{!pageData.HP_received_sign_day__c}"/>
                    </apex:pageBlockSection>
                </td>
            </tr>
             <tr>
                <td colspan="4">
                    <apex:pageBlockSection columns="1">
                        <apex:inputField value="{!pageData.HP_received_sign_rich__c}"/>
                    </apex:pageBlockSection>
                </td>
            </tr>
            <tr>
                <td colspan="4">
                    <apex:pageBlockSection columns="1">
                        <apex:inputField rendered="{!HPReceivedSignNGFlag}" value="{!pageData.HP_received_sign_NG__c}"/>
                        <apex:outputField rendered="{!!HPReceivedSignNGFlag}" value="{!pageData.HP_received_sign_NG__c}"/>
                    </apex:pageBlockSection>
                </td>
            </tr>
            <tr>
                <td colspan="4">
                    <apex:pageBlockSection columns="1">
                        <apex:inputField rendered="{!HPReceivedSignNGReasonFlag}" value="{!pageData.HP_received_sign_NG_Reason__c}"/>
                        <apex:outputField rendered="{!!HPReceivedSignNGReasonFlag}" value="{!pageData.HP_received_sign_NG_Reason__c}"/>
                    </apex:pageBlockSection>
                </td>
            </tr>
            <tr>
                <td colspan="4">
                    <apex:pageBlockSection columns="1">
                        <apex:inputField rendered="{!AssetManageConfirmFlag}" value="{!pageData.AssetManageConfirm__c}"/>
                        <apex:outputField rendered="{!!AssetManageConfirmFlag}" value="{!pageData.AssetManageConfirm__c}"/>
                    </apex:pageBlockSection>
                </td>
            </tr>
            <tr>
                <td colspan="2" align="right">
                    <apex:commandButton value="保存"
                    onclick="blockme();"
                    action="{!save}"
                    oncomplete="unblockUI();standardPage();"
                    reRender="message"/>
                </td>
                <td colspan="2" align="left">
                    <apex:commandButton value="返回"
                    onclick="standardPage();return false;"/>
                </td>
            </tr>
        </table>
    </apex:pageBlock>
</apex:form>
</apex:page>