You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.7 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@page import="util.Info"%>
<%@page import="dao.CommDAO"%>
<%@page import="util.PageManager"%>
<!DOCTYPE html>
<html>
<head>
<title>健身房管理系统</title>
<link rel="stylesheet" type="text/css" href="qtimages/css/style.css"/>
<link rel="stylesheet" type="text/css" href="qtimages/css/mislider.css"/>
<style>
.dd a:hover{color: red;}
.dd a{ font-size: 18px;}
.header .top .logo{margin-right: 260px;}
.header{ position: fixed; top: 0; left: 0; z-index: 9999; background: #fff; width: 100%;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>
<body style="padding-top:220px;">
<%@ include file="qttop.jsp"%>
<%@ include file="bht.jsp"%>
<!--关于我们-->
<div class='index_services index'>
<h2 class='t'>器材推荐</h2>
<p class='t_en'>Service process</p>
<div class='w1200'>
<ul>
<%
int iqicaixinxi=0;
for(HashMap mapqicaixinxi:new CommDAO().select("select * from qicaixinxi order by id desc "))
{
iqicaixinxi++;
if(iqicaixinxi<=5)
{
%>
<li><a href='qicaixinxidetail.jsp?id=<%=mapqicaixinxi.get("id")%>'><img src='<%=mapqicaixinxi.get("tupian")%>' width='180' height='200'/></a><p><%=mapqicaixinxi.get("qicaimingcheng")%></p></li>
<%
}
}
%>
</ul>
</div>
</div>
<div class="index_about index">
<div class="w1200">
<h2 class="t">关于我们</h2>
<p class="t_en">about us</p>
<div class="desc">
<p> <% HashMap m1 = new CommDAO().getmaps("leibie","关于我们","dx");out.print(Info.ensubStr(m1.get("content"),185)); %></p>
</div>
</div>
</div>
<%@ include file="qtdown.jsp"%>
<%@ include file="kefutiao.jsp"%>
</body>
</html>