|
板凳

楼主 |
发表于 2025-4-2 14:44:45
|
只看该作者
- <p><button class="layui-btn layui-btn-sm layui-btn-primary layui-border-blue" lay-on="searchForm"></p><p> <i class="layui-icon layui-icon-search"></i></p><p> <span>搜索添加点检表</span></p><p></button></p>
复制代码- util.on('lay-on', {
- "searchForm": function (o) {
- if (macode == "") {
- layer.msg("请在【生产作业】页面扫描 机台代码", { icon: 2 });
- return false;
- }
- layer.open({
- type: 2,
- title: "搜索点检表",
- shade: 0.2,
- maxmin:true,
- shadeClose: true,
- area: ['65%', '90%'],
- content: '../L.php/spotcheck/formlist?macode=' + macode,
- end: function(){
- table.reload("currentTableId",{});
- }
- })
- }
- })
复制代码
|
|