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

📄 b02515501832001d139f992bfca89756

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻
字号:
<%@ page language="java" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp"%>

<html>
	<head>
		<title>My JSP 'clientList.jsp' starting page</title>
		<%@ include file="/commons/meta.jsp"%>
		<script language="javascript">
		function add(){
			window.location="${ctx}/daily.do?p=edit";
		}
	</script>
	</head>

	<body class="bodycolor" topmargin="5">

		<table class="title1">
			<tr>
				<td class="Big"><img src="${ctx }/images/notify_new.gif" align="absmiddle">
					<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>
			<form action="daily.do?p=list" method="post">
		<table cellspacing="1" class="small" align="left" cellpadding="3">

			<tr>
				<td nowrap class="TableData">
					&nbsp;&nbsp;标题名称:
				</td>
				<td nowrap class="TableData">
					<input type="text" name="title" class="SmallInput" size="20"
						maxlength="100">
				</td>

				<td nowrap class="TableData">
					&nbsp;&nbsp;发布时间:
				</td>
				<td nowrap class="TableData">
					<input type="text" name="beginTime" class="SmallInput" size="20"
						maxlength="100">
				</td>

				<td nowrap class="TableData">
					&nbsp;&nbsp;有效时间:
				</td>
				<td nowrap class="TableData">
					<input type="text" name="endTime" class="SmallInput" size="20"
						maxlength="100">
				</td>
			</tr>
			<tr>
				<td nowrap class="TableData" colspan="2">
					&nbsp;&nbsp;
					<input value="快速查询" type="submit" class="SmallButton"
						title="模糊查询" name="button">
					<input value="添加个人计划" type="button" onclick="javascript:add();"
						class="SmallButton" title="个人计划资料导入" name="button">
				</td>
			</tr>

		</table>
			</form>
		</fieldset>
		</div>
		<br>
		<br>
		<%@ include file="/commons/messages.jsp"%>
		<table class="tablestyle1">
			<c:if test="${empty dailys}">
				<%@ include file="/utility/noData.jsp"%>
			</c:if>
			<c:if test="${!empty dailys}">
			<tr class="TableHeader">
				<td align="center" width="5%">选择</td>
				<td align="center" width="20%">计划标题</td>
				<td align="center" width="30%">计划内容</td>
				<td align="center" width="10%">开始时间</td>
				<td align="center" width="10%">结束时间</td>
				<td align="center" width="10%">发布人</td>
				<td align="center" width="15%">操作</td>
			</tr>


			<c:forEach items="${dailys}" var="item">
				<tr class=TableLine1>
					<td nowrap align="center">
						<input type="checkbox" name="daily_select" value="1">
					</td>
					<td nowrap align="center">
						${item.title}
					</td>
					<td nowrap align="center">
						${item.contents}
					</td>
					<td nowrap align="center">
						${item.beginTime}
					</td>
					<td nowrap align="center">
						${item.endTime}
					</td>
					<td nowrap align="center">
						${item.user.userName}
					</td>
					<td nowrap align="center">
						<a href="${ctx}/daily.do?p=edit&id=${item.id}">编辑</a>&nbsp;
						<a href="${ctx}/daily.do?p=delete&id=${item.id}" onClick="{if(confirm('确定要删除该计划吗?')){return true;}return false;}">删除</a>
					</td>
				</tr>
			</c:forEach>
			<tr>
				<pager:pager value="pager" url="daily.do" pagerStr="pagerstruts" />
			</tr>
			</c:if>
		</table>
	</body>
</html>

⌨️ 快捷键说明

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