加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zichan.txt 13.12 KB
一键复制 编辑 原始数据 按行查看 历史
温娴 提交于 2020-01-04 23:34 . zichan 界面
//zichanAdd
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ page isELIgnored="false" %>
<%
String path = request.getContextPath();
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<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="keywords" content="keyword1,keyword2,keyword3" />
<meta http-equiv="description" content="This is my page" />
<link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
<script type="text/javascript" src="<%=path %>/My97DatePicker/WdatePicker.js"></script>
<script language="javascript">
function changeFangshi(type)
{
var fangshi = document.getElementById("fangshi");
if(type==-1)
{
document.all.fangshi.options.length = 0;
fangshi.options.add(new Option("请选择", "-1"));
}
else if(type==0)
{
document.all.fangshi.options.length = 0;
fangshi.options.add(new Option("请选择", "-1"));
fangshi.options.add(new Option("自建", "0"));
fangshi.options.add(new Option("投资", "1"));
fangshi.options.add(new Option("出租", "2"));
}
else if(type==1)
{
document.all.fangshi.options.length = 0;
fangshi.options.add(new Option("请选择", "-1"));
fangshi.options.add(new Option("报废", "0"));
fangshi.options.add(new Option("变卖", "1"));
}
}
</script>
</head>
<body leftmargin="2" topmargin="9" background='<%=path %>/img/allbg.gif'>
<form action="<%=path %>/zichan?type=zichanAdd" name="formAdd" method="post">
<table width="98%" align="center" border="0" cellpadding="4" cellspacing="1" bgcolor="#CBD8AC" style="margin-bottom:8px">
<tr bgcolor="#E7E7E7">
<td height="14" colspan="30" background="<%=path %>/img/tbg.gif">资产信息添加</td>
</tr>
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td width="25%" bgcolor="#FFFFFF" align="right">
资产类别:
</td>
<td width="75%" bgcolor="#FFFFFF" align="left">
<select name="catelog_id">
<c:forEach items="${requestScope.catelogList}" var="catelog">
<option value="${catelog.id }">${catelog.name }</option>
</c:forEach>
</select>
</td>
</tr>
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td width="25%" bgcolor="#FFFFFF" align="right">
编号:
</td>
<td width="75%" bgcolor="#FFFFFF" align="left">
<input type="text" name="bianhao" size="20"/>
</td>
</tr>
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td width="25%" bgcolor="#FFFFFF" align="right">
名称:
</td>
<td width="75%" bgcolor="#FFFFFF" align="left">
<input type="text" name="mingcheng" size="20"/>
</td>
</tr>
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td width="25%" bgcolor="#FFFFFF" align="right">
操作时间:
</td>
<td width="75%" bgcolor="#FFFFFF" align="left">
<input name="shijian" readonly="readonly" class="Wdate"
type="text" onfocus="WdatePicker({skin:'whyGreen',dateFmt:'yyyy-MM-dd'})"/>
</td>
</tr>
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td width="25%" bgcolor="#FFFFFF" align="right">
资产价值:
</td>
<td width="75%" bgcolor="#FFFFFF" align="left">
<input type="text" name="jiazhi" size="20"/>(万元)
</td>
</tr>
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td width="25%" bgcolor="#FFFFFF" align="right">
类型:
</td>
<td width="75%" bgcolor="#FFFFFF" align="left">
<select name="leixing" >
<option value="-1">请选择</option>
<option value="0">增加</option>
<option value="1">减少</option>
</select>
</td>
</tr>
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td width="25%" bgcolor="#FFFFFF" align="right">
方式:
</td>
<td width="75%" bgcolor="#FFFFFF" align="left">
<select name="fangshi">
<option value="-1">请选择</option>
<option value="0">自建</option>
<option value="1">投资</option>
<option value="2">出租</option>
</select>
</td>
</tr>
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td width="25%" bgcolor="#FFFFFF" align="right">
&nbsp;
</td>
<td width="75%" bgcolor="#FFFFFF" align="left">
<input type="submit" value="提交"/>&nbsp;
<input type="reset" value="重置"/>&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>
//zichanList(1)
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ page isELIgnored="false" %>
<%
String path = request.getContextPath();
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<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="keywords" content="keyword1,keyword2,keyword3" />
<meta http-equiv="description" content="This is my page" />
<link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
</head>
<body leftmargin="2" topmargin="2" background='<%=path %>/img/allbg.gif'>
<table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
<tr bgcolor="#E7E7E7">
<td height="14" colspan="30" background="<%=path %>/img/tbg.gif">公司资产查询</td>
</tr>
<tr align="center" bgcolor="#FAFAF1" height="22">
<td>资产类别</td>
<td>资产编号</td>
<td>资产名称</td>
<td>资产价值(万元)</td>
<td>添加时间</td>
<td>类型</td>
<td>方式</td>
</tr>
<c:forEach items="${requestScope.zichanList}" var="zichan">
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td bgcolor="#FFFFFF" align="center">
${zichan.lbmc}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.bianhao}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.mingcheng}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.jiazhi}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.shijian}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.strType}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.strFangshi}
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
//zichanList
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ page isELIgnored="false" %>
<%
String path = request.getContextPath();
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<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="keywords" content="keyword1,keyword2,keyword3" />
<meta http-equiv="description" content="This is my page" />
<link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
</head>
<body leftmargin="2" topmargin="2" background='<%=path %>/img/allbg.gif'>
<table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
<tr bgcolor="#E7E7E7">
<td height="14" colspan="30" background="<%=path %>/img/tbg.gif">公司资产查询</td>
</tr>
<tr align="center" bgcolor="#FAFAF1" height="22">
<td>资产类别</td>
<td>资产编号</td>
<td>资产名称</td>
<td>资产价值(万元)</td>
<td>添加时间</td>
<td>类型</td>
<td>方式</td>
</tr>
<c:forEach items="${requestScope.zichanList}" var="zichan">
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td bgcolor="#FFFFFF" align="center">
${zichan.lbmc}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.bianhao}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.mingcheng}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.jiazhi}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.shijian}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.strType}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.strFangshi}
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
//zichanMana
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ page isELIgnored="false" %>
<%
String path = request.getContextPath();
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<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="keywords" content="keyword1,keyword2,keyword3" />
<meta http-equiv="description" content="This is my page" />
<link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
<script language="javascript">
function zichanAdd()
{
var url="<%=path %>/admin/zichan/zichanAdd.jsp";
window.location.href=url;
}
</script>
</head>
<body leftmargin="2" topmargin="2" background='<%=path %>/img/allbg.gif'>
<table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
<tr bgcolor="#E7E7E7">
<td height="14" colspan="30" background="<%=path %>/img/tbg.gif">资产信息查看</td>
</tr>
<tr align="center" bgcolor="#FAFAF1" height="22">
<td>资产类别</td>
<td>资产编号</td>
<td>资产名称</td>
<td>资产价值(万元)</td>
<td>添加时间</td>
<td>类型</td>
<td>方式</td>
</tr>
<c:forEach items="${requestScope.zichanList}" var="zichan">
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td bgcolor="#FFFFFF" align="center">
${zichan.lbmc}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.bianhao}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.mingcheng}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.jiazhi}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.shijian}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.strType}
</td>
<td bgcolor="#FFFFFF" align="center">
${zichan.strFangshi}
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化