
layui
code monkey
这个作者很懒,什么都没留下…
展开
-
记录一次layui table 列宽设置失效的问题
table.render({ id: 'field', elem: '#demo', type: 'checkbox' , width: 600 , height: 350 ...原创 2020-08-06 16:21:08 · 2720 阅读 · 0 评论 -
LayUI+JQuery实现动态表单(搜索条件的动态增减)
效果图:元素解析:每一行代表一个 <form>,根据 id 来辨别,通过 layui 的 form.val() 方法获取值注意 layui 的 table 使用 where 会有缓存,所以需要在每次执行完查询之后将 where 的缓存内容置为空 即 done: function (res, curr, count) { this.where = {}; }代码html 部分<button class="layui-btn layui-bt...原创 2020-07-31 15:35:07 · 2306 阅读 · 0 评论 -
layui treetable-lay多选框checkbox默认选中
根据后端返回的 checked 字段来判断是否选中layui.config({ base: '/static/layui/' }).extend({ treeTable: 'treetable/treetable' }); layui.use(['treeTable'], function () { var $ = layui.jquery; var treeTa原创 2020-07-28 10:36:55 · 5461 阅读 · 0 评论