📄 top.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>客户关系管理系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body style="border-bottom:solid 1px #666;">
<TABLE style="width:100%;">
<TR >
<td ><img src="images/logo.gif"></td>
<td style="font-family:黑体;font-size:33px;font-weight:bold;"> 客户关系管理系统</td>
<td width="25%" align="right" style="font-size:12px;" valign="bottom">当前用户:${sessionScope.user.userName }
(<c:choose>
<c:when test="${sessionScope.user.userStatus==0}">系统管理员</c:when>
<c:when test="${sessionScope.user.userStatus==1}">客户经理</c:when>
<c:when test="${sessionScope.user.userStatus==2}">销售经理</c:when>
<c:when test="${sessionScope.user.userStatus==3}">高级管理员</c:when>
<c:otherwise>普通员工</c:otherwise>
</c:choose>)退出系统 </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -