中扬CRM客户关系管理系统
#
luxiaotao1123
2022-11-21 509f02a9ec89a15f20015910c31d06c3b5200000
#
1个文件已修改
89 ■■■■■ 已修改文件
src/main/webapp/static/js/plan/plan.js 89 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/plan/plan.js
@@ -218,53 +218,66 @@
                            );
                            element.init();form.render();
                            layer.close(loadIndex);
                            // 确认规划单类型
                            form.on('submit(planTypeSubmit)', function (data) {
                                layer.close(dIndex);
                                let planType = data.field.planType;
                                // admin.open({
                                //     type: 1,
                                //     area: '600px',
                                //     title: '添加售前规划申请单',
                                //     content: $('#editDialog').html(),
                                //     success: function (layero, dIndex) {
                                //         layDateRender();
                                //         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});
                                //                     }
                                //                 }
                                //             })
                                //             return false;
                                //         });
                                //         $(layero).children('.layui-layer-content').css('overflow', 'visible');
                                //         layui.form.render('select');
                                //     }
                                // });
                                let planTypeId = data.field.planType;
                                let loadIndex0 = layer.load(2);
                                $.ajax({
                                    url: baseUrl + "/planType/" + planTypeId + "/auth",
                                    headers: {'token': localStorage.getItem('token')},
                                    method: 'GET',
                                    success: function (res0) {
                                        let planType = res0.data;
                                        if (res0.code === 200) {
                                            admin.open({
                                                type: 1,
                                                area: '600px',
                                                title: '添加售前规划申请单' + ' - ' + planType.name,
                                                content: $('#editDialog').html(),
                                                success: function (layero0, dIndex0) {
                                                    layer.close(loadIndex0);
                                                    layDateRender();
                                                    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(dIndex0);
                                                                    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');
                                                }
                                            });
                                        } else if (res0.code === 403) {
                                            top.location.href = baseUrl + "/";
                                        } else {
                                            layer.msg(res0.msg, {icon: 2});
                                        }
                                    }
                                })
                                return false;
                            });
                        }
                    })
                } else if (res.code === 403){
                    top.location.href = baseUrl+"/";
                }else {
                } else {
                    layer.msg(res.msg, {icon: 2});
                }
            }