主题 : 文章移动BUG
级别: 童生
UID: 23480
积分:47 加为好友
威望: 0 精华: 0
主题:1 回复:39
注册时间:2011-09-08
在线时长:0
1#   发表于:2015-11-07 22:31:43  IP:182.242.*.*
发布的源码包中缺少JS方法,在移动文章时提示找不到doOperate方法,在demo.jeecms.com 中没有此错误。
文件/WEB-INF/jeecms_sys/content/list.html
缺少如下js方法(我在demo.jeecms.com查看源码找到的)
function doOperate(action,succ){
var contentIds=getContentIds();
var channelIds=getChannelIds();
if(contentIds.length<=0){
$.alert("<@s.m 'global.prompt'/>","<@s.m 'content.noselectcontent'/>");
}else{
if(channelIds.length<=0){
$.alert("<@s.m 'global.prompt'/>","<@s.m 'content.noselectchannel'/>");
}else{
ajaxPost(action,contentIds,channelIds,succ);
}
}
}
function ajaxPost(url,contentIds,channelIds,succ){
$.ajax({
        type: "POST",
        url: url,
        data: {contentIds:contentIds,channelId:channelIds},
        dataType: "json",
        success: function(data){
         if(data.pass){
$.alert("提示",succ);
var f = getTableForm();
f.action="v_list.do";
f.submit();
}
        },
        error:function(){
         $.alert("提示","没有权限执行此操作!");
    }
    });
}
function shareContents(url,contentIds,channelIds){
$.ajax({
        type: "POST",
        url: url,
        data: {contentIds:contentIds,channelIds:channelIds},
        dataType: "json",
        success: function(data){
         if(data.pass){
$.alert("提示","提交成功!");
var f = getTableForm();
f.action="v_list.do";
f.submit();
}
        },
        error:function(){
         $.alert("提示","没有权限执行此操作!");
    }
    });
}
级别: 版主
UID: 70293
积分:78391 加为好友
威望: 1 精华: 0
主题:7 回复:68397
注册时间:2014-12-03
在线时长:0
2#   发表于:2015-11-09 08:19:54  IP:59.6.*.*
你是哪个版本的系统
1
级别: 贡士
UID: 17063
积分:772 加为好友
威望: 0 精华: 0
主题:0 回复:651
注册时间:2011-03-18
在线时长:0
3#   发表于:2015-11-09 08:37:12  IP:61.24.*.*
mark
FreeCMS功能强大、开源、代码通俗易懂、注释详细、面向二次开发友好!
级别: 版主
UID: 70293
积分:78391 加为好友
威望: 1 精华: 0
主题:7 回复:68397
注册时间:2014-12-03
在线时长:0
4#   发表于:2015-11-09 08:39:13  IP:59.6.*.*
1
级别: 童生
UID: 23480
积分:47 加为好友
威望: 0 精华: 0
主题:1 回复:39
注册时间:2011-09-08
在线时长:0
5#   发表于:2015-11-19 17:03:29  IP:61.219.*.*
回复第2楼 最新版V7的源码包
级别: 版主
UID: 70293
积分:78391 加为好友
威望: 1 精华: 0
主题:7 回复:68397
注册时间:2014-12-03
在线时长:0
6#   发表于:2015-11-19 17:04:59  IP:117.84.*.*
移动文章这里还有点问题,还在修复
1
1 共1页