123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485 |
-
- var oldhtml = ''; // 原始内容
- var epageJson = {}; // 页面标识,建议是文件名
-
- jQuery(function($){
-
- // 去除所有A标签链接
- // function remove_a_href()
- // {
- // $('a').each(function(index, item){
- // $(item).attr('href', 'javascript:void(0);');
- // });
- // }
-
- /**
- * 页面右上角显示还原数据的操作
- */
- $('body').prepend('<div e-id="clearall" class="uiset_back-btn" title="还原设置" onclick="eyou_clear();"></div>');
-
- /**
- * Make the elements editable
- */
- $('.eyou-edit').mouseenter(function(e){ // 鼠标移入选中状态,只针对该绑定元素
- e.stopPropagation();
- var that = this;
- eyou_mouseenter(that);
- })
- .mouseleave(function(e){ // 鼠标移出消除选中状态,只针对该绑定元素
- e.stopPropagation();
- var that = this;
- eyou_mouseleave(that);
- });
-
- // 鼠标移入选中状态,只针对该绑定元素
- function eyou_mouseenter(that)
- {
- $(that).addClass('uiset');
- $('body').find('b.ui_icon').remove();
- $(that).prepend('<b class="ui_icon"></b>');
- $(that).find('b.ui_icon').on("click", function(e){
- e.stopPropagation();
- var that = $(this).parent();
- var e_type = $(that).attr('e-type');
- if (e_type == 'text') {
- oldhtml = $(that).html();
- eyou_text(that);
- } else if (e_type == 'html') {
- oldhtml = $(that).html();
- oldhtml = oldhtml.replace('<b class="ui_icon"></b>', '');
- eyou_html(that);
- } else if (e_type == 'type') {
- eyou_type(that);
- } else if (e_type == 'arclist' || e_type == 'artlist') {
- eyou_arclist(that);
- } else if (e_type == 'channel' || e_type == 'models') {
- eyou_channel(that);
- } else if (e_type == 'upload') {
- eyou_upload(that);
- } else if (e_type == 'adv') {
- eyou_adv(that);
- } else if (e_type == 'map') {
- eyou_map(that);
- } else if (e_type == 'code') {
- oldhtml = $(that).html();
- oldhtml = oldhtml.replace('<b class="ui_icon"></b>', '');
- eyou_code(that);
- } else if (e_type == 'background') {
- eyou_background(that);
- }
- // eyou_mouseleave(that);
- });
- if (that.nodeName == 'A') {
- $(that).attr('href', 'javascript:void(0);');
- }
- }
-
- // 鼠标移出消除选中状态,只针对该绑定元素
- function eyou_mouseleave(that)
- {
- $(that).removeClass('uiset');
- $(that).find('b.ui_icon').remove();
- $(that).bind('mouseenter');
- }
-
- // 递归获取最近含有e-page的元素对象
- function get_epage(obj)
- {
- if ($(obj).attr('e-page') == undefined) {
- var parentObj = $(obj).parent();
- if (parentObj.find('body').length > 0) {
- epageJson = {
- e_page: ''
- };
- return false;
- } else {
- get_epage(parentObj);
- }
- } else {
- epageJson = {
- e_page: $(obj).attr('e-page')
- };
- return false;
- }
- }
-
- // 纯文本编辑
- function eyou_text(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uitext标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- var textval = $(that).html();
- //textval = textval.replace(/[\r\n]/g, "");//去掉回车换行)
- textval = textval.replace(/<b class="ui_icon"><\/b>/g, "");//去掉回车换行)
- textval = $.trim(textval);
- layer.prompt({
- title: '纯文本编辑',
- value: textval,
- formType: 2,
- area: ['500px', '300px']
- }, function(text, index){
- layer.close(index);
- text = text.replace(/[\r\n]/g, "");//去掉回车换行)
- text = text.replace(/<b class="ui_icon"><\/b>/g, "");//去掉回车换行)
- text = $.trim(text);
- if( $.trim(text) != '' ) {
- eyou_layer_loading('正在处理');
- $.ajax({
- url: __root_dir__+'/index.php?m=api&c=Uiset&a=submit&v='+v+'&_ajax=1&lang='+__lang__,
- type: 'POST',
- dataType: 'JSON',
- data: {
- content: text
- ,id: e_id
- ,page: e_page
- ,type: 'text'
- ,oldhtml: oldhtml
- ,lang: __lang__
- ,urltypeid: __urltypeid__
- ,urlaid: __urlaid__
- },
- success: function(res) {
- layer.closeAll();
- if (res.code == 1) {
- layer.msg(res.msg, {icon: 1, shade: 0.3, time: 1000}, function(){
- window.location.reload();
- });
- } else {
- eyou_showErrorAlert(res.msg);
- }
- return false;
- },
- error: function(e){
- layer.closeAll();
- eyou_showErrorAlert(e.responseText);
- return false;
- }
- });
- }
- });
- }
-
- // 带html的富文本编辑器
- function eyou_html(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uihtml标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- layer.open({
- type: 2,
- title: '富文本内容编辑',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: false,
- area: ['700px', '580px'],
- content: __root_dir__+'/index.php?m=api&c=Uiset&a=html&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
- });
- }
-
- // 栏目编辑
- function eyou_type(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uitype标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- //iframe窗
- layer.open({
- type: 2,
- title: '栏目编辑',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: false,
- area: ['350px', '200px'],
- content: __root_dir__+'/index.php?m=api&c=Uiset&a=type&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
- });
- }
-
- // 文章栏目编辑
- function eyou_arclist(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uiarclist标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- layer.open({
- type: 2,
- title: '内容栏目编辑',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: false,
- area: ['350px', '200px'],
- content: __root_dir__+'/index.php?m=api&c=Uiset&a=arclist&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
- });
- }
-
- // 栏目列表编辑
- function eyou_channel(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uichannel标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- layer.open({
- type: 2,
- title: '栏目列表编辑',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: false,
- area: ['350px', '200px'],
- content: __root_dir__+'/index.php?m=api&c=Uiset&a=channel&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
- });
- }
-
- // 图片编辑
- function eyou_upload(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uiupload标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- var imgsrc = $(that).find('img').attr('src');
- var oldhtml = $.trim($(that).html());
- oldhtml = encodeURI(oldhtml);
- //iframe窗
- layer.open({
- type: 2,
- title: '图片编辑',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: false,
- area: ['400px', '280px'],
- content: __root_dir__+'/index.php?m=api&c=Uiset&a=upload&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__,
- success: function(layero, index){
- var body = layer.getChildFrame('body', index);
- body.find('input[name=oldhtml]').val(oldhtml);
- body.find('.imgsrc img').attr('src',imgsrc);
- }
- });
- }
-
- // 背景图片编辑
- function eyou_background(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uibackground标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- var imgsrc = $(that).css("backgroundImage").replace('url(', '').replace(')', '');
- re = new RegExp("'","g");
- imgsrc = imgsrc.replace(re, "");
- re2 = new RegExp("\"","g");
- imgsrc = imgsrc.replace(re2, "");
- imgsrc = $.trim(imgsrc);
-
- //iframe窗
- layer.open({
- type: 2,
- title: '背景图片编辑',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: false,
- area: ['400px', '280px'],
- content: __root_dir__+'/index.php?m=api&c=Uiset&a=background&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__,
- success: function(layero, index){
- var body = layer.getChildFrame('body', index);
- body.find('.imgsrc img').attr('src',imgsrc);
- }
- });
- }
-
- // 广告设置
- function eyou_adv(that)
- {
- var e_id = $(that).attr('e-id');
- var url = admin_basefile+'?m=admin&c=Other&a=ui_edit&id='+e_id+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
- layer.open({
- type: 2,
- title: '广告编辑',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: true,
- area: ['800px', '500px'],
- content: url
- });
- }
-
- // 百度地图
- function eyou_map(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uimap标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- layer.open({
- type: 2,
- title: '百度地图定位',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: false,
- area: ['80%', '80%'],
- content: __root_dir__+'/index.php?m=api&c=Uiset&a=map&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
- });
- }
-
- // 源代码编辑
- function eyou_code(that)
- {
- get_epage(that);
- var e_page = epageJson.e_page;
- var e_id = $(that).attr('e-id');
- if (e_page == '' || e_id == undefined) {
- eyou_showErrorAlert('html报错:uicode标签的外层html元素缺少属性 e-page | e-id');
- return false;
- }
- layer.open({
- type: 2,
- title: '源代码编辑',
- fixed: true,
- shadeClose: false,
- shade: 0.3,
- maxmin: false,
- area: ['700px', '580px'],
- content: __root_dir__+'/index.php?m=api&c=Uiset&a=code&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
- });
- }
- });
-
- /**
- * 获取修改之前的内容
- */
- function eyou_getOldHtml()
- {
- return oldhtml;
- }
-
- // 清除全部数据
- function eyou_clear()
- {
- layer.confirm('此操作不可逆,确定还原?', {
- title: false,
- closeBtn: false,
- btn: ['确定', '取消'] //按钮
- }, function(){
- eyou_layer_loading('正在处理');
- var e_type = 'all';
- $.ajax({
- url: __root_dir__+'/index.php?m=api&c=Uiset&a=clear_data&lang='+__lang__,
- type: 'POST',
- dataType: 'JSON',
- data: {
- type: e_type
- ,v: v
- ,urltypeid: __urltypeid__
- ,urlaid: __urlaid__
- ,_ajax: 1
- },
- success: function(res) {
- layer.closeAll();
- if (res.code == 1) {
- layer.msg(res.msg, {icon: 1, shade: 0.3, time: 1000}, function(){
- window.location.reload();
- });
- } else {
- eyou_showErrorAlert(res.msg);
- }
- return false;
- },
- error: function(e){
- layer.closeAll();
- eyou_showErrorAlert(e.responseText);
- return false;
- }
- });
- }, function(index){
- layer.close(index);
- return false;// 取消
- }
- );
- }
-
- function eyou_showErrorMsg(msg){
- layer.msg(msg, {icon: 5,time: 2000});
- }
-
- function eyou_showSuccessMsg(msg){
- layer.msg(msg, {time: 1000});
- }
-
- function eyou_showErrorAlert(msg, icon){
- if (!icon && icon != 0) {
- icon = 5;
- }
- layer.alert(msg, {icon: icon, title: false, closeBtn: false});
- }
-
- /**
- * 封装的加载层
- */
- function eyou_layer_loading(msg){
- var loading = layer.msg(
- msg+'... 请勿刷新页面',
- {
- icon: 1,
- time: 3600000,
- shade: [0.2]
- });
- var index = layer.load(3, {
- shade: [0.1,'#fff']
- });
-
- return loading;
- }
-
- /**
- * 封装的加载层,用于iframe
- */
- function eyou_iframe_layer_loading(msg){
- var loading = parent.layer.msg(
- msg+'... 请勿刷新页面',
- {
- icon: 1,
- time: 3600000,
- shade: [0.2]
- });
- var index = parent.layer.load(3, {
- shade: [0.1,'#fff']
- });
-
- return loading;
- }
|