1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <%@page import="com.hotent.core.api.util.PropertyUtil"%>
- <%@page import="org.springframework.security.authentication.AuthenticationServiceException"%>
- <%@page import="org.springframework.security.authentication.AccountExpiredException"%>
- <%@page import="org.springframework.security.authentication.DisabledException"%>
- <%@page import="org.springframework.security.authentication.LockedException"%>
- <%@page import="org.springframework.security.authentication.BadCredentialsException"%>
- <%@page import="java.util.Enumeration"%>
- <%@page pageEncoding="UTF-8"%>
- <%@page import="org.springframework.security.web.WebAttributes"%>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <c:set var="ctx" value="${pageContext.request.contextPath}" />
- <%
- //String appName=PropertyUtil.getByAlias("appName");
- String appName="长春首佳科技有限公司-协同办公管理系统";
- %>
- <!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>
- <title><%=appName%></title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <script type="text/javascript" src="${ctx}/js/jquery/jquery.js"></script>
- <script >
- function a(){
- window.location.href="${ctx}/platform/file/fileManage/download.ht?fileId=10000010910014";
- }
- function b(){
- $.ajax({
- async:true,
- cache:false,
- url:"${ctx}/platform/file/fileManage/pendingMattersList.ht",
- type:"POST",
- dataType:"json",
- success:function(arr) {
- alert(arr);
-
- }
- });
- }
- </script>
- </head>
- <body id="wrap_login">
- <a class="btn btn-mini btn-primary" onclick="a()">下载</a>
- <a class="btn btn-mini btn-primary" onclick="b()">待办</a>
- <form action="${ctx}/platform/file/fileManage/feedback.ht" name="Form" id="Form" method="post" enctype="multipart/form-data">
- <input type="file" id="file" name="file" />
- <a class="btn btn-mini btn-primary" onclick="document.getElementById('Form').submit();">导入</a>
- </form>
- </body>
- </html>
|