|
@@ -866,8 +866,11 @@ export default {
|
|
|
window.open(window.origin + "/#/anliDetail?aid=" + aid);
|
|
|
},
|
|
|
exportAllScore() {
|
|
|
+ let params = {
|
|
|
+ numCheck: this.numCheck
|
|
|
+ };
|
|
|
this.ajax
|
|
|
- .get(this.$store.state.api + "selectAllScoreGM")
|
|
|
+ .get(this.$store.state.api + "selectAllScoreGM2", params)
|
|
|
.then((res) => {
|
|
|
var scoreList = res.data[0];
|
|
|
// 将score值转换为对象
|
|
@@ -900,6 +903,7 @@ export default {
|
|
|
b[i].title = scoreList[j].title;
|
|
|
b[i].author = scoreList[j].author;
|
|
|
b[i].typename = scoreList[j].typename;
|
|
|
+ b[i].school = scoreList[j].school;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -969,6 +973,7 @@ export default {
|
|
|
var _json = {};
|
|
|
_json["案例名称"] = res[i].title;
|
|
|
_json["作者"] = res[i].author;
|
|
|
+ _json["学校"] = res[i].school;
|
|
|
_json["分类"] = res[i].typename;
|
|
|
_json["评审1"] = res[i].firstPw;
|
|
|
_json["评审2"] = res[i].secondPw;
|