[转][layui]table 的一个BUG

转换静态表格,一直只能显示 10 行,研究发现解决方法有两个:
1、参数里: limit: 30, 添加参数以确保显示更多行
2、修改 table.js 里面的 F.prototype.config ,添加 page 的初始值

修改 laydate.js

t.calendar().done().done(null,"change"))

修改为:

t.done().done(null,"change"))

用在日历展示页面中。

原文地址:https://www.cnblogs.com/z5337/p/9996689.html