Bladeren bron

修改活动管理所属项目bug

Q-ABAB 1 jaar geleden
bovenliggende
commit
acc16c56df

BIN
public/file/附件2:2023年学生创客项目申报书模板(2).docx


BIN
public/file/附件3:2023年二级学院特色创客空间建设项目申报书模板(2).docx


+ 5 - 5
src/views/activityManage/makerActvityDetails.vue

@@ -545,9 +545,6 @@ export default {
     handleClose(){
       this.addMemberDialog=false;
     },
-    // backBtn(){
-    //   this.$router.push('/makerActvity')
-    // },
     addTeacher(){
       this.isAddTeacher = true;
       this.addMemberDialog=true;
@@ -562,10 +559,12 @@ export default {
         })
     },
     getProject(){
+      this.loading = true;
         this.ajax.get(this.$store.state.api+"/GetAllProjectName",{
             uid:this.$store.state.userInfo.userid,
         }).then(res=>{
-            this.selectInput.project = res.data[0];
+          this.loading = false
+          this.selectInput.project = res.data[0].filter(item=>item.courseId==this.tableData||item.isupload!=2);
         }).catch(err=>{
             this.$message.error(err.message)
         })
@@ -584,6 +583,7 @@ export default {
         data.reportFile = data.reportFile==''||data.reportFile==null?[]:JSON.parse(data.reportFile)
         this.tableData = data;
         this.oldMoney += Number(this.tableData.money)
+        this.getProject();
         this.loading = false;
       }).catch(err=>{
         this.$message.error(err.message)
@@ -638,7 +638,7 @@ export default {
   },
   mounted(){
     this.getAllClass();
-    this.getProject();
+
     this.getData();
   }
 }