var editors = []; $(document).ready(function() { init(); }); function init() { edit(); del(); checkbox(); image(); change(); autocomplete(); template(); submit(); loadShow(); initEditor(); //更新页面一些功能,上边的一些功能等找时间再优化吧 Maze_update.init(); } function initEditor() { if($('.editor').length) { $('.editor').each(function() { var parent = $(this).parent().parent(); //alert(parent.attr('id')); if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1) { return; } loadEditor($(this)); }) } } function loadEditor(e) { if(!e.length) { return; } var id = e.attr('id'); var key = e.attr('key'); if(typeof(UM) == "undefined") { var u = UE; } else { var u = UM; } if(typeof(editors[id]) == "undefined") { editors[id] = u.getEditor(id, { imageUrl : config.upload + '.ueditor?key=' + key }); } } //更新页面的提交按钮 function submit() { if($(".save-data").length) { $(".save-data").bind('click', function() { $(".form1").submit(); //$(this).unbind('click'); }) } } //头部菜单 function topMenu(e) { var p = e.parent().parent().parent().find('span'); p.html(e.html()); //更新当前的精细权限 var url = config.host + 'top.update_action?json=1'; var id = e.attr('data-id'); $.post(url, {id:id}, function(t) { if(location.href.indexOf('where_id') != -1) { var href = location.href.split('where_id'); location.href = href[0] + 'where_id=' + t; } else { location.reload(); } }) } //更新页面的批量载入选择 function loadShow() { if($(".show_input").length) { $(".show_input input").each(function() { if($(this).attr('checked')) { $(this).click().attr('checked',true); } }) } } function inputShow(e,n) { var item = e.parent().find('input'); $(".show_" + n).hide(); var array = ['input', 'textarea']; for(var a in array) { $(".show_" + n).find(array[a]).removeClass('validate[required]'); } item.each(function() { if($(this).get(0).checked == true) { inputShowOne($(this),n); } }); } function inputShowOne(e,n) { var value = e.val(); //$(".show_" + n).hide(); //$(".show_" + n + '_' + value).attr('style','color:red').show(); $(".show_" + n + '_' + value).show(); var array = ['input', 'textarea']; for(var a in array) { if($(".show_" + n + '_' + value).length && $(".show_" + n + '_' + value).attr('class').indexOf('show_no') == -1) { $(".show_" + n + '_' + value).find(array[a]).each(function() { var parent = $(this).parent(); if($(this).attr('class') != 'editor' && parent.find('label').length && parent.find('label').html().indexOf('选填') == -1) { $(this).addClass('validate[required]'); } }) } } } //批量更新 function list_mul(e) { var type = parseInt($("#mul_type").val()); if(type != 1 && type != 2) { alert('您还没有选择数据更新方式'); return; } if(confirm('确定进行此项操作吗?')) { //e.html('更新中').unbind('click'); $('#method').val('mul'); $('#function').val('msg'); $('#form1').attr('target', 'f1').submit(); } } //搜索 function list_search(e) { $('#method').val('search'); $('#function').val(''); $('#form1').attr('target', '').submit(); } //更新数据 function update(e, id, key, table) { if(confirm('您这项操作将更改当前的选项,请确认是否继续进行?')) { var col = e.attr('name'); var value = e.val(); var url = config.host + 'database.update_action?json=1'; $.post(url, {where_id:id,col:col,value:value,key:key,table:table}, function(t) { alert('操作成功'); }) } } //模板选择 function template() { if(config.template) { $('body').attr('class', 'theme-' + config.template); } if($(".selector").length) { $(".selector").each(function() { if($(this).data('check') == 'checked') { selector($(this)); } }) } } //选择器 function selector(e) { var value = e.data('value'); var name = e.data('name'); $('#'+name+'_value').val(value); $('.'+name+'_selector').children().css({'border':'1px solid #ccc'}); e.children().css({'border':'1px solid black'}); if(name == 'update_template') { $('body').attr('class', 'theme-' + value); } } function autocomplete() { if($("input[complete]").length) { $("input[complete]").each(function() { var cache = {}; var self = $(this); self.autocomplete( { minLength: 2, source: function( request, response ) { var term = request.term; if ( term in cache ) { response( cache[ term ] ); return; } $.getJSON(self.attr('complete') + '&callback=?', request, function( data, status, xhr ) { console.info(data); cache[ term ] = data; response( data ); }); } }); }) } } //后台头部提示 function top_msg(value) { } //后台通用的提示 function msg(value) { var url = ''; if(value.msg != 'reload' && value.status == 2) { submit(); //showAlert(value.msg); alert(value.msg); location.reload(); return; } else { if(value.msg.indexOf('http://') != -1) { url = value.msg; } else if($("#url").length) { url = $("#url").val(); } else { //showAlert(value.msg); return; } if(url) { location.href = url; } else { location.reload(); } } return; } /** * 处理多选问题,处理全选按钮 */ function checkbox() { var name = 'checkbox-checkall'; var checkbox = $("." + name); if(checkbox.length) { checkbox.click(function() { var self = $(this); $("." + name + "-" + self.val()).each(function() { $(this).get(0).checked = self.get(0).checked; var next = $(this).next(); if($(this).get(0).checked == true) { if(next.length) { next.attr('disabled', false); } if($("#mul_type").length) { $("#mul_type").val(1); } } else { if(next.length) { next.attr('disabled', true); } if($("#mul_type").length) { $("#mul_type").val(0); } } }) }); checkbox.each(function() { var self = $(this); $("." + name + "-" + self.val()).each(function() { $(this).click(function() { var next = $(this).next(); if($(this).get(0).checked == true) { self.get(0).checked = true; if(self.attr('type') == 'radio') { //如果父选项是radio类型,做下限制 //alert(1); } if($("#mul_type").length) { $("#mul_type").val(1); } if(next.length) { next.attr('disabled', false); } } else { //子选项取消时,处理一下父级选项 var num = 0; $("." + name + "-" + self.val()).each(function() { if($(this).get(0).checked == true) { num = 1; } }); if(num == 0) { self.get(0).checked = false; if($("#mul_type").length) { $("#mul_type").val(0); } } if(next.length) { next.attr('disabled', true); } } }) if($(this).get(0).checked == true) { self.get(0).checked = true; } }); }) } } /** * 处理双击编辑 */ function edit() { if($(".edit").length) { $(".edit").each(function() { $(this).bind('dblclick', function() { var col = $(this).attr('data-col'); var key = $(this).attr('data-key'); var table = $(this).attr('data-table'); var url = $(this).attr('data-url'); var id = $(this).attr('data-id'); var html = $(this).attr('data-content'); var type = $(this).attr('data-type'); if($(this).find(".edit-content").length) { html = $(this).find(".edit-content").html(); html = html.replace('', '>'); } if(html.indexOf('input') == -1) { if(type && type == 'textarea') { $(this).html(''); } else { $(this).html(''); } var self = $(this); self.find("#edit").blur(function() { var value = self.find("#edit").val(); if(!value) { alert('不能为空'); return; } if($(this).find(".edit-content").length) { $(this).find(".edit-content").html(value); } else { self.attr('data-content', value); } self.html(value); $.post(url, {key:key,table:table,value:value,where_id:id,col:col}, function(t) { top_msg('修改成功'); /* if(type && type == 'textarea') { self.html(t); } */ }) }) } }); }) } } function del() { if($(".oper_6").length) { $(".oper_6").each(function() { var href = $(this).attr('href'); $(this).attr('href', '#'); $(this).unbind('click'); $(this).bind('click', function() { del_act(href); }); }) } } /** * 处理删除 */ function del_act(href) { if(confirm('确定进行此项操作吗?')) { $.getJSON(href, {}, function(t) { msg(t); }) } } /** * 处理特殊加载的按钮 */ function load(href) { if(confirm('确定进行此项操作吗?')) { $.getJSON(href + '&callback=?', {}, function(t) { //msg(t); location.reload(); }) } /* showAlert('确定进行此项操作吗?', function() { $("#maze_modal_no").click(); $.getJSON(href + '&json=1', {}, function(t) { msg(t); }) }); */ } /** * 处理特殊加载的按钮 */ function jump(href) { location.href = href; } /** * 处理change */ function change() { if($(".change").length) { $(".change").each(function() { var key = $(this).attr('data-child'); /* $('.' + key).each(function() { if($(this).find('select option:selected').val()) { $(this).show(); $('#set_cate_id_child').get(0).value = $(this).attr('parent'); } }); */ $(this).change(function() { $('.' + key).hide(); var v = $('.' + key + '_' + $(this).val()); var s = v.find('select'); s.change(function() { $('.' + key + '_value').val($(this).val()); }) if(v.length) { $('.' + key + '_value').val(s.val()); v.show(); } else { $('.' + key + '_value').val(-1); } }); if($(this).val() > 0) { $(this).change(); } }); } } /** * 处理图库系统 */ function image() { if($(".image_upload").length) { $(".image_upload").each(function(i) { var parent = $(this).parent().parent(); //alert(parent.attr('id')); if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1) { return; } loadUpload(i,$(this),$(this).attr('key'),config.upload + '.start', config.lib + 'upload/');//三个参数说明1:第几个上传框2:文件对象3:图片的基本配置标题 }) } } /** * 修改密码 */ function pass(e) { var html = '