layui弹出层中添加文本框

有时候,我们需要针对,审核时给出原因这一需求,在弹出层添加文本框,比如

layui弹出层中添加文本框_第1张图片

这时候就用到了

layer.prompt()
var remarkReason = "";
        layer.prompt({
            formType: 0,
            value: '',
            title: '请输入不通过原因',
            btn: ['确定','取消'], //按钮,
            btnAlign: 'c'
        }, function(value,index){
            remarkReason = value;
            layer.close(index);
                //执行不通过
                var ids = "";
                for (var i = 0; i < data.length; i++) {
                    ids += data[i].id + ",";
                }
                $.ajax({
                    type: 'POST',
                    url: "/ipmcenter/wechatexamine/noPass",
                    data: {
                        ids: ids,
                        remarkReason: remarkReason
                    },
                    dataType: "json",
                    success: function (data) {

                        if(data.code == 0){
                            layer.msg(data.data, {icon: 1});
                            table.reload(We.tableId);
                            $.ajax({
                                type: 'POST',
                                url: "/ipmcenter/wechatexamine/examineLog",
                                data: {
                                    ids: ids
                                },
                                dataType: "json",
                                success: function (data) {
                                    if(data.code == 0){
                                        //layer.msg(data.data, {icon: 1});
                                        //table.reload(ExamineLog.tableId);
                                        // table.reload(ExamineLog.tableId,{
                                        //         page: {
                                        //             curr: 1 //重新从第 1 页开始
                                        //         }
                                        //         ,where: {
                                        //
                                        //             ids: ids
                                        //         }
                                        //     }
                                        // );

                                    } else {
                                        //layer.msg(data.data, {icon: 2});

                                    }

                                }
                            });

                        } else {
                            layer.msg(data.data, {icon: 2});

                        }

                    }
                });
        },function (value,index) {

        });

 

你可能感兴趣的:(layui弹出层中添加文本框)