浏览代码

fix

master
王露 2 年前
父节点
当前提交
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() {

正在加载...
取消
保存