feat:调用保存接口的按钮

This commit is contained in:
zhangyu
2020-08-26 14:51:45 +08:00
parent 160c3e12f2
commit f935749e96
4 changed files with 60 additions and 27 deletions

View File

@@ -133,11 +133,9 @@
this.projectInfo.loading=true;
this.$get('project/info', {id:n.id}).then(response => {
if (response.code === 200) {
this.projectInfo.loading=false;
this.projectInfo={...this.projectInfo,...response.data.basic,moduleMum:response.data.module.length};
this.allModuleInfo=response.data;
this.$nextTick(()=>{
this.projectInfo.loading=false;
})
}
});