소스 검색

fix

master
王露 3 년 전
부모
커밋
4628691c95
1개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 7
    7
      digital-park-web/digital-park/src/views/park-enterprises/Detail.vue

+ 7
- 7
digital-park-web/digital-park/src/views/park-enterprises/Detail.vue 파일 보기

@@ -310,17 +310,17 @@ export default {
});
},
updateData() {
this.$store.dispatch("getUserInfo").then(() => {
this.claimDialog = false;
this.getData();
});
this.claimDialog = false;
this.getData();
},
},
//生命周期 - 创建完成(可以访问当前this实例)
created() {
this.canEdit = this.$route.query.canEdit;
this.companyId = this.$route.query.companyId;
this.getData();
this.$store.dispatch("getUserInfo").then(() => {
this.canEdit = this.$route.query.canEdit;
this.companyId = this.$route.query.companyId;
this.getData();
});
},
//生命周期 - 挂载完成(可以访问DOM元素)
mounted() {

Loading…
취소
저장