yanqiu

fuck you

<component name="libraryTable">
<library name="chinapnr">
<CLASSES>
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/chinapnr.jar!/" />
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/com.hundsun.amqp.message-hs-1.0.0.jar!/" />
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/com.hundsun.mcsdk-hs-1.1.2.jar!/" />
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/com.hundsun.t2sdk-hs-1.1.13.jar!/" />
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/commons-codec-1.4.jar!/" />
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/jzsms-6.0.jar!/" />
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/kaptcha-2.3.2.jar!/" />
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/ojdbc-14.jar!/" />
<root url="jar://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib/xml-apis-1.3.02.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>
\ No newline at end of file
<component name="libraryTable">
<library name="lib">
<CLASSES>
<root url="file://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib" />
</CLASSES>
<JAVADOC />
<SOURCES />
<jarDirectory url="file://$PROJECT_DIR$/src/main/webapp/WEB-INF/lib" recursive="false" />
</library>
</component>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>
\ No newline at end of file
......@@ -235,6 +235,38 @@
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.0.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
</dependencies>
<build>
......
package com.cjs.site.action.info;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import com.cjs.site.model.user.account.UserInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mobile.device.Device;
import org.springframework.stereotype.Controller;
......@@ -17,6 +19,10 @@ import com.cjs.site.dao.pub.BannerDao;
import com.cjs.site.util.lang.JsonUtil;
import com.cjs.site.util.web.PageUtils;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* 资讯
*
......@@ -37,6 +43,7 @@ public class InfoAction {
model.addAttribute("pageRouter", "infolist");
return "/mobile/index.jsp";
}
params.put("type",0);
params = PageUtils.processPage(params);
// 托管公告、公告通知
params.put("cids", Arrays.asList(13, 24));
......@@ -47,6 +54,34 @@ public class InfoAction {
return "info/gonggao.jsp";
}
@RequestMapping("/gonggao2")
public String gonggao2(@RequestParam Map<String, Object> params, Model model, Device device, HttpServletRequest request, HttpServletResponse response) {
Object obj = request.getSession().getAttribute(UserInfo.USER);
if(obj == null) {
try {
request.getRequestDispatcher("/login").forward(request, response);
} catch (ServletException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
if (device.isMobile()) {
model.addAttribute("pageRouter", "infolist");
return "/mobile/index.jsp";
}
params.put("type",1);
params = PageUtils.processPage(params);
// 托管公告、公告通知
params.put("cids", Arrays.asList(13, 24));
params.put("_total", articleDao.searchTotal(params));
model.addAttribute("gonggao", articleDao.search(params));
model.addAttribute("cid", 24);
model.addAttribute("params", params);
return "info/gonggao2.jsp";
}
@RequestMapping("/news")
public String news(@RequestParam Map<String, Object> params, Model model) {
params = PageUtils.processPage(params);
......
......@@ -94,7 +94,8 @@ public class HomeAction {
articleParams.put("categoryId", categoryInfo.getId());
List<ArticleInfo> youqingArticles = articleDao.queryByCategoryId(articleParams);
model.addAttribute("youqingArticles", youqingArticles);
return "index.jsp";
//return "index.jsp";
return "redirect:/user/balance";
}
/**
......
......@@ -25,6 +25,7 @@
<if test="title != null and title != ''">
and title like CONCAT('%',#{title},'%')
</if>
</sql>
<!-- 目录展示 collection.jsp,article.jsp-->
......@@ -33,6 +34,9 @@
from article
inner join article_category r on article.category_id = r.id
<include refid="searchCondition"/>
<if test="type==0">
<![CDATA[and article.create_at > 20190323]]>
</if>
order by article.sort_time desc
limit #{start},#{limit}
</select>
......@@ -42,6 +46,9 @@
from article
inner join article_category r on article.category_id = r.id
<include refid="searchCondition"/>
<if test="type==0">
<![CDATA[and article.create_at > 20190323]]>
</if>
</select>
<select id="queryById" parameterType="java.lang.Integer" resultType="ArticleInfo">
......
......@@ -6,11 +6,7 @@
<div class="bottomlink">
<div class="left ">
<div class="item-new">
<p class="title">合作企业</p>
<p><a href="http://www.zhaoonline.com/">赵涌在线</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.hosane.com/">泓盛</a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="http://www.ytgrading.com/">源泰评级</a><!-- &nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.zbd8.com/">召宝贷</a></p> -->
<p><!-- <a href="/trade/article?id=87&cid=30" class="title">关于我们</a>&nbsp;&nbsp;&nbsp;&nbsp; --><a href="/trade/article?id=108&cid=31" class="title">联系我们</a>&nbsp;&nbsp;&nbsp;&nbsp;
<!-- <a href="/trade/article?id=110&cid=32" class="title">诚聘英才</a>&nbsp;&nbsp;&nbsp;&nbsp; --><a href="/trade/article?id=89&cid=33" class="title">法律声明</a></p>
<a href="/trade/article?id=108&cid=31" class="title">联系我们</a>&nbsp;&nbsp;&nbsp;&nbsp;
<!-- <p><a href="http://www.zhongyoubi.com/">中邮币</a></p> -->
</div>
<!-- <div class="item">
......
......@@ -17,7 +17,6 @@
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<div class="header_box">
<div class="sbox">
<span class="top_header_box">
<c:if test="${sessionScope.USER_INFO == null }">
<a href="${ctx }/login" class="wtr">登录</a>&nbsp;&nbsp;|&nbsp;&nbsp;
......@@ -25,7 +24,7 @@
</c:if>
<c:if test="${sessionScope.USER_INFO != null }">
<a class="wtr">欢迎你,${sessionScope.USER_INFO.client_name }</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/user/allBalance" class="wtr">进入会员中心</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/user/balance" class="wtr">进入会员中心</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/loginout" class="wtr">退出登录</a>&nbsp;&nbsp;|&nbsp;&nbsp;
</c:if>
......@@ -36,16 +35,16 @@
</div>
<div class="sbox">
<div class="menubox">
<h1><a href="${ctx }/"><img src="${ctx }/resource/images/newHomePage/logo.png" width="200"/></a></h1>
<ul id="navbar">
<li>
<a href="${ctx }/" class="headBar " id="homePage">首页</a>
</li>
<li>
<a href="${ctx }/info/gonggao" class="headBar" id="message">资讯</a>
<a href="${ctx }/info/gonggao2" class="headBar" id="message">历史资讯</a>
</li>
<li>
<a href="#" class="headBar" id="collocation">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>
<a href="${ctx }/info/gonggao" class="headBar" id="collocation">最新资讯</a>
</li>
<li>
......@@ -134,8 +133,14 @@
$("#collocation").siblings().show()
}
}else if(arr[3]=='info'){
$("#message").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#message").siblings().show()
if(arr[4].split('?')[0]=='gonggao2'){
$("#message").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#message").siblings().show()
}else{
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#collocation").siblings().show()
}
}else if(arr[3]=='user'){
if(arr[4].split('?')[0]=='entrust'){
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
......
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%
Cookie[] cookies = request.getCookies();
String userName="";
if (cookies!=null&&cookies.length > 0) {
for (int i = 0; i < cookies.length; i++) {
Cookie cookie = cookies[i];
if(cookie.getName().equals("userName")){
userName=cookie.getValue();
}
}
}
%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<div class="header_box">
<div class="sbox">
<span class="top_header_box">
<c:if test="${sessionScope.USER_INFO == null }">
<a href="${ctx }/login" class="wtr">登录</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/register" class="wtr">注册</a>&nbsp;&nbsp;|&nbsp;&nbsp;
</c:if>
<c:if test="${sessionScope.USER_INFO != null }">
<a class="wtr">欢迎你,${sessionScope.USER_INFO.client_name }</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/user/balance" class="wtr">进入会员中心</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/loginout" class="wtr">退出登录</a>&nbsp;&nbsp;|&nbsp;&nbsp;
</c:if>
<a class="kefu-line">Tel:400-969-0800</a>
</span>
</div>
</div>
<div class="sbox">
<div class="menubox">
<ul id="navbar">
<li>
<a href="${ctx }/" class="headBar " id="homePage">首页</a>
</li>
<li>
<a href="${ctx }/info/gonggao?type=0" class="headBar" id="message">资讯</a>
</li>
<li>
<a href="#" class="headBar" id="collocation">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>
</li>
<li>
<a href="#" class="headBar" id="recordList">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>
</li>
<div style="clear:both;"></div>
<!--
<li><a href="${ctx }/trade/articles?cid=13" class="red" id="collocation">托管</a>
</li>
<li><a href="${ctx }/trade/info" class="red" id="deal">交易</a>
</li>
<li><a href="${ctx }/info/gonggao" class="red" id="message">资讯</a>
</li>
<li><a href="${ctx }/help/searchArticle?categoryId=36&id=216" class="red" id="help">帮助</a>
</li>
<li><a href="${ctx }/down/toDownLoad" class="red" id="downLoad">下载</a></li> -->
</ul>
</div>
</div>
</div>
<!--登陆-->
<div id="loginModal" class="loginbox" style="display:none">
<div class="logintit">登录</div>
<a href="javascript:ajaxLogin.closeLogin()" id="loginModalClose" class="close">×</a>
<div class="logincon">
<form id="login-form2" action="${ctx }/login" method="post">
<div class="inputs">
<div class="nameyh">账号
<input id="username2" placeholder="会员号/手机号" name="username" type="text" class="input0" maxlength="18" value="<%=userName %>" />
<span class="errortip" id="tip-username2" ></span>
</div>
<div class="password">密码
<input type="password" name="password" id="password2" class="input1" maxlength="8" />
<span class="errortip" id="tip-password2"></span>
</div>
<!-- <div class="yanzheng">验证码
<input name="code" id="code2" type="text" class="input0" maxlength="4" />
<img id="imgCaptcha2" alt="验证码" style="vertical-align:middle" src=""
width="70px;" height="27px;" border="1" id="validaCode" />
<a href="javascript:changeCaptcha2()" class="blues">看不清,换一张</a>
<span class="errortip" id="tip-code2"></span>
</div> -->
<div class="xieyi"><input type="checkbox" checked="checked" id="login_agree" /><a target="view_window" href="https://www.zhao.com/trade/article?id=96&cid=9">我已认真阅读并同意遵守《赵涌牛服务协议》 </a>
<span class="errortip" id="tip-login-agree" ></span>
</div>
</div>
<div class="loginenter">
<div class="juli"><label><input name="remberme" type="checkbox" value="remberme" id="remberme"
<%if(!"".equals(userName)) {%>checked="checked" <%} %>
/> &nbsp;记住会员号</label></div>
<a href="#" id="ajaxLogin" class="btnw loginbtn">登录</a>
<div class="xiaozi">还不是赵涌牛会员?<a href="${ctx }/register" class="blues">立即注册</a></div>
</div>
</form>
</div>
</div>
<script type="text/javascript">
$(function(){
var url=window.location.href;
var arr= url.split('/');
if(arr[3]==''){
$("#homePage").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#homePage").siblings().show()
}else if(arr[3]=='entrust'){
if(arr[4]=='list'||arr[4]=='data'||arr[4].split('?')[0]=='info'){
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#collocation").siblings().show()
}else if(arr[4]=='record' ){
$("#recordList").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#recordList").siblings().show()
}else{
$("#deal").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#deal").siblings().show()
}
}else if(arr[3]=='trade'){
if(arr[4].split('?')[0]=='article'){
$("#message").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#message").siblings().show()
}else{
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#collocation").siblings().show()
}
}else if(arr[3]=='info'){
$("#message").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#message").siblings().show()
}else if(arr[3]=='user'){
if(arr[4].split('?')[0]=='entrust'){
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#collocation").siblings().show()
}else if(arr[4].split('?')[0]=='attention'){
$("#deal").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#deal").siblings().show()
}
}else if(arr[3]=='ec'){
$("#deal").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#deal").siblings().show()
}
})
</script>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%
Cookie[] cookies = request.getCookies();
String userName="";
if (cookies!=null&&cookies.length > 0) {
for (int i = 0; i < cookies.length; i++) {
Cookie cookie = cookies[i];
if(cookie.getName().equals("userName")){
userName=cookie.getValue();
}
}
}
%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<div class="header_box">
<div class="sbox">
<span class="top_header_box">
<c:if test="${sessionScope.USER_INFO == null }">
<a href="${ctx }/login" class="wtr">登录</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/register" class="wtr">注册</a>&nbsp;&nbsp;|&nbsp;&nbsp;
</c:if>
<c:if test="${sessionScope.USER_INFO != null }">
<a class="wtr">欢迎你,${sessionScope.USER_INFO.client_name }</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/user/balance" class="wtr">进入会员中心</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="${ctx }/loginout" class="wtr">退出登录</a>&nbsp;&nbsp;|&nbsp;&nbsp;
</c:if>
<a class="kefu-line">Tel:400-969-0800</a>
</span>
</div>
</div>
<div class="sbox">
<div class="menubox">
<ul id="navbar">
<%-- <li>
<a href="${ctx }/" class="headBar " id="homePage">首页</a>
</li>
--%>
<li>
<a href="#" class="headBar" id="recordList">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>
</li>
<div style="clear:both;"></div>
<!--
<li><a href="${ctx }/trade/articles?cid=13" class="red" id="collocation">托管</a>
</li>
<li><a href="${ctx }/trade/info" class="red" id="deal">交易</a>
</li>
<li><a href="${ctx }/info/gonggao" class="red" id="message">资讯</a>
</li>
<li><a href="${ctx }/help/searchArticle?categoryId=36&id=216" class="red" id="help">帮助</a>
</li>
<li><a href="${ctx }/down/toDownLoad" class="red" id="downLoad">下载</a></li> -->
</ul>
</div>
</div>
</div>
<!--登陆-->
<div id="loginModal" class="loginbox" style="display:none">
<div class="logintit">登录</div>
<a href="javascript:ajaxLogin.closeLogin()" id="loginModalClose" class="close">×</a>
<div class="logincon">
<form id="login-form2" action="${ctx }/login" method="post">
<div class="inputs">
<div class="nameyh">账号
<input id="username2" placeholder="会员号/手机号" name="username" type="text" class="input0" maxlength="18" value="<%=userName %>" />
<span class="errortip" id="tip-username2" ></span>
</div>
<div class="password">密码
<input type="password" name="password" id="password2" class="input1" maxlength="8" />
<span class="errortip" id="tip-password2"></span>
</div>
<!-- <div class="yanzheng">验证码
<input name="code" id="code2" type="text" class="input0" maxlength="4" />
<img id="imgCaptcha2" alt="验证码" style="vertical-align:middle" src=""
width="70px;" height="27px;" border="1" id="validaCode" />
<a href="javascript:changeCaptcha2()" class="blues">看不清,换一张</a>
<span class="errortip" id="tip-code2"></span>
</div> -->
<div class="xieyi"><input type="checkbox" checked="checked" id="login_agree" /><a target="view_window" href="https://www.zhao.com/trade/article?id=96&cid=9">我已认真阅读并同意遵守《赵涌牛服务协议》 </a>
<span class="errortip" id="tip-login-agree" ></span>
</div>
</div>
<div class="loginenter">
<div class="juli"><label><input name="remberme" type="checkbox" value="remberme" id="remberme"
<%if(!"".equals(userName)) {%>checked="checked" <%} %>
/> &nbsp;记住会员号</label></div>
<a href="#" id="ajaxLogin" class="btnw loginbtn">登录</a>
<div class="xiaozi">还不是赵涌牛会员?<a href="${ctx }/register" class="blues">立即注册</a></div>
</div>
</form>
</div>
</div>
<script type="text/javascript">
$(function(){
var url=window.location.href;
var arr= url.split('/');
if(arr[3]==''){
$("#homePage").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#homePage").siblings().show()
}else if(arr[3]=='entrust'){
if(arr[4]=='list'||arr[4]=='data'||arr[4].split('?')[0]=='info'){
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#collocation").siblings().show()
}else if(arr[4]=='record' ){
$("#recordList").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#recordList").siblings().show()
}else{
$("#deal").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#deal").siblings().show()
}
}else if(arr[3]=='trade'){
if(arr[4].split('?')[0]=='article'){
$("#message").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#message").siblings().show()
}else{
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#collocation").siblings().show()
}
}else if(arr[3]=='info'){
if(arr[4].split('?')[0]=='gonggao2'){
$("#message").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#message").siblings().show()
}else{
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#collocation").siblings().show()
}
}else if(arr[3]=='user'){
if(arr[4].split('?')[0]=='entrust'){
$("#collocation").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#collocation").siblings().show()
}else if(arr[4].split('?')[0]=='attention'){
$("#deal").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#deal").siblings().show()
}
}else if(arr[3]=='ec'){
$("#deal").addClass("headBar-seleced").siblings().removeClass("headBar-seleced");
$("#deal").siblings().show()
}
})
</script>
\ No newline at end of file
......@@ -24,13 +24,12 @@
</head>
<body>
<jsp:include page="${ctx}/view/common/header.jsp" />
<jsp:include page="${ctx}/view/common/header2.jsp" />
<div class="bigbox">
<h2>资讯</h2>
<%--<h2>资讯</h2>--%>
<div class="crossline"></div>
<ul class="tab">
<li class="selected"><a href="${ctx }/info/gonggao">公告通知</a></li>
<li><a href="${ctx }/info/news">新闻动态</a></li>
</ul>
<div class="clear"></div>
<div id="notice" class="tglist">
......
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!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>
<jsp:include page="${ctx }/view/common/meta.jsp" />
<link href="${ctx }/resource/css/detail.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/entrust.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/js/utils/page/page.css" rel="stylesheet" type="text/css" />
<script src="${ctx}/resource/js/utils/page/query.js"></script>
<script src="${ctx}/resource/js/utils/page/page.js"></script>
<script type="text/javascript">
$(function() {
$('#pageToolbar').Paging({pagesize: '${params._limit }', count: '${params._total}',
toolbar:true, current: Number('${params._page}'), callback:function(page, size, count) {
window.location.href = '${ctx }/info/gonggao?_page=' + page + '&_limit=' + size;
}});
});
$("#message").css("color","#f00");
</script>
</head>
<body>
<jsp:include page="${ctx}/view/common/header2.jsp" />
<div class="bigbox">
<%--<h2>资讯</h2>--%>
<div class="crossline"></div>
<ul class="tab">
<li class="selected"><a href="${ctx }/info/gonggao2">公告通知</a></li>
</ul>
<div class="clear"></div>
<div id="notice" class="tglist">
<ul>
<c:forEach items="${gonggao}" var="gg">
<li>
<a href="/trade/article?id=${gg.id}&cid=${cid}"> ${gg.title}
<span><fmt:formatDate value="${gg.sortTime}" pattern="yyyy-MM-dd" /></span></a>
</li>
</c:forEach>
</ul>
</div>
<div id="pageToolbar"></div>
<div class="clear"></div>
</div>
<jsp:include page="${ctx}/view/common/bottom.jsp" />
</body>
</html>
\ No newline at end of file
......@@ -28,7 +28,7 @@
</script>
</head>
<body>
<jsp:include page="${ctx }/view/common/header.jsp" />
<jsp:include page="${ctx }/view/common/header1.jsp" />
<div class="loginbox">
<div class="logintit">登录</div>
......@@ -62,10 +62,6 @@
checked="checked" <%}%> id="remberme" /> &nbsp;记住会员号</label>
</div>
<a href="#" id="doLogin" class="btnw loginbtn">登录</a>
<div class="xiaozi">
还不是赵涌牛会员?<a href="${ctx }/register" class="blues">立即注册</a> &nbsp;&nbsp;&nbsp;
<a href="${ctx }/resetPassword" class="blues">找回密码</a>
</div>
</div>
<input type="hidden" name="referer" value="${referer }" />
</form>
......