Q-ABAB преди 1 година
родител
ревизия
2941ab9a60

+ 1 - 1
src/views/echarts/components/topData.vue

@@ -32,7 +32,7 @@
           <div class="DataTitle">已支出预算</div>
           <div class="topData_value">
             <span>{{ data.isPay }}</span>
-            <span>万</span>
+            <span></span>
           </div>
         </div> 
         <!-- <div class="topData">

+ 1 - 0
src/views/projectApply/MakerSpaceApply.vue

@@ -297,6 +297,7 @@
                   planEnd:this.wordData['plannedEnd_at'],//计划完成时间,
                   beh:this.wordData['begin_at'],//项目开始时间,
                   apply:this.wordData['applicationDate'],//申请日期
+                  members:this.wordData['student'].length+this.wordData['teacher'].length
                 }
                 this.ajax.post(this.$store.state.api+'/MakerSpaceWordApply',pram).then(result=>{
                   console.log(result)

+ 1 - 0
src/views/projectApply/components/MakerSpaceWordDetail.vue

@@ -138,6 +138,7 @@
                   mon:JSON.stringify(this.wordData['fund']),//预算经费
                   planEnd:this.wordData['plannedEnd_at'],//计划完成时间,
                   beh:this.wordData['begin_at'],//项目开始时间,
+                  mem:this.wordData['student'].length+this.wordData['teacher'].length,//项目组人数
                 }
                 this.ajax.post(this.$store.state.api+"/updateMakerSpaceWordData",pram).then(result=>{
                     console.log(result)

+ 1 - 0
src/views/projectApply/components/studentProjectWordDetail.vue

@@ -373,6 +373,7 @@
                   mon:JSON.stringify(this.wordData['fund']),//预算经费
                   f:this.wordData['total'],//总经费
                   apply:this.wordData['applicationDate'],//申请日期
+                  mem:this.wordData['teacherS'].length+this.wordData['studentS'].length
             }
             console.log(param);
             // return console.log(param);

+ 1 - 0
src/views/projectApply/newStudentProjectApply.vue

@@ -264,6 +264,7 @@
                   mon:JSON.stringify(this.wordData['fund']),//预算经费
                   f:this.wordData['total'],//总经费
                   apply:this.wordData['applicationDate'],//申请日期
+                  mem:this.wordData['studentS'].length+this.wordData['teacherS'].length,//项目组人数
                 }
                 this.ajax
                 .post(this.$store.state.api+'/studentProjectWordApply',pram)