📄 role_view.jsp
字号:
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page import="java.util.*" %>
<%@ page import="java.sql.*" %>
<%@ page import="com.ijipin.tool.*" %>
<%@ page import="com.ijipin.database.*" %>
<%@ page import="com.ijipin.system.*" %>
<%@ page import="com.ijipin.property.*" %>
<%@ include file="/userinfor.jsp" %>
<%@ include file="/share/page/page_request.jsp"%>
<%@ page import="com.ijipin.flow.*" %>
<%
////////////////////////////列表页面所必须有的公共变量
final String strSkin = "../../" + userInfor_session.getPFLJ(); //皮肤路径
final String strLevel = Template.strLevel; //本页所在的层次
final String strLink = Template.strLink_update; //本页的地址
final String strLink_action = Template.strLink_action;
final String strLink_back = Template.strLink_list;
final int iModuleID= Template.iModuleID;
//////////////iSecond_barid
//设置查询参数
String sTable = "";
String sField = "";
String sCondition = "";
int iSpace = Message.SPACE; //空格的宽度
String sWidth = Message.WIDTH; //第一个td的百分比宽度
//新建一个连接
DataConn dataConn = new DataConn();
Statement stmt = null;
ResultSet rs = null;
DataList dataList = null;
//是否可以写,如果为false,必须要取消所有的按牛
boolean canWrite = true;
if (strACTION.equals("VIEW")) {
canWrite = false;
}
////////////////获得事物类别
SWLB SWLBclass = new SWLB(dataConn);
String strSWLB = "";
strSWLB = SWLBclass.getSWLB(iSecond_barid);
///
User user = new User(dataConn);
Position position = new Position(dataConn);
Role role = new Role(dataConn);
%>
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><%=Message.COMPANY_NAME%></title>
<link href="<%=strSkin%>css.css" rel="stylesheet" type="text/css">
</head>
<%
String sJSID = Convert.toZeroStr(request.getParameter("JSID"));
int iJSID = 0;
iJSID = Integer.parseInt(sJSID);
String strZWID = role.getZWIDS(iJSID);
String strYGID = user.getYGIDS(strZWID);
String strYGXM = user.getYGXMS(strYGID);
%>
<body bgcolor="#FFFFFF" text="#000000">
<div align="center">
<p> </p>
<p>具体人员:<br>
</p>
</div>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="27%"><%=strYGXM%></td>
</tr>
</table>
<p align="center">
<input type="button" name="button" value="" class="buttonClose" onClick="javascript:window.close();">
</p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -