中扬CRM客户关系管理系统
#
luxiaotao1123
2022-11-23 16d0d58f36ab5dd862d1858f9fd84c7b8d9a74bd
src/main/webapp/static/js/plan/plan.js
@@ -391,47 +391,55 @@
    function showEditModel(mData) {
        let loadIndex = layer.load(2);
        $.ajax({
            url: baseUrl + "/planType/" + mData.planType + "/auth",
            url: baseUrl + "/plan/" + mData.id + "/auth",
            headers: {'token': localStorage.getItem('token')},
            method: 'GET',
            success: function (res) {
                layer.close(loadIndex);
                admin.open({
                    type: 1,
                    area: ["95%", "90%"],
                    offset: 'auto',
                    title: '编辑售前规划申请单 - ' + res.data.name,
                    content: $('#editDialog').html(),
                    success: function (layero, dIndex) {
                        console.log(mData)
                        layDateRender(mData);
                        form.val('detail', mData);
                        form.on('submit(editSubmit)', function (data) {
                            var loadIndex = layer.load(2);
                            $.ajax({
                                url: baseUrl+"/plan/"+(mData?'update':'add')+"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                data: data.field,
                                method: 'POST',
                                success: function (res) {
                                    layer.close(loadIndex);
                                    if (res.code === 200){
                                        layer.close(dIndex);
                                        layer.msg(res.msg, {icon: 1});
                                        tableReload();
                                    } else if (res.code === 403){
                                        top.location.href = baseUrl+"/";
                                    }else {
                                        layer.msg(res.msg, {icon: 2});
                if (res.code === 200){
                    let plan = res.data;
                    console.log(plan)
                    admin.open({
                        type: 1,
                        area: ["95%", "90%"],
                        offset: 'auto',
                        title: '编辑售前规划申请单 - ' + plan.planType$,
                        content: $('#editDialog').html(),
                        success: function (layero, dIndex) {
                            $('#customizeBox').html(plan.formHtml)
                            layDateRender(mData);
                            form.val('detail', mData);
                            form.on('submit(editSubmit)', function (data) {
                                let loadIndex = layer.load(2);
                                $.ajax({
                                    url: baseUrl+"/plan/update/auth",
                                    headers: {'token': localStorage.getItem('token')},
                                    data: data.field,
                                    method: 'POST',
                                    success: function (res) {
                                        layer.close(loadIndex);
                                        if (res.code === 200){
                                            layer.close(dIndex);
                                            layer.msg(res.msg, {icon: 1});
                                            tableReload();
                                        } else if (res.code === 403){
                                            top.location.href = baseUrl+"/";
                                        }else {
                                            layer.msg(res.msg, {icon: 2});
                                        }
                                    }
                                }
                            })
                            return false;
                        });
                        $(layero).children('.layui-layer-content').css('overflow', 'visible');
                        layui.form.render('select');
                    }
                });
                                })
                                return false;
                            });
                            $(layero).children('.layui-layer-content').css('overflow', 'visible');
                            layui.form.render('select');
                        }
                    });
                } else if (res.code === 403){
                    top.location.href = baseUrl+"/";
                } else {
                    layer.msg(res.msg, {icon: 2});
                }
            }
        });
    }