📄 adduser.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:inputText value="#{sysUserBean.currentUser.employeeName}"></h:inputText>
<h:outputText value="用户名:"></h:outputText>
<h:inputText value="#{sysUserBean.currentUser.employeeUsername}"></h:inputText>
<h:outputText value="密码:"></h:outputText>
<h:inputText value="#{sysUserBean.currentUser.employeePassword}"></h:inputText>
<h:outputText value="部门:"></h:outputText>
<h:selectOneMenu value="#{sysUserBean.department}">
<f:selectItems value="#{sysUserBean.departs}"/>
</h:selectOneMenu>
<h:outputText value="备注:"></h:outputText>
<h:inputTextarea value="#{sysUserBean.currentUser.employeeRemark}"></h:inputTextarea>
<h:commandButton value="添加" action="#{sysUserBean.addUser}"></h:commandButton>
</h:panelGrid>
</h:form>
</f:view>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -