📄 80fdb93b912b001d10dcc9e30c9e2239
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<html>
<head>
<title>${CompanyName }${ProjectName }</title>
<%@ include file="/commons/meta.jsp" %>
</head>
<body class="bodycolor" topmargin="5">
<table class="title1">
<tr>
<td class="Big"><span class="big3"> 权限设置</span><br>
</td>
</tr>
</table>
<br>
<div align="left">
<fieldset style="width:95%;padding-bottom:5px;">
<legend class="small" align=left>
<b> 快捷操作 </b>
</legend>
<table cellspacing="1" class="small" align="left" cellpadding="3">
<tr>
<html:form action="set1.do" method="post" >
<html:hidden property="p" value="list" />
<td nowrap class="TableData"> 客户类型:
<html:text property="clientType" styleClass="SmallInput" size="15" maxlength="100" />
</td>
<td nowrap class="TableData" colspan="2">
<html:submit styleClass="SmallButton" title="模糊查询">快速查询</html:submit>
<input type="button" value="添加类型" title="类型导入" onClick="location.href='${ctx}/system/setForm.jsp'" class="SmallButton">
</td>
</html:form>
</tr>
<tr>
<html:form action="set2.do" method="post" >
<html:hidden property="p" value="list" />
<td nowrap class="TableData"> 产品类型:
<html:text property="productionType" styleClass="SmallInput" size="15" maxlength="100" />
</td>
<td nowrap class="TableData" colspan="2">
<html:submit styleClass="SmallButton" title="模糊查询">快速查询</html:submit>
<input type="button" value="添加类型" title="类型导入" onClick="location.href='${ctx}/system/setForm.jsp'" class="SmallButton">
</td>
</html:form>
</tr>
<tr>
<html:form action="set3.do" method="post" >
<html:hidden property="p" value="list" />
<td nowrap class="TableData"> 服务类型:
<html:text property="serviceType" styleClass="SmallInput" size="15" maxlength="100" />
</td>
<td nowrap class="TableData" colspan="2">
<html:submit styleClass="SmallButton" title="模糊查询">快速查询</html:submit>
<input type="button" value="添加类型" title="类型导入" onClick="location.href='${ctx}/system/setForm.jsp'" class="SmallButton">
</td>
</html:form>
</tr>
</table>
</fieldset>
</div>
<br>
<c:if test="${empty clientTypes }">
<%@ include file="/utility/noData.jsp" %>
</c:if>
<!-- 显示数据信息 -->
<c:if test="${! empty clientTypes }">
<table class="tablestyle1">
<tr class="TableHeader">
<td nowrap width="5%" align="center">选择</td>
<td nowrap width="20%" align="center">客户类型</td>
<td nowrap width="20%" align="center">操作</td>
</tr>
<c:forEach items="${clientTypes}" var="item">
<tr class="TableLine1">
<td> <input type="checkbox" name="email_select" value="1" onClick="check_one(self);"></td>
<td nowrap align="center">${item.name }</td>
<td nowrap align="center">
<a href="${ctx}/dept.do?p=edit&id=${item.id}">编辑</a> |
<a href="${ctx}/dept.do?p=delete&id=${item.id}" onClick="{if(confirm('确定要删除该客户类型吗?')){return true;}return false;}">删除</a> |
</td>
</tr>
</c:forEach>
<tr class="TableControl">
<td colspan="6">
<input type="checkbox" name="allbox" id="allbox_for" onClick="check_all();">
<label for="allbox_for">全选</label>
<input type="button" value="批量删除" class="SmallButton" onClick="delete_mail();" title="删除所选联系人">
</td>
</tr>
</table>
</c:if>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -