first commit
This commit is contained in:
42
WebRoot/jsp/process/dataVisualSwitchUrlOpen.jsp
Normal file
42
WebRoot/jsp/process/dataVisualSwitchUrlOpen.jsp
Normal file
@ -0,0 +1,42 @@
|
||||
<%@ page language="java" pageEncoding="UTF-8" %>
|
||||
<%@page import="com.sipai.entity.process.DataVisualContent" %>
|
||||
<%request.setAttribute("Type_Svg", DataVisualContent.Type_Svg); %>
|
||||
|
||||
<link rel="stylesheet"
|
||||
href="<%=request.getContextPath()%>/node_modules/bootstrap-switch/dist/css/bootstrap3/bootstrap-switch.min.css"/>
|
||||
<script type="text/javascript"
|
||||
src="<%=request.getContextPath()%>/node_modules/bootstrap-switch/dist/js/bootstrap-switch.min.js"
|
||||
charset="utf-8"></script>
|
||||
|
||||
<style type="text/css">
|
||||
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
$(function () {
|
||||
let switchUrl = ext.contextPath + '${param.switchUrl}';
|
||||
$('#switchUrl_iframe').attr("src", switchUrl);
|
||||
});
|
||||
|
||||
</script>
|
||||
<div class="modal fade" id="urlOpenSubModal">
|
||||
<div class="modal-dialog" style="width: ${param.urlWidth}px;height: ${param.urlHeight+50+64}px;">
|
||||
<div class="modal-content" style="width: 100%;height: 100%;">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"></h4>
|
||||
</div>
|
||||
<div class="modal-body" style="width: ${param.urlWidth}px;height: ${param.urlHeight}px;">
|
||||
<iframe id="switchUrl_iframe" scrolling="auto" allowtransparency="yes"
|
||||
style="height:100%;width:100%;border:0px;padding:0px;margin:0px;" src=""></iframe>
|
||||
</div>
|
||||
<!-- 新增界面formid强制为subForm -->
|
||||
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default pull-left" data-dismiss="modal">关闭</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.modal-content -->
|
||||
</div>
|
||||
<!-- /.modal-dialog -->
|
||||
</div>
|
||||
Reference in New Issue
Block a user