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