沙世明
2022-09-13 bfca7a84bec815da594f1d12558535ed06d2490b
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
<apex:page controller="CustomapprovalController" tabStyle="Account">
    <apex:form >
        <apex:sectionHeader title="批准请求"/>
   <apex:actionFunction name="Approval1" />
   <apex:pageBlock id="alltable" title="医院审批">
       <apex:pageBlockButtons location="bottom"> 
           <!-- <apex:commandButton value="批准" onclick="checkapp()" reRender="block"> -->
           <apex:commandButton value="批准">
                   <apex:param name="approve" value="Approve" />
           </apex:commandButton>
           <!-- <apex:commandButton value="拒绝" onclick="checkrej()" reRender="block"> -->
           <apex:commandButton value="拒绝" >
                   <apex:param name="reject" value="Reject" />
           </apex:commandButton>
           <apex:commandButton value="取消" >
                   <apex:param name="cancel" value="Cancel" />
           </apex:commandButton>
       </apex:pageBlockButtons>   
       <apex:pageBlockSection columns="1">
              <apex:pageBlockSectionItem >
               <apex:pageMessages />
           </apex:pageBlockSectionItem>
           <apex:pageBlockSectionItem >
                医院名称 <!--  <apex:outputField /> -->
           </apex:pageBlockSectionItem>
           <!-- <apex:pageBlockSectionItem >
               Lead Owner <apex:outputField value="{!objSol.Owner.Name}"/>
           </apex:pageBlockSectionItem> -->
           <apex:pageBlockSectionItem >
                确认结果(单选) <!-- 确认结果(单选) <font color="red">(必填)</font><apex:inputField id="ConResult" /> -->
           </apex:pageBlockSectionItem>
           <!-- <apex:pageBlockSectionItem >
               备注 <font color="red"></font><apex:inputField />
           </apex:pageBlockSectionItem> -->
           <apex:pageBlockSectionItem >
              评论 <font color="red"></font> <apex:inputTextArea rows="5" cols="100"/>
           </apex:pageBlockSectionItem>
       </apex:pageBlockSection>
   </apex:pageBlock>
    </apex:form>
</apex:page>