⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dict.jsp

📁 J2EE客户关系管理系统!!!!!!!!!!!!!!!!!!!!
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>jb-aptech毕业设计项目</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="<%=request.getContextPath()%>/css/style.css" rel="stylesheet" type="text/css">
<script type='text/javascript' src='<%=request.getContextPath()%>/dwr/engine.js'></script>
<script type='text/javascript' src='<%=request.getContextPath()%>/dwr/util.js'></script>
<script type='text/javascript' src='<%=request.getContextPath()%>/dwr/interface/Pager.js'></script>
<script type='text/javascript' src='<%=request.getContextPath()%>/dwr/interface/BasDictService.js'></script>
<script type="text/javascript" src='<%=request.getContextPath()%>/js/s1.js'></script>
</head>
<!-- 自定义分页控件的客户端js -->
  <script type='text/javascript' src='<%=request.getContextPath()%>/js/PageCtl.js'></script>
  <script>
  	var tab1 = new TablePage('tab1','TBody1', 'pgCtl', 'dict');
      //以下是可选的
      tab1.dateformat="yyyy年MM月dd日 HH时mm分ss秒"     //如果包含日期列,这里可以定义日期的显示格式
      tab1.sqlFilter=""  //查询条件
      tab1.pagesize=10;                                //每页多少行
      tab1.wait='waitCtl';                            //等待的提示
      tab1.default_callback=function over()                   //显示完成以后的回调函数
                    {
                      waitCtl.style.display = 'none';
                    };
    
    function yesno()
    {
    	
    }
           
    function reload()
     {
     	tab1.sqlFilter="";
     	if("" != $('dictType').value){
	    		 	tab1.sqlFilter +=" and dict_type like '%"+$('dictType').value+"%'";
	    		 }
	    if("" != $('dictItem').value){
	    		 	tab1.sqlFilter +=" and dict_item like '%"+$('dictItem').value+"%'";
	    		 }	
	   	if("" != $('dictValue').value){
	    		 	tab1.sqlFilter +=" and dict_value like '%"+$('dictValue').value+"%'";
	    		 }  	 
     	tab1.go(1);
     }
     
     function toadd()
     {window.location.href='dict_add.jsp';}
     
     function toedit(id)
     {window.location.href='dict_edit.jsp?id='+id;}
     
     function todel(id)
     {
     	if(window.confirm("您确定要删除"+$('template:dict_type'+id).innerHTML+"吗?"))
     	{
     		BasDictService.deleteDict(id,function(data)
     								{
     									dwr.engine.beginBatch();
      									tab1.go(tab1.pageno);
       									dwr.engine.endBatch();
     								}
     		);
     	}
     }
     
     function shose(id)
		   		{
		   		$('qq1'+id).style.background='#6ec2fd';		
				$('qq2'+id).style.background='#6ec2fd';
				$('qq3'+id).style.background='#6ec2fd';
				$('qq4'+id).style.background='#6ec2fd';
				$('qq5'+id).style.background='#6ec2fd';
				$('qq6'+id).style.background='#6ec2fd';
		   		}
		   		function go(id)
		   		{
		   		$('qq1'+id).style.background='eeeeff';
				$('qq2'+id).style.background='eeeeff';
				$('qq3'+id).style.background='eeeeff';
				$('qq4'+id).style.background='eeeeff';
				$('qq5'+id).style.background='eeeeff';
				$('qq6'+id).style.background='eeeeff';
		   		}
  </script>
<body onload="javascript:{tab1.go(1)}">
<input type="hidden" id="status" value="${sessionScope.usrFlagIndex}">
<div class="page_title">数据字典管理</div>
<div class="button_bar">
	<button class="common_button" onclick="helpq7();">帮助</button>
	<button class="common_button" onclick="toadd();">新建</button>
	<button class="common_button" onclick="reload();">查询</button>  
</div>
<table class="query_form_table">
	<tr>
		<th>类别</th>
		<td><input id="dictType"/></td>
		<th>条目</th>
		<td><input id="dictItem"/></td>
		<th>值</th>
		<td><input id="dictValue"/></td>
	</tr>
</table>
<br />


<!-- 表格的主体部分 -->
   <table class="data_list_table">
      <!-- 表头 -->      
        <th>编号</th>
		<th>类别</th>
		<th>条目</th>
		<th>值</th>
		<th>是否可编辑</th>
		<th>操作</th>    
      <!-- 表主体 -->
      <tbody id="TBody1">
	      <tr  id="template" style="display:none"  onmouseenter="shose(this.id.substring(8))" onmouseleave="go(this.id.substring(8))">
	         <td class="list_data_number" id="qq1"+template.id.substring(8)><span id="template:dict_id"/></td> 
	         <td class="list_data_text" id="qq2"+template.id.substring(8)><span id="template:dict_type"/></td>
	         <td class="list_data_text" id="qq3"+template.id.substring(8)><span id="template:dict_item"/></td>
	         <td class="list_data_text" id="qq4"+template.id.substring(8)><span id="template:dict_value"/></td>
	         <td class="list_data_text" id="qq5"+template.id.substring(8)><span id="template:dict_is_editable"/></td>
	         <td class="list_data_op" id="qq6"+template.id.substring(8)><span id="template:dict">
			<img id="edit" onclick="toedit(this.id.substring(4));" title="编辑" src="../../images/bt_edit.gif" class="op_button" />
			<img id="delete" onclick="todel(this.id.substring(6));" title="删除" src="../../images/bt_del.gif" class="op_button" />
	      	</span></td>
	      </tr>
      </tbody>
      
      <!-- 表格的分页控制部分 -->
      <tr id="reveal" style="display:none"><td align="center" colspan="8">没有找到你所需要的数据</td></tr>
		<tr>
			<th colspan="100" class="pager">
				<div align="left" id="waitCtl">正在加载...</div>
				<div id="pgCtl" class="pager">
			</th>
		</tr>
   </table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -