📄 activities.jsp
字号:
<%@ page pageEncoding="GBK"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
prefix="html"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!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="css/style.css" rel="stylesheet" type="text/css">
<script src="script/common.js"></script>
</head>
<body>
<div class="page_title">
客户信息管理 > 客户信息 > 交往记录
</div>
<div class="button_bar">
<button class="common_button" onclick="help('');">
帮助
</button>
<button class="common_button" onclick="to('cust/cust/activities_add.jsp');">
新建
</button>
<button class="common_button" onclick="back();">
返回
</button>
</div>
<table class="query_form_table">
<tr>
<th>
客户编号
</th>
<td>
${customer.custNo }
</td>
<th>
客户名称
</th>
<td>
${customer.custName }
</td>
</tr>
</table>
<br />
<table class="data_list_table">
<tr>
<th width="232">
时间
</th>
<th>
地点
</th>
<th>
概要
</th>
<th>
详细信息
</th>
<th>
操作
</th>
</tr>
<c:if test="${message != null}">
<tr>
<td colspan="5" align="center">
<font color="blue">*${message }*</font>
</td>
</tr>
</c:if>
<c:if test="${message == null}">
<c:forEach var="activity" items="${activity}">
<tr>
<td class="list_data_text" width="230">
${activity.atvDate }
</td>
<td class="list_data_text">
${activity.atvPlace }
</td>
<td class="list_data_text">
${activity.atvTitle }
</td>
<td class="list_data_text">
${activity.atvDesc }
</td>
<td class="list_data_op">
<img onclick="to('activity.do?op=GetActivityByActivityId&id=${activity.atvId}');" title="编辑"
src="images/bt_edit.gif" class="op_button" />
<img onclick="to('activity.do?op=Delete&activityID=${activity.atvId}');" title="删除"
src="images/bt_del.gif" class="op_button" />
</td>
</tr>
</c:forEach>
</c:if>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -