高章伟
2022-02-18 650847118307a1c9ae0ada15b7c69bbf5792c54c
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
<apex:page Controller="OppTestController" showHeader="false" sidebar="false" id="allPage" action="{!init}" title="测试">
        <apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
        <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
        <apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/>
 
        <apex:form id="allForm">
            <apex:pageBlock id="idSearchSetProduct" title="编辑学生信息" tabStyle="Opportunity">
                <apex:pageBlockButtons location="top">
                    <apex:commandButton style="width:50px"  value="保存" />
                    <apex:commandButton style="width:50px"  value="取消" />
                </apex:pageBlockButtons>
 
                <apex:pageBlockSection title="学生信息" columns="2">
                    <apex:pageBlockSectionItem >
                        <apex:outputLabel value="姓名"/>
                        <apex:inputText value="{!dl.classType1}"/>
                    </apex:pageBlockSectionItem>
                    <apex:pageBlockSectionItem >
                        <apex:outputLabel value="年龄"/>
                        <apex:inputText value="{!dl.classType2}"/>
                    </apex:pageBlockSectionItem>
                    <apex:pageBlockSectionItem >
                        <apex:outputLabel value="性别"/>
                        <apex:inputText value="{!dl.classType3}"/>
                    </apex:pageBlockSectionItem>
                    <apex:pageBlockSectionItem >
                        <apex:outputLabel value="班级"/>
                        <apex:inputText value="{!dl.classType4}"/>
                    </apex:pageBlockSectionItem>
                    <apex:pageBlockSectionItem >
                        <apex:outputLabel value="分数"/>
                        <apex:inputText value="{!dl.classType5}"/>
                    </apex:pageBlockSectionItem>
                    <apex:pageBlockSectionItem >
                        <apex:outputLabel value="审批状态"/>
                        <apex:inputText value="{!dl.classType6}"/>
                    </apex:pageBlockSectionItem>
                    <apex:pageBlockSectionItem >
                        <apex:outputLabel value="备注"/>
                        <apex:inputText value="{!dl.classType7}"/>
                    </apex:pageBlockSectionItem>
 
            </apex:pageBlockSection>
        </apex:pageBlock>
            
        </apex:form>
 
</apex:page>