|
@@ -238,7 +238,7 @@ export default {
|
|
|
mon: encodeURIComponent(JSON.stringify(this.wordData["fund"])), //预算经费
|
|
|
planEnd: this.wordData["plannedEnd_at"], //计划完成时间,
|
|
|
beh: this.wordData["begin_at"], //项目开始时间,
|
|
|
- mem: this.wordData["student"].length + this.wordData["teacher"].length, //项目组人数
|
|
|
+ mem: this.wordData["student"].filter(i=>i.name!='').length + this.wordData["teacher"].filter(i=>i.name!='').length, //项目组人数
|
|
|
};
|
|
|
this.ajax
|
|
|
.post(this.$store.state.api + "/updateMakerSpaceWordData", pram)
|