/** @Name : layui.laypage 分页组件 @Author:贤心 @License:LGPL */ layui.define(function(exports){ "use strict"; function laypage(options){ var skin = 'laypagecss'; new Page(options); } var doc = document, id = 'getElementById', tag = 'getElementsByTagName'; var index = 0, Page = function(options){ var that = this; var conf = that.config = options || {}; conf.item = index++; that.render(true); }; Page.on = function(elem, even, fn){ elem.attachEvent ? elem.attachEvent('on'+ even, function(){ fn.call(elem, window.even); //for ie, this指向为当前dom元素 }) : elem.addEventListener(even, fn, false); return Page; }; //判断传入的容器类型 Page.prototype.type = function(){ var conf = this.config; if(typeof conf.cont === 'object'){ return conf.cont.length === undefined ? 2 : 3; } }; //分页视图 Page.prototype.view = function(){ var that = this, conf = that.config, view = [], dict = {}; conf.pages = conf.pages|0; conf.curr = (conf.curr|0) || 1; conf.groups = 'groups' in conf ? (conf.groups|0) : 5; conf.first = 'first' in conf ? conf.first : '首页'; conf.last = 'last' in conf ? conf.last : '末页'; conf.prev = 'prev' in conf ? conf.prev : '上一页'; conf.next = 'next' in conf ? conf.next : '下一页'; if(conf.pages <= 1){ return ''; } if(conf.groups > conf.pages){ conf.groups = conf.pages; } //计算当前组 dict.index = Math.ceil((conf.curr + ((conf.groups > 1 && conf.groups !== conf.pages) ? 1 : 0))/(conf.groups === 0 ? 1 : conf.groups)); //当前页非首页,则输出上一页 if(conf.curr > 1 && conf.prev){ view.push(''+ conf.prev +''); } //当前组非首组,则输出首页 if(dict.index > 1 && conf.first && conf.groups !== 0){ view.push(''+ conf.first +'…'); } //输出当前页组 dict.poor = Math.floor((conf.groups-1)/2); dict.start = dict.index > 1 ? conf.curr - dict.poor : 1; dict.end = dict.index > 1 ? (function(){ var max = conf.curr + (conf.groups - dict.poor - 1); return max > conf.pages ? conf.pages : max; }()) : conf.groups; if(dict.end - dict.start < conf.groups - 1){ //最后一组状态 dict.start = dict.end - conf.groups + 1; } for(; dict.start <= dict.end; dict.start++){ if(dict.start === conf.curr){ view.push(''+ dict.start +''); } else { view.push(''+ dict.start +''); } } //总页数大于连续分页数,且当前组最大页小于总页,输出尾页 if(conf.pages > conf.groups && dict.end < conf.pages && conf.last && conf.groups !== 0){ view.push('…'+ conf.last +''); } //当前页不为尾页时,输出下一页 dict.flow = !conf.prev && conf.groups === 0; if(conf.curr !== conf.pages && conf.next || dict.flow){ view.push((function(){ return (dict.flow && conf.curr === conf.pages) ? ''+ conf.next +'' : ''+ conf.next +''; }())); } return '