layui弹出层基本样式

 function addmenu() {
        layer.open({
            title: "添加目录",
            type: 2,
            content: "menuadd.html",
            area: ['50%', '70%'],
            skin: "layui-layer-molv",
            btn: ['确定', '关闭'],
            success: function (layero, index) {    //成功获得加载changefile.html时
                //// console.log(obj.data.editAble);
                var body = layer.getChildFrame('body', index);
                //console.log(rowselect[0].filename);
                body.find(".sendname").val(Sendandre.seItem.sendname);   //通过class名进行获取数据
                body.find(".minwe").val(Sendandre.seItem.minwe);
                body.find(".maxwe").val(Sendandre.seItem.maxwe);
            },
            yes: function (index, layero) {
                console.log(layero);
                //layer.alert('来到这里了'+index);
                let body = layer.getChildFrame("body",index);
                let data = {};
                body.find("#addmenuform").serializeArray().forEach(function (item) {    //获取弹出层写下的数据
                    
                    data[item.name] = item.value;   //根据表单元素的name属性来获取数据
                   
                });
                console.log(data);
                $.post('/api/domenu', data, function (result) {
                    if (result == "success") {
                        layer.alert("增加目录成功");
                    }
                    
                    setTimeout(function(){
                        layer.close(index);
                        parent.location.reload();
                    },600);
                });
                
                layer.close(index);
            }
        });
    }

你可能感兴趣的:(笔记)