12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172 |
- ;(function () {
- //全局ajax处理
- $.ajaxSetup({
- complete: function (jqXHR) {
- },
- data: {},
- error: function (jqXHR, textStatus, errorThrown) {
- //请求失败处理
- }
- });
- if ($.browser && $.browser.msie) {
- //ie 都不缓存
- $.ajaxSetup({
- cache: false
- });
- }
- //不支持placeholder浏览器下对placeholder进行处理
- if (document.createElement('input').placeholder !== '') {
- $('[placeholder]').focus(function () {
- var input = $(this);
- if (input.val() == input.attr('placeholder')) {
- input.val('');
- input.removeClass('placeholder');
- }
- }).blur(function () {
- var input = $(this);
- if (input.val() == '' || input.val() == input.attr('placeholder')) {
- input.addClass('placeholder');
- input.val(input.attr('placeholder'));
- }
- }).blur().parents('form').submit(function () {
- $(this).find('[placeholder]').each(function () {
- var input = $(this);
- if (input.val() == input.attr('placeholder')) {
- input.val('');
- }
- });
- });
- }
- // 所有加了dialog类名的a链接,自动弹出它的href
- if ($('a.js-dialog').length) {
- Wind.css('artDialog');
- Wind.use('artDialog', 'iframeTools', function () {
- $('.js-dialog').on('click', function (e) {
- e.preventDefault();
- var $this = $(this);
- art.dialog.open($(this).prop('href'), {
- close: function () {
- $this.focus(); // 关闭时让触发弹窗的元素获取焦点
- return true;
- },
- title: $this.prop('title')
- });
- }).attr('role', 'button');
- });
- }
- // 所有的ajax form提交,由于大多业务逻辑都是一样的,故统一处理
- var ajaxForm_list = $('form.js-ajax-form');
- if (ajaxForm_list.length) {
- Wind.css('artDialog');
- Wind.use('ajaxForm', 'artDialog', 'noty', 'validate', function () {
- var $btn;
- $('button.js-ajax-submit').on('click', function (e) {
- var btn = $(this), form = btn.parents('form.js-ajax-form');
- $btn = btn;
- if (btn.data("loading")) {
- return;
- }
- //批量操作 判断选项
- if (btn.data('subcheck')) {
- btn.parent().find('span').remove();
- if (form.find('input.js-check:checked').length) {
- btn.data('subcheck', false);
- } else {
- $('<span class="tips_error">请至少选择一项</span>').appendTo(btn.parent()).fadeIn('fast');
- return false;
- }
- }
- var msg = btn.data('msg');
- if (msg) {
- art.dialog({
- id: 'warning',
- icon: 'warning',
- content: btn.data('msg'),
- cancelVal: '关闭',
- cancel: function () {
- //btn.data('subcheck', false);
- //btn.click();
- },
- ok: function () {
- btn.data('msg', false);
- btn.click();
- }
- });
- return false;
- }
- //ie处理placeholder提交问题
- if ($.browser && $.browser.msie) {
- form.find('[placeholder]').each(function () {
- var input = $(this);
- if (input.val() == input.attr('placeholder')) {
- input.val('');
- }
- });
- }
- });
- ajaxForm_list.each(function () {
- $(this).validate({
- //是否在获取焦点时验证
- //onfocusout : false,
- //是否在敲击键盘时验证
- //onkeyup : false,
- //当鼠标点击时验证
- //onclick : false,
- //给未通过验证的元素加效果,闪烁等
- highlight: function (element, errorClass, validClass) {
- if (element.type === "radio") {
- this.findByName(element.name).addClass(errorClass).removeClass(validClass);
- } else {
- var $element = $(element);
- $element.addClass(errorClass).removeClass(validClass);
- $element.parent().addClass("has-error");//bootstrap3表单
- $element.parents('.control-group').addClass("error");//bootstrap2表单
- }
- },
- unhighlight: function (element, errorClass, validClass) {
- if (element.type === "radio") {
- this.findByName(element.name).removeClass(errorClass).addClass(validClass);
- } else {
- var $element = $(element);
- $element.removeClass(errorClass).addClass(validClass);
- $element.parent().removeClass("has-error");//bootstrap3表单
- $element.parents('.control-group').removeClass("error");//bootstrap2表单
- }
- },
- showErrors: function (errorMap, errorArr) {
- var i, elements, error;
- for (i = 0; this.errorList[i]; i++) {
- error = this.errorList[i];
- if (this.settings.highlight) {
- this.settings.highlight.call(this, error.element, this.settings.errorClass, this.settings.validClass);
- }
- //this.showLabel( error.element, error.message );
- }
- if (this.errorList.length) {
- //this.toShow = this.toShow.add( this.containers );
- }
- if (this.settings.success) {
- for (i = 0; this.successList[i]; i++) {
- //this.showLabel( this.successList[ i ] );
- }
- }
- if (this.settings.unhighlight) {
- for (i = 0, elements = this.validElements(); elements[i]; i++) {
- this.settings.unhighlight.call(this, elements[i], this.settings.errorClass, this.settings.validClass);
- }
- }
- this.toHide = this.toHide.not(this.toShow);
- this.hideErrors();
- this.addWrapper(this.toShow).show();
- },
- submitHandler: function (form) {
- var $form = $(form);
- $form.ajaxSubmit({
- url: $btn.data('action') ? $btn.data('action') : $form.attr('action'), //按钮上是否自定义提交地址(多按钮情况)
- dataType: 'json',
- beforeSubmit: function (arr, $form, options) {
- $btn.data("loading", true);
- var text = $btn.text();
- //按钮文案、状态修改
- $btn.text(text + '...').prop('disabled', true).addClass('disabled');
- },
- success: function (data, statusText, xhr, $form) {
- function _refresh() {
- if (data.url) {
- //返回带跳转地址
- window.location.href = data.url;
- } else {
- if (data.code == 1) {
- //刷新当前页
- reloadPage(window);
- }
- }
- }
- var text = $btn.text();
- //按钮文案、状态修改
- $btn.removeClass('disabled').prop('disabled', false).text(text.replace('...', '')).parent().find('span').remove();
- if (data.code == 1) {
- if ($btn.data('success')) {
- var successCallback = $btn.data('success');
- window[successCallback](data, statusText, xhr, $form);
- return;
- }
- noty({
- text: data.msg,
- type: 'success',
- layout: 'topCenter',
- modal: true,
- // animation: {
- // open: 'animated bounceInDown', // Animate.css class names
- // close: 'animated bounceOutUp', // Animate.css class names
- // },
- timeout: 800,
- callback: {
- afterClose: function () {
- if ($btn.data('refresh') == undefined || $btn.data('refresh')) {
- if ($btn.data('success_refresh')) {
- var successRefreshCallback = $btn.data('success_refresh');
- window[successRefreshCallback](data, statusText, xhr, $form);
- return;
- } else {
- _refresh();
- }
- }
- }
- }
- }).show();
- $(window).focus();
- } else if (data.code == 0) {
- var $verify_img = $form.find(".verify_img");
- if ($verify_img.length) {
- $verify_img.attr("src", $verify_img.attr("src") + "&refresh=" + Math.random());
- }
- var $verify_input = $form.find("[name='verify']");
- $verify_input.val("");
- //$('<span class="tips_error">' + data.msg + '</span>').appendTo($btn.parent()).fadeIn('fast');
- $btn.removeProp('disabled').removeClass('disabled');
- noty({
- text: data.msg,
- type: 'error',
- layout: 'topCenter',
- modal: true,
- // animation: {
- // open: 'animated bounceInDown', // Animate.css class names
- // close: 'animated bounceOutUp', // Animate.css class names
- // },
- timeout: 800,
- callback: {
- afterClose: function () {
- _refresh();
- }
- }
- }).show();
- $(window).focus();
- }
- },
- error: function (xhr, e, statusText) {
- art.dialog({
- id: 'warning',
- icon: 'warning',
- content: statusText,
- cancelVal: '关闭',
- cancel: function () {
- reloadPage(window);
- },
- ok: function () {
- reloadPage(window);
- }
- });
- },
- complete: function () {
- $btn.data("loading", false);
- }
- });
- }
- });
- });
- });
- }
- //dialog弹窗内的关闭方法
- $('#js-dialog-close').on('click', function (e) {
- e.preventDefault();
- try {
- art.dialog.close();
- } catch (err) {
- Wind.css('artDialog');
- Wind.use('artDialog', 'iframeTools', function () {
- art.dialog.close();
- });
- }
- ;
- });
- //所有的删除操作,删除数据后刷新页面
- if ($('a.js-ajax-delete').length) {
- Wind.css('artDialog');
- Wind.use('artDialog', 'noty', function () {
- $('body').on('click', '.js-ajax-delete', function (e) {
- e.preventDefault();
- var $_this = this,
- $this = $($_this),
- href = $this.data('href'),
- refresh = $this.data('refresh'),
- msg = $this.data('msg');
- href = href ? href : $this.attr('href');
- art.dialog({
- title: false,
- icon: 'question',
- content: msg ? msg : '确定要删除吗?',
- follow: $_this,
- close: function () {
- $_this.focus(); //关闭时让触发弹窗的元素获取焦点
- return true;
- },
- okVal: "确定",
- ok: function () {
- $.getJSON(href).done(function (data) {
- if (data.code == '1') {
- noty({
- text: data.msg,
- type: 'success',
- layout: 'topCenter',
- modal: true,
- // animation: {
- // open: 'animated bounceInDown', // Animate.css class names
- // close: 'animated bounceOutUp', // Animate.css class names
- // },
- timeout: 800,
- callback: {
- afterClose: function () {
- if (refresh == undefined || refresh) {
- if (data.url) {
- //返回带跳转地址
- window.location.href = data.url;
- } else {
- //刷新当前页
- reloadPage(window);
- }
- }
- }
- }
- }).show();
- } else if (data.code == '0') {
- //art.dialog.alert(data.info);
- //alert(data.info);//暂时处理方案
- art.dialog({
- content: data.msg,
- icon: 'warning',
- ok: function () {
- this.title(data.msg);
- return true;
- }
- });
- }
- });
- },
- cancelVal: '关闭',
- cancel: true
- });
- });
- });
- }
- if ($('a.js-ajax-dialog-btn').length) {
- Wind.use('artDialog', 'noty', function () {
- $('.js-ajax-dialog-btn').on('click', function (e) {
- e.preventDefault();
- var $_this = this,
- $this = $($_this),
- href = $this.data('href'),
- refresh = $this.data('refresh'),
- msg = $this.data('msg');
- href = href ? href : $this.attr('href');
- if (!msg) {
- msg = "您确定要进行此操作吗?";
- }
- art.dialog({
- title: false,
- icon: 'question',
- content: msg,
- follow: $_this,
- close: function () {
- $_this.focus(); //关闭时让触发弹窗的元素获取焦点
- return true;
- },
- ok: function () {
- $.ajax({
- url: href,
- type: 'post',
- success: function (data) {
- if (data.code == 1) {
- noty({
- text: data.msg,
- type: 'success',
- layout: 'topCenter',
- modal: true,
- // animation: {
- // open: 'animated bounceInDown', // Animate.css class names
- // close: 'animated bounceOutUp', // Animate.css class names
- // },
- timeout: 800,
- callback: {
- afterClose: function () {
- if (refresh == undefined || refresh) {
- if (data.url) {
- //返回带跳转地址
- window.location.href = data.url;
- } else {
- //刷新当前页
- reloadPage(window);
- }
- }
- }
- }
- }).show();
- } else if (data.code == 0) {
- //art.dialog.alert(data.info);
- art.dialog({
- content: data.msg,
- icon: 'warning',
- ok: function () {
- this.title(data.msg);
- return true;
- }
- });
- }
- }
- })
- },
- cancelVal: '关闭',
- cancel: true
- });
- });
- });
- }
- if ($('a.js-ajax-btn').length) {
- Wind.use('noty', function () {
- $('.js-ajax-btn').on('click', function (e) {
- e.preventDefault();
- var $_this = this,
- $this = $($_this),
- href = $this.data('href'),
- msg = $this.data('msg');
- refresh = $this.data('refresh');
- href = href ? href : $this.attr('href');
- refresh = refresh == undefined ? 1 : refresh;
- $.getJSON(href).done(function (data) {
- if (data.code == 1) {
- noty({
- text: data.msg,
- type: 'success',
- layout: 'center',
- callback: {
- afterClose: function () {
- if (data.url) {
- location.href = data.url;
- return;
- }
- if (refresh || refresh == undefined) {
- reloadPage(window);
- }
- }
- }
- });
- } else if (data.code == 0) {
- noty({
- text: data.msg,
- type: 'error',
- layout: 'center',
- callback: {
- afterClose: function () {
- if (data.url) {
- location.href = data.url;
- }
- }
- }
- });
- }
- });
- });
- });
- }
- /*复选框全选(支持多个,纵横双控全选)。
- *实例:版块编辑-权限相关(双控),验证机制-验证策略(单控)
- *说明:
- * "js-check"的"data-xid"对应其左侧"js-check-all"的"data-checklist";
- * "js-check"的"data-yid"对应其上方"js-check-all"的"data-checklist";
- * 全选框的"data-direction"代表其控制的全选方向(x或y);
- * "js-check-wrap"同一块全选操作区域的父标签class,多个调用考虑
- */
- if ($('.js-check-wrap').length) {
- var total_check_all = $('input.js-check-all');
- //遍历所有全选框
- $.each(total_check_all, function () {
- var check_all = $(this),
- check_items;
- //分组各纵横项
- var check_all_direction = check_all.data('direction');
- check_items = $('input.js-check[data-' + check_all_direction + 'id="' + check_all.data('checklist') + '"]').not(":disabled");
- if($('.js-check-all').is(':checked')) {
- check_items.prop('checked', true);
- }
- //点击全选框
- check_all.change(function (e) {
- var check_wrap = check_all.parents('.js-check-wrap'); //当前操作区域所有复选框的父标签(重用考虑)
- if ($(this).prop('checked')) {
- //全选状态
- check_items.prop('checked', true);
- //所有项都被选中
- if (check_wrap.find('input.js-check').length === check_wrap.find('input.js-check:checked').length) {
- check_wrap.find(total_check_all).prop('checked', true);
- }
- } else {
- //非全选状态
- check_items.removeProp('checked');
- check_wrap.find(total_check_all).removeProp('checked');
- //另一方向的全选框取消全选状态
- var direction_invert = check_all_direction === 'x' ? 'y' : 'x';
- check_wrap.find($('input.js-check-all[data-direction="' + direction_invert + '"]')).removeProp('checked');
- }
- });
- //点击非全选时判断是否全部勾选
- check_items.change(function () {
- if ($(this).prop('checked')) {
- if (check_items.filter(':checked').length === check_items.length) {
- //已选择和未选择的复选框数相等
- check_all.prop('checked', true);
- }
- } else {
- check_all.removeProp('checked');
- }
- });
- });
- }
- //日期选择器
- var dateInput = $("input.js-date");
- if (dateInput.length) {
- Wind.use('datePicker', function () {
- dateInput.datePicker();
- });
- }
- //日期+时间选择器
- var dateTimeInput = $("input.js-datetime");
- if (dateTimeInput.length) {
- Wind.use('datePicker', function () {
- dateTimeInput.datePicker({
- time: true
- });
- });
- }
- var yearInput = $("input.js-year");
- if (yearInput.length) {
- Wind.use('datePicker', function () {
- yearInput.datePicker({
- startView: 'decade',
- minView: 'decade',
- format: 'yyyy',
- autoclose: true
- });
- });
- }
- // bootstrap年选择器
- var bootstrapYearInput = $("input.js-bootstrap-year")
- if (bootstrapYearInput.length) {
- Wind.css('bootstrapDatetimePicker');
- Wind.use('bootstrapDatetimePicker', function () {
- bootstrapYearInput.datetimepicker({
- language: 'zh-CN',
- format: 'yyyy',
- minView: 'decade',
- startView: 'decade',
- todayBtn: 1,
- autoclose: true
- });
- });
- }
- // bootstrap日期选择器
- var bootstrapDateInput = $("input.js-bootstrap-date")
- if (bootstrapDateInput.length) {
- Wind.css('bootstrapDatetimePicker');
- Wind.use('bootstrapDatetimePicker', function () {
- bootstrapDateInput.datetimepicker({
- language: 'zh-CN',
- format: 'yyyy-mm-dd',
- minView: 'month',
- todayBtn: 1,
- autoclose: true
- });
- });
- }
- // bootstrap日期选择器日期+时间选择器
- var bootstrapDateTimeInput = $("input.js-bootstrap-datetime");
- if (bootstrapDateTimeInput.length) {
- Wind.css('bootstrapDatetimePicker');
- Wind.use('bootstrapDatetimePicker', function () {
- bootstrapDateTimeInput.datetimepicker({
- language: 'zh-CN',
- format: 'yyyy-mm-dd hh:ii',
- todayBtn: 1,
- autoclose: true
- });
- });
- }
- //tab
- var tabs_nav = $('ul.js-tabs-nav');
- if (tabs_nav.length) {
- Wind.use('tabs', function () {
- tabs_nav.tabs('.js-tabs-content > div');
- });
- }
- //地址联动
- var $js_address_select = $('.js-address-select');
- if ($js_address_select.length > 0) {
- $('.js-address-province-select,.js-address-city-select').change(function () {
- var $this = $(this);
- var id = $this.val();
- var $child_area_select;
- var $this_js_address_select = $this.parents('.js-address-select');
- if ($this.is('.js-address-province-select')) {
- $child_area_select = $this_js_address_select.find('.js-address-city-select');
- $this_js_address_select.find('.js-address-district-select').hide();
- } else {
- $child_area_select = $this_js_address_select.find('.js-address-district-select');
- }
- var empty_option = '<option class="js-address-empty-option" value="">' + $child_area_select.find('.js-address-empty-option').text() + '</option>';
- $child_area_select.html(empty_option);
- var child_area_html = $this.data('childarea' + id);
- if (child_area_html) {
- $child_area_select.show();
- $child_area_select.html(child_area_html);
- return;
- }
- $.ajax({
- url: $this_js_address_select.data('url'),
- type: 'POST',
- dataType: 'JSON',
- data: {id: id},
- success: function (data) {
- if (data.code == 1) {
- if (data.data.areas.length > 0) {
- var html = [empty_option];
- $.each(data.data.areas, function (i, area) {
- var area_html = '<option value="[id]">[name]</option>';
- area_html = area_html.replace('[name]', area.name);
- area_html = area_html.replace('[id]', area.id);
- html.push(area_html);
- });
- html = html.join('', html);
- $this.data('childarea' + id, html);
- $child_area_select.html(html);
- $child_area_select.show();
- } else {
- $child_area_select.hide();
- }
- }
- },
- error: function () {
- },
- complete: function () {
- }
- });
- });
- }
- //地址联动end
-
- //图片放大效果
- var imgtip=$('.imgtip');
- if(imgtip.length>0){
- var html_tip='<div id="enlarge_images" style="position:fixed;display:none;z-index:2;"></div>';
- imgtip.parents('body').append(html_tip);
- var ei=imgtip.parents('body').find('#enlarge_images');
- if(ei.length>0){
- imgtip.mousemove(function(event){
- event = event || window.event;
-
- var html = '<img src="' + this.src + '" style="max-width:500px;max-height:500px;"/>';
-
- ei.html(html);
- var top = document.body.scrollTop + event.clientY + 10 + "px";
- var left = document.body.scrollLeft + event.clientX + 10 + "px";
-
- var css={
- 'display':'block',
- 'top':top,
- 'left':left,
- }
- ei.css(css);
- })
-
- imgtip.mouseout(function(){
- ei.html('');
- var css={
- 'display':'none',
- }
- ei.css(css);
- })
- imgtip.click(function(){
- ei.html('');
- var css={
- 'display':'none',
- }
- ei.css(css);
- window.open( this.src );
- })
- }
-
- }
- //文字提示图片效果
- var msg_tips=$('.msg_tips');
- var html_tip='<div id="enlarge_images" style="position:fixed;display:none;z-index:2;"></div>';
- msg_tips.parents('body').append(html_tip);
- var ei=msg_tips.parents('body').find('#enlarge_images');
- if(ei.length>0){
- msg_tips.mousemove(function(event){
- event = event || window.event;
- var msg_url=$(this).data('url');
- var img = new Image();
- img.src=msg_url;
-
- img.onload = function(){
- // 打印
- //alert('width:'+img.width+',height:'+img.height);
- var img_height=img.height;
- //console.log("图片高度:"+img_height);
- var html = '<img src="' + msg_url + '" style="max-width:800px;max-height:800px;"/>';
-
- ei.html(html);
- // var top = document.body.scrollTop + event.clientY + 10 + "px";
- // var left = document.body.scrollLeft + event.clientX + 10 + "px";
- //var top = document.body.scrollTop + event.clientY + 10;
- var top= $(document.body).height()-event.clientY-$(document).scrollTop();
- var left = document.body.scrollLeft + event.clientX + 10+'px';
- //console.log("top:"+top);
- // console.log("1111:"+);
- if(top<img_height){
- var css={
- 'display':'block',
- 'bottom':'0'+'px',
- 'left':left,
- }
- }else{
- var top = document.body.scrollTop + event.clientY + 10;
- var css={
- 'display':'block',
- 'top':top+'px',
- 'left':left,
- }
- }
- //console.log(css);
-
- ei.css(css);
- }
- })
-
- msg_tips.mouseout(function(){
- ei.html('');
- var css={
- 'display':'none',
- }
- ei.css(css);
- })
- msg_tips.click(function(){
- var msg_url=$(this).data('url');
- ei.html('');
- var css={
- 'display':'none',
- }
- ei.css(css);
- window.open( msg_url );
- })
- }
- })();
- //重新刷新页面,使用location.reload()有可能导致重新提交
- function reloadPage(win) {
- var location = win.location;
- location.href = location.pathname + location.search;
- }
- /**
- * 页面跳转
- * @param url 要打开的页面地址
- */
- function redirect(url) {
- location.href = url;
- }
- /**
- * 读取cookie
- * @param name
- * @returns
- */
- function getCookie(name) {
- var cookieValue = null;
- if (document.cookie && document.cookie != '') {
- var cookies = document.cookie.split(';');
- for (var i = 0; i < cookies.length; i++) {
- var cookie = jQuery.trim(cookies[i]);
- // Does this cookie string begin with the name we want?
- if (cookie.substring(0, name.length + 1) == (name + '=')) {
- cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
- break;
- }
- }
- }
- return cookieValue;
- }
- /**
- * 设置cookie
- */
- function setCookie(name, value, options) {
- options = options || {};
- if (value === null) {
- value = '';
- options.expires = -1;
- }
- var expires = '';
- if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
- var date;
- if (typeof options.expires == 'number') {
- date = new Date();
- date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
- } else {
- date = options.expires;
- }
- expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
- }
- var path = options.path ? '; path=' + options.path : '';
- var domain = options.domain ? '; domain=' + options.domain : '';
- var secure = options.secure ? '; secure' : '';
- document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
- }
- /**
- * 打开iframe式的窗口对话框
- * @param url
- * @param title
- * @param options
- */
- function openIframeDialog(url, title, options) {
- Wind.css('artDialog');
- var params = {
- title: title,
- lock: true,
- opacity: 0,
- width: "95%",
- height: '90%'
- };
- params = options ? $.extend(params, options) : params;
- Wind.use('artDialog', 'iframeTools', function () {
- art.dialog.open(url, params);
- });
- }
- /**
- * 打开地图对话框
- *
- * @param url
- * @param title
- * @param options
- * @param callback
- */
- function openMapDialog(url, title, options, callback) {
- Wind.css('artDialog');
- var params = {
- title: title,
- lock: true,
- opacity: 0,
- width: "95%",
- height: 400,
- ok: function () {
- if (callback) {
- var d = this.iframe.contentWindow;
- var lng = $("#lng_input", d.document).val();
- var lat = $("#lat_input", d.document).val();
- var address = {};
- address.address = $("#address_input", d.document).val();
- address.province = $("#province_input", d.document).val();
- address.city = $("#city_input", d.document).val();
- address.district = $("#district_input", d.document).val();
- callback.apply(this, [lng, lat, address]);
- }
- }
- };
- params = options ? $.extend(params, options) : params;
- Wind.use('artDialog', 'iframeTools', function () {
- art.dialog.open(url, params);
- });
- }
- /**
- * 打开文件上传对话框
- * @param dialog_title 对话框标题
- * @param callback 回调方法,参数有(当前dialog对象,选择的文件数组,你设置的extra_params)
- * @param extra_params 额外参数,object
- * @param multi 是否可以多选
- * @param filetype 文件类型,image,video,audio,file
- * @param app 应用名,CMF的应用名
- */
- function openUploadDialog(dialog_title, callback, extra_params, multi, filetype, app) {
- Wind.css('artDialog');
- multi = multi ? 1 : 0;
- filetype = filetype ? filetype : 'image';
- app = app ? app : GV.APP;
- var params = '&multi=' + multi + '&filetype=' + filetype + '&app=' + app;
- Wind.use("artDialog", "iframeTools", function () {
- art.dialog.open(GV.ROOT + 'user/Asset/webuploader?' + params, {
- title: dialog_title,
- id: new Date().getTime(),
- width: '600px',
- height: '350px',
- lock: true,
- fixed: true,
- background: "#CCCCCC",
- opacity: 0,
- ok: function () {
- if (typeof callback == 'function') {
- var iframewindow = this.iframe.contentWindow;
- var files = iframewindow.get_selected_files();
- console.log(files);
- if (files && files.length > 0) {
- callback.apply(this, [this, files, extra_params]);
- } else {
- return false;
- }
- }
- },
- cancel: true
- });
- });
- }
- /**
- * 单个文件上传
- * @param dialog_title 上传对话框标题
- * @param input_selector 图片容器
- * @param filetype 文件类型,image,video,audio,file
- * @param extra_params 额外参数,object
- * @param app 应用名,CMF的应用名
- */
- function uploadOne(dialog_title, input_selector, filetype, extra_params, app) {
- filetype = filetype ? filetype : 'file';
- openUploadDialog(dialog_title, function (dialog, files) {
- $(input_selector).val(files[0].filepath);
- $(input_selector + '-preview').attr('href', files[0].preview_url);
- $(input_selector + '-name').val(files[0].name);
- $(input_selector + '-name-text').text(files[0].name);
- }, extra_params, 0, filetype, app);
- }
- /**
- * 单个图片上传
- * @param dialog_title 上传对话框标题
- * @param input_selector 图片容器
- * @param extra_params 额外参数,object
- * @param app 应用名,CMF的应用名
- */
- function uploadOneImage(dialog_title, input_selector, extra_params, app) {
- openUploadDialog(dialog_title, function (dialog, files) {
- $(input_selector).val(files[0].filepath);
- $(input_selector + '-preview').attr('src', files[0].preview_url);
- $(input_selector + '-name').val(files[0].name);
- $(input_selector + '-name-text').text(files[0].name);
- }, extra_params, 0, 'image', app);
- }
- /**
- * 多图上传
- * @param dialog_title 上传对话框标题
- * @param container_selector 图片容器
- * @param item_tpl_wrapper_id 单个图片html模板容器id
- * @param extra_params 额外参数,object
- * @param app 应用名,CMF 的应用名
- */
- function uploadMultiImage(dialog_title, container_selector, item_tpl_wrapper_id, extra_params, app) {
- openUploadDialog(dialog_title, function (dialog, files) {
- var tpl = $('#' + item_tpl_wrapper_id).html();
- var html = '';
- $.each(files, function (i, item) {
- var itemtpl = tpl;
- itemtpl = itemtpl.replace(/\{id\}/g, item.id);
- itemtpl = itemtpl.replace(/\{url\}/g, item.url);
- itemtpl = itemtpl.replace(/\{preview_url\}/g, item.preview_url);
- itemtpl = itemtpl.replace(/\{filepath\}/g, item.filepath);
- itemtpl = itemtpl.replace(/\{name\}/g, item.name);
- html += itemtpl;
- });
- $(container_selector).append(html);
- }, extra_params, 1, 'image', app);
- }
- /**
- * 多文件上传
- * @param dialog_title 上传对话框标题
- * @param container_selector 图片容器
- * @param item_tpl_wrapper_id 单个图片html模板容器id
- * @param filetype 文件类型,image,video,audio,file
- * @param extra_params 额外参数,object
- * @param app 应用名,CMF 的应用名
- */
- function uploadMultiFile(dialog_title, container_selector, item_tpl_wrapper_id, filetype, extra_params, app) {
- filetype = filetype ? filetype : 'file';
- openUploadDialog(dialog_title, function (dialog, files) {
- var tpl = $('#' + item_tpl_wrapper_id).html();
- var html = '';
- $.each(files, function (i, item) {
- var itemtpl = tpl;
- itemtpl = itemtpl.replace(/\{id\}/g, item.id);
- itemtpl = itemtpl.replace(/\{url\}/g, item.url);
- itemtpl = itemtpl.replace(/\{preview_url\}/g, item.preview_url);
- itemtpl = itemtpl.replace(/\{filepath\}/g, item.filepath);
- itemtpl = itemtpl.replace(/\{name\}/g, item.name);
- html += itemtpl;
- });
- $(container_selector).append(html);
- }, extra_params, 1, filetype, app);
- }
- /**
- * 查看图片对话框
- * @param img 图片地址
- */
- function imagePreviewDialog(img) {
- Wind.css('layer');
- Wind.use("layer", function () {
- layer.photos({
- photos: {
- "title": "", //相册标题
- "id": 'image_preview', //相册id
- "start": 0, //初始显示的图片序号,默认0
- "data": [ //相册包含的图片,数组格式
- {
- "alt": "",
- "pid": 666, //图片id
- "src": img, //原图地址
- "thumb": img //缩略图地址
- }
- ]
- } //格式见API文档手册页
- , anim: 5, //0-6的选择,指定弹出图片动画类型,默认随机
- shadeClose: true,
- // skin: 'layui-layer-nobg',
- shade: [0.5, '#000000'],
- shadeClose: true,
- })
- });
- }
- function artdialogAlert(msg) {
- Wind.css('artDialog');
- Wind.use("artDialog", function () {
- art.dialog({
- id: new Date().getTime(),
- icon: "error",
- fixed: true,
- lock: true,
- background: "#CCCCCC",
- opacity: 0,
- content: msg,
- ok: function () {
- return true;
- }
- });
- });
- }
- function openIframeLayer(url, title, options) {
- var params = {
- type: 2,
- title: title,
- shadeClose: true,
- // skin: 'layui-layer-nobg',
- anim: -1,
- shade: [0.001, '#000000'],
- shadeClose: true,
- area: ['95%', '90%'],
- move: false,
- content: url,
- yes: function (index, layero) {
- //do something
- layer.close(index); //如果设定了yes回调,需进行手工关闭
- }
- };
- params = options ? $.extend(params, options) : params;
- Wind.css('layer');
- Wind.use("layer", function () {
- layer.open(params);
- });
- }
|