|
@@ -0,0 +1,248 @@
|
|
|
|
+<%@ page contentType="text/html;charset=UTF-8" %>
|
|
|
|
+<%@ include file="/webpage/include/taglib.jsp"%>
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+ <title>知识分享-栏目列表</title>
|
|
|
|
+ <meta name="decorator" content="default"/>
|
|
|
|
+ <script type="text/javascript" src="${ctxStatic}/ckeditor/ckeditor.js"></script>
|
|
|
|
+ <script type="text/javascript">
|
|
|
|
+
|
|
|
|
+ $(document).ready(function() {
|
|
|
|
+ /*//搜索框收放
|
|
|
|
+ $('#moresee').click(function(){
|
|
|
|
+ if($('#moresees').is(':visible'))
|
|
|
|
+ {
|
|
|
|
+ $('#moresees').slideUp(0,resizeListWindow1);
|
|
|
|
+ $('#moresee i').removeClass("glyphicon glyphicon-menu-up").addClass("glyphicon glyphicon-menu-down");
|
|
|
|
+ }else{
|
|
|
|
+ $('#moresees').slideDown(0,resizeListWindow1);
|
|
|
|
+ $('#moresee i').removeClass("glyphicon glyphicon-menu-down").addClass("glyphicon glyphicon-menu-up");
|
|
|
|
+ }
|
|
|
|
+ });*/
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ function openDialog(title,url,width,height,target) {
|
|
|
|
+
|
|
|
|
+ if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {//如果是移动端,就使用自适应大小弹窗
|
|
|
|
+ width = 'auto';
|
|
|
|
+ height = 'auto';
|
|
|
|
+ } else {//如果是PC端,根据用户设置的width和height显示。
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ top.layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ area: [width, height],
|
|
|
|
+ title: title,
|
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
|
+ content: url,
|
|
|
|
+ skin: 'three-btns',
|
|
|
|
+ btn: ['提交', '关闭'],
|
|
|
|
+ btn1: function(index, layero){
|
|
|
|
+ var body = top.layer.getChildFrame('body', index);
|
|
|
|
+ var iframeWin = layero.find('iframe')[0]; //得到iframe页的窗口对象,执行iframe页的方法:iframeWin.method();
|
|
|
|
+ var inputForm = body.find('#inputForm');
|
|
|
|
+ var top_iframe;
|
|
|
|
+ if(target){
|
|
|
|
+ top_iframe = target;//如果指定了iframe,则在改frame中跳转
|
|
|
|
+ }else{
|
|
|
|
+ top_iframe = top.getActiveTab().attr("name");//获取当前active的tab的iframe
|
|
|
|
+ }
|
|
|
|
+ inputForm.attr("target",top_iframe);//表单提交成功后,从服务器返回的url在当前tab中展示
|
|
|
|
+ if(iframeWin.contentWindow.doSubmit(1) ){
|
|
|
|
+ // top.layer.close(index);//关闭对话框。
|
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ btn2: function (index) {
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ //打开对话框(查看)
|
|
|
|
+ function openDialogListView(title,url,width,height){
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){//如果是移动端,就使用自适应大小弹窗
|
|
|
|
+ width='auto';
|
|
|
|
+ height='auto';
|
|
|
|
+ }else{//如果是PC端,根据用户设置的width和height显示。
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ $.ajax({
|
|
|
|
+ async: false,
|
|
|
|
+ url: url,
|
|
|
|
+ dataType: "json",
|
|
|
|
+ success: function (data) {
|
|
|
|
+ if(data.success){
|
|
|
|
+ top.layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ skin: 'one-btn',
|
|
|
|
+ area: [width, height],
|
|
|
|
+ title: title,
|
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
|
+ content: url ,
|
|
|
|
+ btn: ['关闭'],
|
|
|
|
+ cancel: function(index){
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ function deleteInfo(title,id) {
|
|
|
|
+
|
|
|
|
+ layer.open({
|
|
|
|
+ title: title,
|
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
|
+ content: '确认要删除分享类型吗?',
|
|
|
|
+ skin: 'two-btns',
|
|
|
|
+ btn: ['确定', '取消'],
|
|
|
|
+ btn1: function(index, layero){
|
|
|
|
+ $.ajax({
|
|
|
|
+ type:"post",
|
|
|
|
+ url:"${ctx}/knowledgeSharingType/knowledgeSharingType/delete?id="+ id,
|
|
|
|
+ success:function(data){
|
|
|
|
+ if(data.success) {
|
|
|
|
+ parent.layer.msg('删除成功', {icon: 1});
|
|
|
|
+ layer.close(index);
|
|
|
|
+ window.location.reload();
|
|
|
|
+ }else {
|
|
|
|
+ parent.layer.msg(data.message, {icon: 0});
|
|
|
|
+ layer.close(index);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ btn2: function (index) {
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ </script>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+<div class="wrapper wrapper-content">
|
|
|
|
+ <sys:message content="${message}"/>
|
|
|
|
+ <div class="layui-row">
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ <div class="contentShadow layui-row" id="queryDiv">
|
|
|
|
+
|
|
|
|
+ <form:form id="searchForm" modelAttribute="knowledgeSharingTypeInfo" action="${ctx}/knowledgeSharingType/knowledgeSharingType/list" method="post" class="form-inline">
|
|
|
|
+ <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
|
|
|
+ <input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
|
|
|
+ <table:sortColumn id="orderBy" name="orderBy" value="${page.orderBy}" callback="sortOrRefresh();"/><!-- 支持排序 -->
|
|
|
|
+ <div class="commonQuery">
|
|
|
|
+ <div class="layui-item query athird">
|
|
|
|
+ <label class="layui-form-label">分享类型:</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <form:input path="value" placeholder="请输入分享类型" htmlEscape="false" class="form-control layui-input"/>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="layui-item query athird">
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="layui-item athird">
|
|
|
|
+ <div class="input-group">
|
|
|
|
+ <%--<a href="#" id="moresee"><i class="glyphicon glyphicon-menu-down"></i></a>--%>
|
|
|
|
+ <div class="layui-btn-group search-spacing">
|
|
|
|
+ <button id="searchQuery" class="layui-btn layui-btn-sm layui-bg-blue" onclick="search()">查询</button>
|
|
|
|
+ <button id="searchReset" class="layui-btn layui-btn-sm " onclick="resetSearch()">重置</button>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div style=" clear:both;"></div>
|
|
|
|
+ </div>
|
|
|
|
+ <div id="moresees" style="clear:both;display:none;">
|
|
|
|
+ <div style="clear:both;"></div>
|
|
|
|
+ </div>
|
|
|
|
+ </form:form>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ <div class="contentShadow layui-form contentDetails">
|
|
|
|
+ <div class="nav-btns">
|
|
|
|
+ <div class="layui-btn-group">
|
|
|
|
+ <shiro:hasPermission name="knowledgeSharing:knowledgeSharing:add">
|
|
|
|
+ <table:addRow label="新增分享类型" url="${ctx}/knowledgeSharingType/knowledgeSharingType/form" title="新增分享类型" height="50%;" width="50%;"></table:addRow><!-- 增加按钮 -->
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ <button class="layui-btn layui-btn-sm" data-toggle="tooltip" data-placement="left" onclick="sortOrRefresh()" title="刷新"> 刷新</button>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <table class="oa-table layui-table" id="contentTable"></table>
|
|
|
|
+
|
|
|
|
+ <!-- 分页代码 -->
|
|
|
|
+ <table:page page="${page}"></table:page>
|
|
|
|
+ <div style="clear: both;"></div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div id="changewidth"></div>
|
|
|
|
+</div>
|
|
|
|
+<script src="${ctxStatic}/layer-v2.3/layui/layui.all.js" charset="utf-8"></script>
|
|
|
|
+<script>
|
|
|
|
+ layui.use('table', function(){
|
|
|
|
+ layui.table.render({
|
|
|
|
+ limit:${ page.pageSize }
|
|
|
|
+ ,id:"checkboxTable"
|
|
|
|
+ ,elem: '#contentTable'
|
|
|
|
+ ,page: false
|
|
|
|
+ ,cols: [[
|
|
|
|
+ //{checkbox: true, fixed: true},
|
|
|
|
+ {field:'index',align:'center', width:40,title: '序号'}
|
|
|
|
+ ,{field:'value',align:'center', title: '分享类型', minWidth:150}
|
|
|
|
+ ,{field:'key',align:'center', title: '分享类型key值', width:150}
|
|
|
|
+ ,{field:'sort',align:'center', title: '排序', width:150}
|
|
|
|
+ ,{field:'createName',align:'center', title: '创建人', width:150}
|
|
|
|
+ ,{field:'createDate', align:'center',title: '创建时间', width:150}
|
|
|
|
+ ,{align:'center',title:"操作",width:150,templet:function(d){
|
|
|
|
+ ////对操作进行初始化
|
|
|
|
+ var xml = "<div class=\"layui-btn-group\">";
|
|
|
|
+ if(d.canedit != undefined && d.canedit == "1")
|
|
|
|
+ xml += "<a href=\"javascript:void(0)\" onclick=\"openDialog('修改分享类型信息', '${ctx}/knowledgeSharingType/knowledgeSharingType/form?id="+ d.id +"','50%', '50%')\" class=\"layui-btn layui-btn-xs layui-bg-green\"> 编辑</a>";
|
|
|
|
+
|
|
|
|
+ if((d.candelete != undefined && d.candelete == "1") || d.isAdmin == "1")
|
|
|
|
+ xml += "<a href=\"javascript:void(0)\" onclick=\"deleteInfo('删除', '"+d.id+"')\" class=\"layui-btn layui-btn-xs layui-bg-red\"> 删除</a>";
|
|
|
|
+ xml+="</div>"
|
|
|
|
+ return xml;
|
|
|
|
+ }}
|
|
|
|
+ ]]
|
|
|
|
+ ,data: [
|
|
|
|
+ <c:if test="${ not empty page.list}">
|
|
|
|
+ <c:forEach items="${page.list}" var="knowledgeSharingTypeInfo" varStatus="index">
|
|
|
|
+ <c:if test="${index.index != 0}">,</c:if>
|
|
|
|
+ {
|
|
|
|
+ "index":"${index.index+1}"
|
|
|
|
+ ,"id":"${knowledgeSharingTypeInfo.id}"
|
|
|
|
+ ,"value":"${knowledgeSharingTypeInfo.value}"
|
|
|
|
+ ,"key":"${knowledgeSharingTypeInfo.key}"
|
|
|
|
+ ,"sort":"${knowledgeSharingTypeInfo.sort}"
|
|
|
|
+ ,"createName":"${knowledgeSharingTypeInfo.createBy.name}"
|
|
|
|
+ ,"createDate":"<fmt:formatDate value="${knowledgeSharingTypeInfo.createDate}" pattern="yyyy-MM-dd HH:mm:ss"/>"
|
|
|
|
+ <shiro:hasPermission name="knowledgeSharing:knowledgeSharing:edit">,"canedit":<c:choose><c:when test="${fns:getUser().id == knowledgeSharingTypeInfo.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose></shiro:hasPermission>
|
|
|
|
+ <shiro:hasPermission name="knowledgeSharing:knowledgeSharing:del">,"candelete":<c:choose><c:when test="${fns:getUser().id == knowledgeSharingTypeInfo.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose></shiro:hasPermission>
|
|
|
|
+ }
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </c:if>
|
|
|
|
+ ]
|
|
|
|
+ // ,even: true
|
|
|
|
+ // ,height: 315
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ resizeListTable();
|
|
|
|
+</script>
|
|
|
|
+<script>
|
|
|
|
+ resizeListWindow1();
|
|
|
|
+ $(window).resize(function(){
|
|
|
|
+ resizeListWindow1();
|
|
|
|
+ });
|
|
|
|
+</script>
|
|
|
|
+</body>
|
|
|
|
+</html>
|