Files
SIPAIIS_WMS_JSSW/WebRoot/jsp/schedule/xxl_job_show.jsp

29 lines
1005 B
Plaintext
Raw Permalink Normal View History

2026-01-16 14:13:44 +08:00
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<html>
<%String contextPath = request.getContextPath();%>
<%String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath();%>
<%String serverPath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort();%>
<%-- 引入jQuery --%>
<script type="text/javascript" src="<%=contextPath%>/node_modules/jquery/dist/jquery.min.js" charset="utf-8"></script>
<script type="text/javascript" src="<%=contextPath%>/plugins/jquery-ui/jquery-ui.min.js" charset="utf-8"></script>
<head>
<title>Title</title>
<script type="text/javascript">
$(function () {
var url = 'http://localhost:8081/xxl-job-admin/jobinfo';
$('#wld').attr('src', url);
});
</script>
</head>
<body>
<iframe id="wld" src="" height="100%" width="100%" name="demo" scrolling="auto"></iframe>
</body>
</html>