123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- 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"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme() + "://"
- + request.getServerName() + ":" + request.getServerPort()
- + path + "/";
- %>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <base href="<%=basePath%>">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta charset="utf-8" />
- <title>${pd.SYSNAME}</title>
- <meta name="description" content="" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
- <!-- bootstrap & fontawesome -->
- <link rel="stylesheet" href="static/ace/css/bootstrap.min.css" />
- <link rel="stylesheet" href="static/ace/css/font-awesome.css" />
- <!-- page specific plugin styles -->
- <!-- text fonts -->
- <link rel="stylesheet" href="static/ace/css/ace-fonts.css" />
- <!-- ace styles -->
- <link rel="stylesheet" href="static/ace/css/ace.css" class="ace-main-stylesheet" id="main-ace-style" />
- <!--[if lte IE 9]>
- <link rel="stylesheet" href="static/ace/css/ace-part2.css" class="ace-main-stylesheet" />
- <![endif]-->
- <!--[if lte IE 9]>
- <link rel="stylesheet" href="static/ace/css/ace-ie.css" />
- <![endif]-->
- <!-- inline styles related to this page -->
- <!-- ace settings handler -->
- <script src="static/ace/js/ace-extra.js"></script>
- <!-- HTML5shiv and Respond.js for IE8 to support HTML5 elements and media queries -->
- <!--[if lte IE 8]>
- <script src="static/ace/js/html5shiv.js"></script>
- <script src="static/ace/js/respond.js"></script>
- <![endif]-->
- <!--查看图片插件 -->
- <link rel="stylesheet" media="screen" type="text/css" href="plugins/zoomimage/css/zoomimage.css" />
- <link rel="stylesheet" media="screen" type="text/css" href="plugins/zoomimage/css/custom.css" />
- <script type="text/javascript" src="plugins/zoomimage/js/jquery.js"></script>
- <script type="text/javascript" src="plugins/zoomimage/js/eye.js"></script>
- <script type="text/javascript" src="plugins/zoomimage/js/utils.js"></script>
- <script type="text/javascript" src="plugins/zoomimage/js/zoomimage.js"></script>
- <script type="text/javascript" src="plugins/zoomimage/js/layout.js"></script>
- <script type="text/javascript" src="static/js/myjs/getTop.js"></script>
- <!--查看图片插件 -->
- </head>
- <body class="no-skin">
- <div class="main-container" id="main-container">
- <!-- /section:basics/sidebar -->
- <div class="main-content">
- <div class="main-content-inner">
- <!-- 检索 -->
- <form action="pictures/listfortc.do" method="post" name="Form" id="Form">
- <input name="xzvalue" id="xzvalue" value="" type="hidden" />
- <table style="margin-top:5px;">
- <tr>
- <td>
- <div class="nav-search">
- <span class="input-icon">
- <input autocomplete="off" class="nav-search-input" id="nav-search-input" type="text" name="keyword" value="${pd.keyword}" placeholder="这里输入关键词" />
- </span>
- </div>
- </td>
- <c:if test="${QX.cha == 1 }">
- <td style="vertical-align:top;padding-left:2px;"><a class="btn btn-light btn-xs" onclick="searchs();" title="检索"><i id="nav-search-icon" class="ace-icon fa fa-search bigger-110 nav-search-icon blue"></i></a></td>
- </c:if>
- </tr>
- </table>
- <!-- 检索 -->
- <table id="simple-table" class="table table-striped table-bordered table-hover" style="margin-top:0px;">
- <thead>
- <tr>
- <th class="center" style="width:50px;">序号</th>
- <th class="center" >图片</th>
- <th class="center" >标题</th>
- <th class="center">操作</th>
- </tr>
- </thead>
- <tbody>
- <!-- 开始循环 -->
- <c:choose>
- <c:when test="${not empty varList}">
- <c:if test="${QX.cha == 1 }">
- <c:forEach items="${varList}" var="var" varStatus="vs">
- <tr>
- <td class='center' style="width: 30px;">${page.showCount*(page.currentPage-1)+vs.index+1}</td>
- <td class="center">
- <a href="<%=basePath%>uploadFiles/uploadImgs/${var.PATH}" title="${var.TITLE}" class="bwGal"><img src="<%=basePath%>uploadFiles/uploadImgs/${var.PATH}" alt="${var.TITLE}" width="100"></a>
- </td>
- <td class="center">${var.TITLE}</td>
- <td class="center" style="width:130px;">
- <a class="btn btn-xs btn-info" title="选择" onclick="xuanTp('<%=basePath%>uploadFiles/uploadImgs/${var.PATH}');">选择 </a>
- </td>
- </tr>
-
- </c:forEach>
- </c:if>
- <c:if test="${QX.cha == 0 }">
- <tr>
- <td colspan="100" class="center">您无权查看</td>
- </tr>
- </c:if>
- </c:when>
- <c:otherwise>
- <tr class="main_info">
- <td colspan="100" class="center" >没有相关数据</td>
- </tr>
- </c:otherwise>
- </c:choose>
- </tbody>
- </table>
-
- <div class="page-header position-relative">
- <table style="width:100%;">
- <tr>
- <td style="vertical-align:top;">
- </td>
- <td style="vertical-align:top;"><div class="pagination" style="float: right;padding-top: 0px;margin-top: 0px;">${page.pageStr}</div></td>
- </tr>
- </table>
- </div>
- </form>
- <!-- /.page-content -->
- </div>
- </div>
- <!-- /.main-content -->
- <!-- 返回顶部 -->
- <a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse">
- <i class="ace-icon fa fa-angle-double-up icon-only bigger-110"></i>
- </a>
- </div>
- <!-- /.main-container -->
- <!-- basic scripts -->
- <!-- 页面底部js¨ -->
- <%@ include file="../../system/index/foot.jsp"%>
- <!-- ace scripts -->
- <script src="static/ace/js/ace/ace.js"></script>
- </body>
- <script type="text/javascript">
- $(getTop(globalThis).hangge());
-
- //检索
- function searchs(){
- getTop(globalThis).jzts();
- $("#Form").submit();
- }
-
- //选择
- function xuanTp(value){
- $("#xzvalue").val(value);
- getTop(globalThis).Dialog.close();
- }
- </script>
- <style type="text/css">
- li {list-style-type:none;}
- </style>
- <ul class="navigationTabs">
- <li><a></a></li>
- <li></li>
- </ul>
- </html>
|