// PC端编辑器工具
var ueditor_toolbars = [[
'fullscreen', 'source', '|', 'undo', 'redo', '|',
'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'selectall', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', '|',
'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
'directionalityltr', 'directionalityrtl', 'indent', '|',
'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
'simpleupload', 'insertimage', 'emotion', 'insertvideo', 'attachment', 'map', 'insertframe', 'insertcode', '|',
'horizontal', 'spechars', '|',
'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|',
'preview', 'searchreplace', 'drafts'
]];
// 手机端编辑器工具 previewmobile
var ueditor_toolbars_ey_m = [[
'fullscreen', 'source', '|', 'removeformat' , 'undo', 'redo', '|',
'fontsize', 'forecolor', 'bold', 'italic', 'underline', '|',
'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|',
'lineheight', 'simpleupload', 'insertimage', 'link', 'unlink', 'anchor', '|',
'insertvideo'
]];
// 当分页不足以显示隐藏div
$(function() {
if (parseInt($('div.dataTables_paginate li').length) > 0) {
$('div.dataTables_paginate').show();
}
});
function showErrorMsg(msg, callback) {
layer.msg(msg, {icon: 5,time: 2000}, function(index) {
if (typeof callback !== 'undefined') callback();
layer.close(index);
});
}
function showErrorAlert(msg, icon, callback) {
if (!icon && icon != 0) {
icon = 5;
}
layer.alert(msg, {icon: icon, title: false, closeBtn: false}, function(index) {
if (typeof callback !== 'undefined') callback();
layer.close(index);
});
}
function showMbErrorMsg(msg) {
layer.open({
content: msg, skin: 'footer'
});
}
function showMbErrorAlert(msg) {
layer.open({
content: ''+ey_foreign_system4+':'+msg+'', btn: ey_foreign_system2
});
}
function showSuccessMsg(msg, callback) {
layer.msg(msg, {time: 1500}, function(index) {
if (typeof callback !== 'undefined') callback();
layer.close(index);
});
}
function showSuccessAlert(msg, icon, callback) {
if (!icon && icon != 0) {
icon = 1;
}
layer.alert(msg, {icon: icon, title: false, closeBtn: false}, function(index) {
if (typeof callback !== 'undefined') callback();
layer.close(index);
});
}
/*
* 上传图片 后台专用
* @access public
* @null int 一次上传图片张图
* @elementid string 上传成功后返回路径插入指定ID元素内
* @path string 指定上传保存文件夹,默认存在public/upload/temp/目录
* @callback string 回调函数(单张图片返回保存路径字符串,多张则为路径数组 )
*/
var layer_GetUploadify;
// PC端上传头像
function GetUploadify(num,elementid,path,callback,url,title,is_mobile)
{
if (layer_GetUploadify){
layer.close(layer_GetUploadify);
}
if (num > 0) {
if (!url) url = GetUploadify_url;
if (!title) {
if (callback.indexOf('head_pic_call_back') > -1) {
title = '上传头像';
} else {
title = '选择上传';
}
}
if (!is_mobile) is_mobile = 0;
if (url.indexOf('?') > -1) {
url += '&';
} else {
url += '?';
}
var upurl = url+'num='+num+'&input='+elementid+'&path='+path+'&func='+callback;
var area = is_mobile==0?['50%', '60%']:['100%', '100%'];
layer_GetUploadify = layer.open({
type: 2,
title: title,
shadeClose: false,
shade: 0.3,
maxmin: true, //开启最大化最小化按钮
area: area,
content: upurl
});
} else {
showErrorAlert('允许上传0张图片');
return false;
}
}
// 手机端上传头像
function GetUploadify_mobile(num, url, title)
{
var scriptUrl = '/public/plugins/layer_mobile/layer.js';
// 支持子目录
if (typeof __root_dir__ != "undefined") {
scriptUrl = __root_dir__ + scriptUrl;
}
if (typeof __version__ != "undefined") {
scriptUrl = scriptUrl + '?v=' + __version__;
}
// end
$.getScript(scriptUrl, function(){
if (num > 0) {
if (!url) url = GetUploadify_url;
if (!title) title = '头像';
if (url.indexOf('?') > -1) {
url += '&';
} else {
url += '?';
}
var content = $('#update_mobile_file').html();
content = content.replace(/up_f/g, 'upfile');
content = content.replace(/form1/g,'form2');
if ('缩略图' == title) {
content += '';
}else{
content += '';
}
layer_GetUploadify = layer.open({
type:1,
title:title,
anim:'up',
style:'position:fixed; bottom:0; left:0; width: 100%; padding:10px 0; border:none;max-width: 100%;',
content:content,
});
} else {
layer.open({
content: '允许上传0张图片',
skin: 'footer',
});
return false;
}
});
}
// 加载层
function layer_loading(msg){
if (!msg || '正在处理' == msg) {
if (typeof ey_foreign_system8 === 'undefined') {
ey_foreign_system8 = "正在处理";
}
msg = ey_foreign_system8;
}
if (typeof ey_foreign_system9 === 'undefined') {
ey_foreign_system9 = "请勿刷新页面";
}
var loading = layer.msg(
msg+'... '+ey_foreign_system9,
{
icon: 1,
time: 3600000, //1小时后后自动关闭
shade: [0.2] //0.1透明度的白色背景
});
//loading层
var index = layer.load(3, {
shade: [0.1,'#fff'] //0.1透明度的白色背景
});
return loading;
}
// 加载层
function layer_loading_mini(icon){
//loading层
if (!icon) {
icon = 2;
}
var loading = layer.load(icon, {
shade: [0.2,'#000'] //0.1透明度的白色背景
});
return loading;
}
// 渲染编辑器
function showEditor_1597892187(elemtid) {
var content = '';
try{
content = UE.getEditor(elemtid).getContent();
UE.getEditor(elemtid).destroy();
}catch(e){}
// 检测手机端的标识
var is_mobile = navigator.userAgent.toLowerCase().match(/(ipod|iphone|android|coolpad|mmp|smartphone|midp|wap|xoom|symbian|j2me|blackberry|wince)/i) != null;
// 判断手机端并且跳转
if (is_mobile) {
ueditor_toolbars = ueditor_toolbars_ey_m;
}
var serverUrl = __root_dir__+'/index.php?m=user&c=Uploadify&a=index&savepath=ueditor&lang='+__lang__;
var options = {
serverUrl : serverUrl,
zIndex: 999,
initialFrameWidth: "100%", //初化宽度
initialFrameHeight: 450, //初化高度
focus: false, //初始化时,是否让编辑器获得焦点true或false
maximumWords: 99999,
removeFormatAttributes: 'class,style,lang,width,height,align,hspace,valign',//允许的最大字符数 'fullscreen',
pasteplain:false, //是否默认为纯文本粘贴。false为不使用纯文本粘贴,true为使用纯文本粘贴
autoHeightEnabled: false,
toolbars: ueditor_toolbars,
// xss 过滤是否开启,inserthtml等操作
xssFilterRules: true,
//input xss过滤
inputXssFilter: true,
//output xss过滤
outputXssFilter: true
};
eval("ue_"+elemtid+" = UE.getEditor(elemtid, options);ue_"+elemtid+".ready(function() {ue_"+elemtid+".setContent(content);});");
}
/**
* 设置cookie
* @param {[type]} name [description]
* @param {[type]} value [description]
* @param {[type]} time [description]
*/
function ey_setCookies(name, value, time)
{
var cookieString = name + "=" + escape(value) + ";";
if (time != 0) {
var Times = new Date();
Times.setTime(Times.getTime() + time);
cookieString += "expires="+Times.toGMTString()+";"
}
document.cookie = cookieString+"path=/";
}
// 读取 cookie
function ey_getCookie(c_name)
{
if (document.cookie.length>0)
{
c_start = document.cookie.indexOf(c_name + "=")
if (c_start!=-1)
{
c_start=c_start + c_name.length+1
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length
return unescape(document.cookie.substring(c_start,c_end))
}
}
return "";
}
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]);
return null;
}
function unifiedFilter(obj) {
var value = $(obj).val();
if (undefined != value || 'undefined' != value || '' != value) {
var url = $(obj).attr('data-url');
if (url.indexOf('?') > -1) {
url += '&';
} else {
url += '?';
}
url += $(obj).attr('data-field') + '=' + value;
window.location.href = url;
}
}
var layer_shade = [0.7, '#fafafa'];
// 统一提示确认框
function unifiedConfirmBox(msg, width, height, callback_1, btn, callback_2, callback_cancel) {
if (typeof msg === 'undefined' || !msg) msg = '确认执行此操作?';
if (typeof btn === 'undefined' || !btn) btn = [ey_foreign_system2, ey_foreign_system3];
if (typeof width === 'undefined' || !width) width = '480px;';
if (typeof height === 'undefined' || !height) height = '200px;';
layer.confirm(msg, {
move: false,
closeBtn: 3,
title: ey_foreign_system4,
btnAlign: 'r',
shade: layer_shade,
btn: btn,
area: [width, height],
success: function () {
$(".layui-layer-content").css('text-align', 'left');
},
cancel: function() {
if (typeof callback_cancel !== 'undefined') callback_cancel();
}
}, function (index) {
// 确认操作
if (typeof callback_1 !== 'undefined') callback_1();
layer.close(index);
}, function (index) {
// 取消操作
if (typeof callback_2 !== 'undefined') callback_2();
layer.close(index);
});
}
// 统一提醒信息框
function unifiedRemindBox(msg, width, height) {
if (typeof msg === 'undefined') msg = '请输入你的提醒信息...';
if (typeof width === 'undefined') width = '480px;';
if (typeof height === 'undefined') height = '200px;';
layer.confirm(msg, {
move: false,
closeBtn: 3,
title: ey_foreign_system4,
btnAlign: 'r',
shade: layer_shade,
btn: [ey_foreign_system2],
area: [width, height],
success: function () {
$(".layui-layer-content").css('text-align', 'left');
}
});
}
function unifiedShowPayConfirmBox(is_wap, successCallback, failCallback, cancelCallback) {
if (0 === parseInt(is_wap)) {
layer.closeAll();
layer.confirm('请在新打开的页面进行支付!', {
move: false,
closeBtn: 3,
title: ey_foreign_system4,
btnAlign: 'r',
shade: layer_shade,
area: ['480px;', '200px;'],
btn: ['支付成功', '支付失败'],
success: function () {
$(".layui-layer-content").css('text-align', 'left');
},
cancel: function() {
if (typeof cancelCallback !== 'undefined') {
cancelCallback();
} else {
window.location.reload();
}
}
}, function () {
// 确认操作
if (typeof successCallback !== 'undefined') successCallback();
}, function (index) {
// 取消操作
if (typeof failCallback !== 'undefined') {
failCallback();
} else {
window.location.reload();
}
layer.close(index);
});
}
}
function windowOpen(url) {
window.open(url);
}
function windowLocation(url) {
window.location.href = url;
}
function singleDelAction(obj, id, msg) {
id = id ? [id] : [];
if (id.length == 0) {
showErrorAlert('请选择删除内容');
return false;
}
var data = {
_ajax: 1,
del_id: id,
};
ajaxSubmitPost(obj, '', msg, data);
}
function batchDelAction(obj, name, msg) {
var ids = [];
$('input[name^='+name+']').each(function(i, o) {
if ($(o).is(':checked')) ids.push($(o).val());
});
if (ids.length == 0) {
showErrorAlert('请至少选择一项');
return false;
}
var data = {
_ajax: 1,
del_id: ids,
};
ajaxSubmitPost(obj, '', msg, data);
}
function ajaxSubmitPost(obj, url, msg, data) {
url = $(obj).attr('data-url') ? $(obj).attr('data-url') : url;
unifiedConfirmBox(msg, null, null, function() {
layer_loading('正在处理');
$.ajax({
url : url,
data: data,
type: "post",
dataType: 'json',
success: function (res) {
layer.closeAll();
if (1 === parseInt(res.code)) {
showSuccessMsg(res.msg, function() {
window.location.reload();
});
} else {
showErrorAlert(res.msg);
}
},
error: function(e) {
layer.closeAll();
showErrorAlert(e.responseText);
}
});
});
}
// 发送(短信、邮箱)提醒
function eyUnifiedSendRemind(result) {
if (result) {
$.ajax({
url: result.url,
data: result.data,
type: 'post',
dataType: 'json'
});
}
}