懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**
 * 详情对话框
 */
var SysConfigInfoDlg = {
    data: {
        name: "",
        dictFlag: "",
        code: "",
        value: "",
        remark: "",
        createTime: "",
        createUser: "",
        updateTime: "",
        updateUser: ""
    }
};
 
layui.use(['form', 'admin', 'ax'], function () {
    var $ = layui.jquery;
    var $ax = layui.ax;
    var form = layui.form;
    var admin = layui.admin;
 
    //获取详情信息,填充表单
    var ajax = new $ax(Feng.ctxPath + "/sysConfig/detail?id=" + Feng.getUrlParam("id"));
    var result = ajax.start();
    form.val('sysConfigForm', result.data);
 
    //初始化字典选择框
    var activeDictSelect = function () {
        $("#dictCodeDiv").show();
        $("#customCodeDiv").hide();
        status = "dict";
 
        //初始化所有字典类型
        $("#dictTypeId").html('<option value="">请选择系统字典类型</option>');
        var ajax = new $ax(Feng.ctxPath + "/dictType/listTypes", function (data) {
 
            for (var i = 0; i < data.data.length; i++) {
                var dictTypeId = data.data[i].dictTypeId;
                var name = data.data[i].name;
                var code = data.data[i].code;
                $("#dictTypeId").append('<option value="' + dictTypeId + '">' + code + '--' + name + '</option>');
            }
            form.render();
 
        }, function (data) {
        });
        ajax.start();
    };
 
    //初始化非字典选择
    var activeCustomSelect = function () {
        $("#dictCodeDiv").hide();
        $("#customCodeDiv").show();
        status = "custom";
    };
 
    //更新字典详情列表
    var updateDictDetail = function (dictTypeId, activeCode) {
        $("#dictDetails").html('');
        var ajax = new $ax(Feng.ctxPath + "/dict/listDicts", function (data) {
 
            for (var i = 0; i < data.data.length; i++) {
                var name = data.data[i].name;
                var code = data.data[i].code;
 
                if (activeCode === code) {
                    $("#dictDetails").append('<input type="radio" name="dictValue" value="' + code + '" title="' + name + '" checked="checked">');
                } else {
                    $("#dictDetails").append('<input type="radio" name="dictValue" value="' + code + '" title="' + name + '">');
                }
 
            }
            form.render();
 
        }, function (data) {
        });
        ajax.set("dictTypeId", dictTypeId);
        ajax.start();
    };
 
    //监听单选切换
    form.on('radio(dictChecked)', function (data) {
        if (data.value === "Y") {
            activeDictSelect();
        } else {
            activeCustomSelect();
        }
    });
 
    //表单提交事件
    form.on('submit(btnSubmit)', function (data) {
 
        //如果是选择字典
        if (status === "dict") {
 
            var radio = $('input:radio[name="dictValue"]:checked').val();
 
            if (!$("#dictTypeId").val() || !radio) {
                Feng.error("请选择具体字典!");
                return false;
            }
        } else {
            if (!$("#value").val()) {
                Feng.error("请填写参数值!");
                return false;
            }
        }
 
        var ajax = new $ax(Feng.ctxPath + "/sysConfig/editItem", function (data) {
            Feng.success("更新成功!");
            window.location.href = Feng.ctxPath + '/sysConfig'
        }, function (data) {
            Feng.error("更新失败!" + data.responseJSON.message)
        });
        ajax.set(data.field);
        ajax.start();
 
        return false;
    });
 
    //监听字典选择
    form.on('select(dictTypeId)', function (data) {
 
        var dictTypeId = data.value;
 
        //初始化字典详细列表
        updateDictDetail(dictTypeId);
 
    });
 
    //返回按钮
    $("#backupPage").click(function () {
        window.location.href = Feng.ctxPath + '/sysConfig'
    });
 
    //如果当前配置是带字典类型,则初始化字典类型选择
    if (result.data.dictFlag === 'Y') {
        activeDictSelect();
 
        //更新选项
        $("#dictTypeId").val(result.data.dictTypeId);
        form.render();
 
        //更新字典类型的详情
        updateDictDetail(result.data.dictTypeId, result.data.value);
    } else {
        activeCustomSelect();
    }
 
    //如果是系统类型,则不能改变取值范围和字典类型
    if(result.data.code.indexOf('GUNS_') === 0){
        $("[name='dictFlag']").attr("disabled","disabled");
        $("#dictTypeId").attr("disabled","disabled");
        form.render();
    }
 
});