📄 check.jsp
字号:
<%@ page language="java" pageEncoding="gb2312"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<html>
<head>
<title>审核</title>
</head>
<body>
<h1>施工审核</h1>
<f:view>
<h:form>
<h:panelGrid columns="2">
<h:outputText value="名称:"></h:outputText>
<h:outputText value="#{checkBean.currentTask.user1.userName}"></h:outputText>
<h:outputText value="地址:"></h:outputText>
<h:outputText value="#{checkBean.currentTask.user1.userAddress}"></h:outputText>
<h:outputText value="联系人电话:"></h:outputText>
<h:outputText value="#{checkBean.currentTask.user1.userMobel}"></h:outputText>
<h:outputText value="施工类别:"></h:outputText>
<h:outputText value="#{checkBean.currentTask.type1.typeTitle}"></h:outputText>
<h:outputText value="施工人员:"></h:outputText>
<h:selectOneMenu value="#{checkBean.emp}">
<f:selectItems value="#{checkBean.emps}"/>
</h:selectOneMenu>
<h:outputText value="备注:"></h:outputText>
<h:inputTextarea value="#{checkBean.currentTask.constRemark}"></h:inputTextarea>
<h:commandButton value="申核通过" action="#{checkBean.passCheck}"></h:commandButton>
</h:panelGrid>
</h:form>
</f:view>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -