|
@@ -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();
|
|
|
}
|
|
|
}
|