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,7 +36,15 @@ spa_define(function () {
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 48
                    newSubject: {
41 49
                        keyPressInterval: 1,
42 50
                        hide: function () {
@ -88,7 +96,7 @@ spa_define(function () {
88 96
                var saveBtn = root.find(".opt-save"),
89 97
                    headArea = root.find(".head-ctn"),
90 98
                    save = function () {
91
                        // console.log(form.val().researcherList);
99
                        // console.log($(".org").find("input").val());
92 100
                        var pic = [];
93 101
                        $('#fileList').find('img').each(function () {
94 102
                            pic.push($(this).attr("name"));
@ -96,7 +104,8 @@ spa_define(function () {
96 104
                        form.val({pic: oString(pic), researchers: form.val().researcherList});
97 105
                        form.val({
98 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 111
                        if (form.val().name == null) {
@ -125,6 +134,7 @@ spa_define(function () {
125 134
                    }
126 135
                });
127 136
                form.val(data.data);
137
                $(".org").find("input").val(data.data.orgName);
128 138
                if (data.data.industry) {
129 139
                    form.val({industryList: split1(data.data.industry)});
130 140
                }

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

@ -36,9 +36,17 @@ spa_define(function () {
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 50
                        hide: function () {
43 51
                            this.shown = false;
44 52
                            this.ctn.removeClass("open");
@ -95,7 +103,8 @@ spa_define(function () {
95 103
                        form.val({pic: oString(pic), researchers: form.val().researcherList});
96 104
                        form.val({
97 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 110
                        if (form.val().name == null) {