<!DOCTYPE html>
|
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml" xmlns:shiro="http://www.w3.org/1999/xhtml">
|
<head>
|
<meta charset="UTF-8"/>
|
<title th:text="'业务专题 - ' + ${systemName}"></title>
|
<link rel="shortcut icon" th:href="@{${pubzyWebRoot} + 'media/image/favicon.ico'}" />
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"/>
|
<link rel="stylesheet" th:href="@{${pubzyWebRoot} + 'BootStrap4/assets/css/style.css'}"/>
|
<link rel="stylesheet" th:href="@{${pubzyWebRoot} + 'BootStrap4/expand/css/bootstrap-extract.css'}"/>
|
<link th:href="@{${pubzyWebRoot} + 'media/css/pagination.css'}" type="text/css" rel="stylesheet"/>
|
<link th:href="@{${pubzyWebRoot} + 'ext-4.2.1.883/resources/css/ext-all-neptune.css'}" rel="stylesheet"
|
type="text/css"/>
|
<!-- 表单样式 -->
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/jquery.min.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/expand/plugins/layer/layer.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/tether.min.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/bootstrap.min.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'jqPaginator/jqpaginator.min.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'ext-4.2.1.883/ext-all.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'ext-4.2.1.883/locale/ext-lang-zh_CN.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'ext-4.2.1.883/PagingToolbar.js'}"></script>
|
<script src="/js/Extjs/ResTheme/ModuleList.js"></script>
|
<script src="/js/openresource.js"></script>
|
<script th:src="@{${pubzyWebRoot} + 'media/js/winPro.js'}"></script>
|
<style>
|
.pagination > li {
|
display: inline;
|
}
|
|
#tbSet th, td {
|
white-space: nowrap;
|
text-align: center !important;
|
}
|
|
.x-grid-view {
|
overflow: hidden !important;
|
}
|
|
.x-body{
|
overflow-x: hidden;
|
}
|
</style>
|
<script th:inline="javascript">
|
//清除
|
function Clear() {
|
document.getElementById("SearchForm").reset();
|
}
|
|
//查询
|
function Search() {
|
Ext.getCmp('gridexample').dockedItems.items[1].store.currentPage = 1;
|
ThemeStore.load();
|
}
|
|
function updateMould(id) {
|
layer.open({
|
type: 2,
|
title: "修改模块",
|
shadeClose: true,
|
area: ["900px", "600px"],
|
content: "AddResThemeModule?moduleid=" + id
|
})
|
};
|
|
function AddMould() {
|
layer.open({
|
type: 2,
|
title: "新增微件",
|
shadeClose: true,
|
area: ["900px", "600px"],
|
content: "/res/ResThemeModule/AddResThemeModule"
|
})
|
};
|
</script>
|
</head>
|
<body>
|
<div id="rapp" shiro:hasPermission="org_user_admin">
|
<input type="hidden" id="resourceid" name="resourceid" value="-1" />
|
<div>
|
<div class="panel panel-default">
|
<div class="panel-heading" style="background-color: #b1d1fd;">
|
<i class="fa fa-reorder"></i>查询区
|
</div>
|
<div class="panel-body SearchBox">
|
<form id="SearchForm">
|
<div class="row">
|
<div class="col-sm-4 DivHeight">
|
<label class="control-label">微件名称</label>
|
<div class="controls">
|
<input type="text" class="form-control" id="title" name="title"/>
|
</div>
|
</div>
|
<div class="col-sm-4 DivHeight">
|
<label class="control-label">关联上图</label>
|
<div class="controls">
|
<input type="text" class="form-control" id="maptitle" name="maptitle"/>
|
</div>
|
</div>
|
<div style="display:block;">
|
<div style="float: right;">
|
<a class="btn btn-primary-outline" onclick="Search();" style="height: 33px;"><i class="fa fa-search"></i> 查询</a>
|
<!--<a class="btn btn-primary-outline" onclick="AddMould();" style="height: 33px;margin-left: 2px;"><i class="fa fa-plus"></i> 新增</a>-->
|
</div>
|
</div>
|
</div>
|
</form>
|
</div>
|
</div>
|
<div id="grid" style="width: 100%"></div>
|
|
</div>
|
</div>
|
</body>
|
</html>
|