|
|
@@ -0,0 +1,684 @@
|
|
|
+<%@ 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">
|
|
|
+
|
|
|
+ $(function () {
|
|
|
+ $(".btn btn-white btn-sm").bind("click",function () {
|
|
|
+
|
|
|
+ })
|
|
|
+ });
|
|
|
+
|
|
|
+ $(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");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ laydate.render({
|
|
|
+ elem: '#createStartDate', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
|
|
+ event: 'focus', //响应事件。如果没有传入event,则按照默认的click
|
|
|
+ type : 'date'
|
|
|
+ });
|
|
|
+ laydate.render({
|
|
|
+ elem: '#createEndDate', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
|
|
+ event: 'focus', //响应事件。如果没有传入event,则按照默认的click
|
|
|
+ type : 'date'
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ function openDialog(title,url,width,height,target) {
|
|
|
+ var type = '${type}'
|
|
|
+ // 👇 这里加判断:type 为空就提示,并且直接返回,不打开弹窗
|
|
|
+ if(!type || type == null || type == ''){
|
|
|
+ top.layer.msg('请先选择左侧需要添加帖子的论坛', {icon: 7, time: 2000});
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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: 'two-btns',
|
|
|
+ btn: ['提交', '关闭'],
|
|
|
+ yes: 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
|
|
|
+ }
|
|
|
+ },
|
|
|
+ cancel: function (index) {
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ function openDialogView(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: 'two-btns',
|
|
|
+ btn: [ '关闭'],
|
|
|
+
|
|
|
+ cancel: function (index) {
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ function openDialogAdmin(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 openDialogre(title,url,width,height,target,buttons) {
|
|
|
+
|
|
|
+ if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {//如果是移动端,就使用自适应大小弹窗
|
|
|
+ width = 'auto';
|
|
|
+ height = 'auto';
|
|
|
+ } else {//如果是PC端,根据用户设置的width和height显示。
|
|
|
+
|
|
|
+ }
|
|
|
+ var split = buttons.split(",");
|
|
|
+ top.layer.open({
|
|
|
+ type: 2,
|
|
|
+ area: [width, height],
|
|
|
+ title: title,
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
+ skin: 'three-btns',
|
|
|
+ content: url,
|
|
|
+ btn: split,
|
|
|
+ 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,layero){
|
|
|
+ if(split.length==2){return}
|
|
|
+ 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(2) ){
|
|
|
+ // top.layer.close(index);//关闭对话框。
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
+ }else {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ btn3: function (index) {
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ function openDialogreModify(title,url,id,width,height,target,buttons) {
|
|
|
+
|
|
|
+ if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {//如果是移动端,就使用自适应大小弹窗
|
|
|
+ width = 'auto';
|
|
|
+ height = 'auto';
|
|
|
+ } else {//如果是PC端,根据用户设置的width和height显示。
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ $.ajax({
|
|
|
+ async: false,
|
|
|
+ url: "${ctx}/forum/forum/getForum?id="+id,
|
|
|
+ dataType: "json",
|
|
|
+ success: function (data) {
|
|
|
+ if(data.success){
|
|
|
+ var split = buttons.split(",");
|
|
|
+ top.layer.open({
|
|
|
+ type: 2,
|
|
|
+ area: [width, height],
|
|
|
+ title: title,
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
+ skin: 'three-btns',
|
|
|
+ content: url,
|
|
|
+ btn: split,
|
|
|
+ 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,layero){
|
|
|
+ if(split.length==2){return}
|
|
|
+ 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(2) ){
|
|
|
+ // top.layer.close(index);//关闭对话框。
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
+ }else {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ btn3: function (index) {
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }else{
|
|
|
+ top.layer.msg("该帖子信息已删除!", {icon: 0});
|
|
|
+ window.location.reload();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //打开对话框(查看)
|
|
|
+ function openDialogListView(title,url,id,width,height){
|
|
|
+
|
|
|
+
|
|
|
+ if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){//如果是移动端,就使用自适应大小弹窗
|
|
|
+ width='auto';
|
|
|
+ height='auto';
|
|
|
+ }else{//如果是PC端,根据用户设置的width和height显示。
|
|
|
+
|
|
|
+ }
|
|
|
+ $.ajax({
|
|
|
+ async: false,
|
|
|
+ url: "${ctx}/forum/forum/getForum?id="+id,
|
|
|
+ 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){
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }else{
|
|
|
+ top.layer.msg("该帖子信息已删除!", {icon: 0});
|
|
|
+ window.location.reload();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <script>
|
|
|
+
|
|
|
+ function notifyDialogre(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,
|
|
|
+ skin:"three-btns",
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
+ content: url ,
|
|
|
+ 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,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(2) ){
|
|
|
+ top.layer.close(index);//关闭对话框。
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+ },
|
|
|
+ btn3: function(index){
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ function openDiscussionUserDialogViewPre(title,url,width,height,type){
|
|
|
+
|
|
|
+ // 👇 这里加判断:type 为空就提示,并且直接返回,不打开弹窗
|
|
|
+ if(!type || type == null || type == ''){
|
|
|
+ top.layer.msg('请先选择左侧需要添加人员的论坛', {icon: 7, time: 2000});
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 ,
|
|
|
+ btn: ['关闭'],
|
|
|
+ btn1: function(index){
|
|
|
+ top.layer.close(index);
|
|
|
+ $.ajax({
|
|
|
+ type:'post',
|
|
|
+ url:realPath + '/a/previewController/deleteUrl',
|
|
|
+ success:function(data){
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ end:function(){
|
|
|
+ $.ajax({
|
|
|
+ type:'post',
|
|
|
+ url:realPath + '/a/previewController/deleteUrl',
|
|
|
+ success:function(data){
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ function sortOrRefresh(){//刷新或者排序,页码不清零
|
|
|
+
|
|
|
+ $("#searchForm").submit();
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 列表里点击【申请加入】按钮(专用方法)
|
|
|
+ function joinForumFromList(forumDiscussionId, forumName) {
|
|
|
+ layui.use(['layer'], function(){
|
|
|
+ var layer = layui.layer;
|
|
|
+
|
|
|
+ // 确认弹窗
|
|
|
+ layer.confirm(
|
|
|
+ '<div style="color:#333 !important; font-size:14px;">确定要加入论坛【'+ forumName +'】吗?</div>',
|
|
|
+ {
|
|
|
+ icon: 3,
|
|
|
+ title: '加入确认',
|
|
|
+ success: function(layero){
|
|
|
+ layero.find('.layui-layer-content').css({
|
|
|
+ 'color':'#333',
|
|
|
+ 'background-color':'#fff'
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ function(index){
|
|
|
+ // AJAX 请求加入论坛
|
|
|
+ $.ajax({
|
|
|
+ url: '${ctx}/forum/forum/joinForum',
|
|
|
+ type: 'post',
|
|
|
+ data: {
|
|
|
+ forumDiscussionId: forumDiscussionId // 传给后端
|
|
|
+ },
|
|
|
+ dataType: 'json',
|
|
|
+ beforeSend: function(){
|
|
|
+ layer.load(1, {shade: 0.1});
|
|
|
+ },
|
|
|
+ success: function(res){
|
|
|
+ layer.closeAll('loading');
|
|
|
+ // 根据后端返回的 MAP 提示
|
|
|
+ if(res.code == 0){
|
|
|
+ layer.msg('已提交加入申请,需要论坛发起人审核同意', {icon:1});
|
|
|
+ // 可选:刷新左侧树
|
|
|
+ try {
|
|
|
+ var currentTab = $(".tab-item.active").data("tab");
|
|
|
+ refreshTree(currentTab);
|
|
|
+ } catch (e) {}
|
|
|
+ } else {
|
|
|
+ layer.msg(res.msg || '申请加入失败', {icon:2});
|
|
|
+ }
|
|
|
+ },
|
|
|
+ error: function(){
|
|
|
+ layer.closeAll('loading');
|
|
|
+ layer.msg('网络异常,请重试', {icon:2});
|
|
|
+ }
|
|
|
+ });
|
|
|
+ layer.close(index);
|
|
|
+ }
|
|
|
+ );
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ </script>
|
|
|
+ <style>
|
|
|
+ body{
|
|
|
+ background-color:transparent;
|
|
|
+ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#26FFFFFF, endColorstr=#26FFFFFF);
|
|
|
+ color:#ffffff;
|
|
|
+ background-color:rgba(255,255,255,0);
|
|
|
+ height:100%;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</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="forum" action="${ctx}/forum/forum/list?tabType=${tabType}" 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}"/>
|
|
|
+<%-- <input id="toflag" name="toflag" type="hidden" value="1"/>--%>
|
|
|
+ <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="title" htmlEscape="false" maxlength="200" class=" form-control layui-input" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="layui-item query athird">
|
|
|
+ <label class="layui-form-label">帖子内容:</label>
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
+ <form:input path="content" htmlEscape="false" maxlength="200" class=" form-control layui-input"/>
|
|
|
+ </div>
|
|
|
+ </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 class="layui-item query athird">
|
|
|
+ <label class="layui-form-label">创建日期:</label>
|
|
|
+ <div class="layui-input-block readOnlyFFF">
|
|
|
+ <input id="createStartDate" name="createStartDate" type="text" readonly="readonly" maxlength="20" class="laydate-icondate form-control layer-date layui-input laydate-icon query-group"
|
|
|
+ value="<fmt:formatDate value="${forum.createStartDate}" pattern="yyyy-MM-dd"/>"/>
|
|
|
+ </input>
|
|
|
+ <span class="group-sep">-</span>
|
|
|
+ <input id="createEndDate" name="createEndDate" type="text" readonly="readonly" maxlength="20" class="laydate-icondate form-control layer-date layui-input laydate-icon query-group"
|
|
|
+ value="<fmt:formatDate value="${forum.createEndDate}" pattern="yyyy-MM-dd"/>"/>
|
|
|
+ </input>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="layui-item query athird">
|
|
|
+ <label class="layui-form-label">创建人:</label>
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
+ <form:input path="createBy.name" htmlEscape="false" maxlength="200" class=" form-control layui-input"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ <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="forum:add">
|
|
|
+ <c:if test="${tabType == 2 || tabType == 1}">
|
|
|
+ <%--此处添加一个添加成员的弹出框--%>
|
|
|
+ <table:addRow label="新增" url="${ctx}/forum/forum/form?type=${type}&tabType=${tabType}" title="通知" height="95%;" width="95%;"></table:addRow><!-- 增加按钮 -->
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${tabType == 2}">
|
|
|
+ <%--此处添加一个添加成员的弹出框--%>
|
|
|
+ <a href="javascript:void(0)" onclick="openDiscussionUserDialogViewPre('论坛成员管理', '${ctx}/forum/forum/formDiscussionUser?id=${type}&type=${type}','95%', '95%','${type}')" class="layui-btn layui-btn-sm layui-btn-orange" > 添加成员</a>
|
|
|
+ </c:if>
|
|
|
+ </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 }
|
|
|
+ ,elem: '#contentTable'
|
|
|
+ ,page: false
|
|
|
+ ,cols: [[
|
|
|
+ // {checkbox: true, fixed: true},
|
|
|
+ {field:'index',align:'center', width:40,title: '序号'}
|
|
|
+ ,{field:'title',align:'center', title: '标题', minWidth:150,templet:function(d){
|
|
|
+ var tabType = ${empty tabType ? '' : tabType};
|
|
|
+ var xml = "";
|
|
|
+ if(tabType === 3){
|
|
|
+ xml = "<span title='"+ d.title +"'>" + d.title + "</span>";
|
|
|
+ }else{
|
|
|
+ xml = "<a class=\"attention-info\" href=\"javascript:void(0)\" onclick=\"openDialogListView('查看帖子', '${ctx}/forum/forum/form?id=" + d.id + "&view=view','" + d.id + "','95%','95%')\">" +
|
|
|
+ "<span title=" + d.title + ">" + d.title + "</span></a>";
|
|
|
+ }
|
|
|
+ return xml;
|
|
|
+ }}
|
|
|
+ ,{field:'content',align:'center', title: '内容', minWidth:200,templet:function(d){
|
|
|
+ return "<span title='"+ d.content +"'>" + d.content + "</span>";
|
|
|
+ }}
|
|
|
+ ,{field:'forumDiscussionName', align:'center',title: '所属论坛', width:160}
|
|
|
+ ,{field:'createBy', align:'center',title: '创建人', width:80,templet:function(d){
|
|
|
+ return "<span title='"+ d.createBy +"'>" + d.createBy + "</span>";
|
|
|
+ }}
|
|
|
+ ,{field:'tmdcreateDate', align:'center',title: '创建时间',width:150,templet:function(d){
|
|
|
+ return "<span title='"+ d.createDate +"'>" + d.tmdcreateDate + "</span>";
|
|
|
+ }}
|
|
|
+ ,{align:'center',title:"操作",width:130,templet:function(d){
|
|
|
+ ////对操作进行初始化
|
|
|
+ var xml = "<div class=\"layui-btn-group\">";
|
|
|
+ var tabType = ${empty tabType ? '' : tabType};
|
|
|
+
|
|
|
+ if(tabType === 2 || tabType === 1){
|
|
|
+ if(d.canedit != undefined && d.canedit == "1"){
|
|
|
+ xml += "<a href=\"javascript:void(0)\" onclick=\"openDialog('修改帖子', '${ctx}/forum/forum/form?id="+ d.id +"','95%', '95%')\" class=\"layui-btn layui-btn-xs layui-bg-green\"> 修改</a>";
|
|
|
+ xml +="<a href=\"${ctx}/forum/forum/logicDelete?id=" + d.id+"\" onclick=\"return confirmx('确认要删除该帖子吗?', this.href)\" class=\"layui-btn layui-btn-xs layui-bg-red\"> 删除</a>";
|
|
|
+ }else{
|
|
|
+ xml += "<a href=\"javascript:void(0)\" onclick=\"openDialogView('查看帖子', '${ctx}/forum/forum/form?id=" + d.id + "&view=view','95%', '95%')\" class=\"layui-btn layui-btn-xs \"> 详情</a>";
|
|
|
+ }
|
|
|
+ if(d.flagAdmin != undefined && d.flagAdmin == "1")
|
|
|
+ xml += "<a href=\"javascript:void(0)\" onclick=\"openDialogAdmin('修改帖子', '${ctx}/forum/forum/adminForm?id="+ d.id +"','95%', '95%')\" class=\"layui-btn layui-btn-xs layui-bg-green\"> 修改</a>";
|
|
|
+
|
|
|
+ }else if(tabType === 1){
|
|
|
+
|
|
|
+ }else if(tabType === 3){
|
|
|
+
|
|
|
+ xml +="<a href=\"javascript:;\" onclick=\"joinForumFromList('"+d.forumDiscussionId+"','"+d.forumDiscussionName+"')\" class=\"layui-btn layui-btn-xs\">申请加入</a>";
|
|
|
+
|
|
|
+ }
|
|
|
+ xml+="</div>"
|
|
|
+ return xml;
|
|
|
+ }}
|
|
|
+ ]]
|
|
|
+ ,data: [
|
|
|
+ <c:if test="${ not empty page.list}">
|
|
|
+ <c:forEach items="${page.list}" var="forum" varStatus="index">
|
|
|
+ <c:if test="${index.index != 0}">,</c:if>
|
|
|
+ {
|
|
|
+ "index":"${index.index+1}"
|
|
|
+ ,"id":"${forum.id}"
|
|
|
+ ,"type":"${forum.type}"
|
|
|
+ ,"number":"${forum.number}"
|
|
|
+ ,"forumDiscussionName":"${forum.forumDiscussionName}"
|
|
|
+ ,"forumDiscussionId":"${forum.forumDiscussionId}"
|
|
|
+ ,"title":"<c:out value="${forum.title}" escapeXml="true"/>"
|
|
|
+ ,"type":"${fns:getMainDictLabel(forum.type, 'oa_notify_type', '')}"
|
|
|
+ ,"content":"<c:out value="${forum.content}" escapeXml="true"/>"
|
|
|
+ ,"startDate":"<fmt:formatDate value="${forum.startDate}" pattern="yyyy-MM-dd HH:mm:ss"/>"
|
|
|
+ ,"endDate":"<fmt:formatDate value="${forum.endDate}" pattern="yyyy-MM-dd HH:mm:ss"/>"
|
|
|
+ ,"vtatus":"${forum.readNum} / ${forum.readNum + forum.unReadNum}"
|
|
|
+ ,"createBy":"${forum.createBy.name}"
|
|
|
+ ,"createDate":"<fmt:formatDate value="${forum.createDate}" pattern="yyyy-MM-dd HH:mm:ss"/>"
|
|
|
+ ,"tmdcreateDate":"<fmt:formatDate value="${forum.createDate}" pattern="yyyy-MM-dd"/>"
|
|
|
+ ,"procId":"${forum.processInstanceId}"
|
|
|
+ ,"referenceNumber":"${forum.referenceNumber}"
|
|
|
+ ,"notifyFlag":"${forum.notifyFlag}"
|
|
|
+ ,"notifyId":"${forum.notifyId}"
|
|
|
+
|
|
|
+ ,"canedit": <c:choose><c:when test="${fns:getUser().id == forum.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
+ , "candelete": <c:choose><c:when test="${fns:getUser().id == forum.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
+
|
|
|
+ }
|
|
|
+ </c:forEach>
|
|
|
+ </c:if>
|
|
|
+ ]
|
|
|
+ // ,even: true
|
|
|
+ // ,height: 315
|
|
|
+ });
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
+ resizeListTable();
|
|
|
+</script>
|
|
|
+<script>
|
|
|
+ resizeListWindow1();
|
|
|
+ $(window).resize(function(){
|
|
|
+ resizeListWindow1();
|
|
|
+ });
|
|
|
+</script>
|
|
|
+</body>
|
|
|
+</html>
|