潘志宝
5 天以前 6d75723f3e3bd43895db2470bc5fabb2314dbe8b
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
$(function() {
 
    // init code editor
    var codeEditor;
    function initIde(glueSource) {
        if (codeEditor == null) {
            codeEditor = CodeMirror(document.getElementById("ideWindow"), {
                mode : ideMode,
                lineNumbers : true,
                matchBrackets : true,
                value: glueSource
            });
        } else {
            codeEditor.setValue(glueSource);
        }
    }
 
    initIde($("#version_now").val());
 
    // code change
    $(".source_version").click(function(){
        var sourceId = $(this).attr('version');
        var temp = $( "#" + sourceId ).val();
 
        //codeEditor.setValue('');
        initIde(temp);
    });
 
    // code source save
    $("#save").click(function() {
        $('#saveModal').modal({backdrop: false, keyboard: false}).modal('show');
    });
 
    $("#saveModal .ok").click(function() {
 
        var glueSource = codeEditor.getValue();
        var glueRemark = $("#glueRemark").val();
        
        if (!glueRemark) {
            layer.open({
                title: I18n.system_tips,
                btn: [ I18n.system_ok],
                content: I18n.system_please_input + I18n.jobinfo_glue_remark ,
                icon: '2'
            });
            return;
        }
        if (glueRemark.length <4 || glueRemark.length > 100) {
            layer.open({
                title: I18n.system_tips ,
                btn: [ I18n.system_ok ],
                content: I18n.jobinfo_glue_remark_limit ,
                icon: '2'
            });
            return;
        }
 
        $.ajax({
            type : 'POST',
            url : base_url + '/jobcode/save',
            data : {
                'id' : id,
                'glueSource' : glueSource,
                'glueRemark' : glueRemark
            },
            dataType : "json",
            success : function(data){
                if (data.code == 200) {
                    layer.open({
                        title: I18n.system_tips,
                        btn: [ I18n.system_ok ],
                        content: (I18n.system_save + I18n.system_success) ,
                        icon: '1',
                        end: function(layero, index){
                            //$(window).unbind('beforeunload');
                            window.location.reload();
                        }
                    });
                } else {
                    layer.open({
                        title: I18n.system_tips,
                        btn: [ I18n.system_ok ],
                        content: (data.msg || (I18n.system_save + I18n.system_fail) ),
                        icon: '2'
                    });
                }
            }
        });
 
    });
    
    // before upload
    /*$(window).bind('beforeunload',function(){
        return 'Glue尚未保存,确定离开Glue编辑器?';
    });*/
    
});