Browse Source

科研成果管理机构名称录入问题

XMTT 7 years ago
parent
commit
b4e8d59904
2 changed files with 26 additions and 7 deletions
  1. 13 3
      js/model/sys/resresult/edit.js
  2. 13 4
      js/model/sys/resresult/new.js

+ 13 - 3
js/model/sys/resresult/edit.js

36
                            }
36
                            }
37
                        }
37
                        }
38
                    },
38
                    },
39
                    orgName: {keyPressInterval: 1},
39
                    orgName: {
40
                        keyPressInterval: 1,
41
                        hide: function () {
42
                            this.shown = false;
43
                            this.ctn.removeClass("open");
44
                            this.lastQuerying = null;
45
                            this.lastQueryed = null;
46
                        }
47
                    },
40
                    newSubject: {
48
                    newSubject: {
41
                        keyPressInterval: 1,
49
                        keyPressInterval: 1,
42
                        hide: function () {
50
                        hide: function () {
88
                var saveBtn = root.find(".opt-save"),
96
                var saveBtn = root.find(".opt-save"),
89
                    headArea = root.find(".head-ctn"),
97
                    headArea = root.find(".head-ctn"),
90
                    save = function () {
98
                    save = function () {
91
                        // console.log(form.val().researcherList);
99
                        // console.log($(".org").find("input").val());
92
                        var pic = [];
100
                        var pic = [];
93
                        $('#fileList').find('img').each(function () {
101
                        $('#fileList').find('img').each(function () {
94
                            pic.push($(this).attr("name"));
102
                            pic.push($(this).attr("name"));
96
                        form.val({pic: oString(pic), researchers: form.val().researcherList});
104
                        form.val({pic: oString(pic), researchers: form.val().researcherList});
97
                        form.val({
105
                        form.val({
98
                            industry: oString(form.val().industryList),
106
                            industry: oString(form.val().industryList),
99
                            subject: oString(form.val().subjectList)
107
                            subject: oString(form.val().subjectList),
108
                            orgName: $(".org").find("input").val()
100
                        });
109
                        });
101
110
102
                        if (form.val().name == null) {
111
                        if (form.val().name == null) {
125
                    }
134
                    }
126
                });
135
                });
127
                form.val(data.data);
136
                form.val(data.data);
137
                $(".org").find("input").val(data.data.orgName);
128
                if (data.data.industry) {
138
                if (data.data.industry) {
129
                    form.val({industryList: split1(data.data.industry)});
139
                    form.val({industryList: split1(data.data.industry)});
130
                }
140
                }

+ 13 - 4
js/model/sys/resresult/new.js

36
                            }
36
                            }
37
                        }
37
                        }
38
                    },
38
                    },
39
                    orgName:{keyPressInterval:1},
40
                    newSubject:{
41
                        keyPressInterval:1,
39
                    orgName: {
40
                        keyPressInterval: 1,
41
                        hide: function () {
42
                            this.shown = false;
43
                            this.ctn.removeClass("open");
44
                            this.lastQuerying = null;
45
                            this.lastQueryed = null;
46
                        }
47
                    },
48
                    newSubject: {
49
                        keyPressInterval: 1,
42
                        hide: function () {
50
                        hide: function () {
43
                            this.shown = false;
51
                            this.shown = false;
44
                            this.ctn.removeClass("open");
52
                            this.ctn.removeClass("open");
95
                        form.val({pic: oString(pic), researchers: form.val().researcherList});
103
                        form.val({pic: oString(pic), researchers: form.val().researcherList});
96
                        form.val({
104
                        form.val({
97
                            industry: oString(form.val().industryList),
105
                            industry: oString(form.val().industryList),
98
                            subject: oString(form.val().subjectList)
106
                            subject: oString(form.val().subjectList),
107
                            orgName: $(".org").find("input").val()
99
                        });
108
                        });
100
109
101
                        if (form.val().name == null) {
110
                        if (form.val().name == null) {