merge 2.3
This commit is contained in:
parent
f23eb3752f
commit
f8a4d589fb
@ -134,7 +134,7 @@ layui.use('laydate', function(){
|
|||||||
elem: '#test2'
|
elem: '#test2'
|
||||||
//,format: 'yyyy年MM月dd日'
|
//,format: 'yyyy年MM月dd日'
|
||||||
//,value: new Date(1989,9,14)
|
//,value: new Date(1989,9,14)
|
||||||
,isInitValue: true
|
,isInitValue: false
|
||||||
,format: 'yyyyMMdd'
|
,format: 'yyyyMMdd'
|
||||||
,value: '20170910'
|
,value: '20170910'
|
||||||
|
|
||||||
|
@ -18,7 +18,6 @@ layui.define(function(exports){
|
|||||||
|
|
||||||
//构造器
|
//构造器
|
||||||
,Class = function(options){
|
,Class = function(options){
|
||||||
|
|
||||||
var that = this;
|
var that = this;
|
||||||
that.config = options || {};
|
that.config = options || {};
|
||||||
that.config.index = ++laypage.index;
|
that.config.index = ++laypage.index;
|
||||||
@ -164,7 +163,7 @@ layui.define(function(exports){
|
|||||||
}()
|
}()
|
||||||
|
|
||||||
//刷新
|
//刷新
|
||||||
,refresh: '<span class="layui-laypage-refresh"><i class="layui-icon">ဂ</i></span>'
|
,refresh: '<a href="javascript:;" data-page="'+ config.curr +'" class="layui-laypage-refresh"><i class="layui-icon">ဂ</i></a>'
|
||||||
|
|
||||||
//跳页区域
|
//跳页区域
|
||||||
,skip: function(){
|
,skip: function(){
|
||||||
@ -259,24 +258,6 @@ layui.define(function(exports){
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
//刷新当前页
|
|
||||||
Class.prototype.update = function(elem){
|
|
||||||
if(!elem) return;
|
|
||||||
var that = this
|
|
||||||
,config = that.config
|
|
||||||
,curr = config.curr
|
|
||||||
,spani = elem[tag]('i')[0];
|
|
||||||
|
|
||||||
if(spani){
|
|
||||||
laypage.on(spani, 'click', function(){
|
|
||||||
config.curr = curr;
|
|
||||||
that.render();
|
|
||||||
console.log(config.curr);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
//渲染分页
|
//渲染分页
|
||||||
Class.prototype.render = function(load){
|
Class.prototype.render = function(load){
|
||||||
var that = this
|
var that = this
|
||||||
@ -304,8 +285,6 @@ layui.define(function(exports){
|
|||||||
}
|
}
|
||||||
|
|
||||||
that.skip(elem);
|
that.skip(elem);
|
||||||
|
|
||||||
that.update(elem);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//外部接口
|
//外部接口
|
||||||
|
Loading…
Reference in New Issue
Block a user