消息修改 会议新增权限修改 消息权限添加

This commit is contained in:
fengachen
2021-09-24 19:43:58 +08:00
parent e42a587e71
commit a1f5f9f950
10 changed files with 155 additions and 129 deletions
+2 -1
View File
@@ -253,6 +253,7 @@ export default {
},
methods: {
open(record) {
this.visible = true
// 记录当前项目id
this.currentProjectId = record.id
// 通过id查询项目详情
@@ -269,7 +270,7 @@ export default {
console.log('未查到相应的信息')
}
})
this.visible = true
},
handleCancel() {
this.visible = false
+3 -3
View File
@@ -17,9 +17,9 @@
computed: {
comp: function () {
if(!this.path){
return null;
return null
}
return () => import(`@/views/${this.path}.vue`)
return resolve => require([`@/components${this.path}.vue`], resolve)
}
},
props: ['path','formData'],
@@ -27,7 +27,7 @@
detail () {
setTimeout(() => {
if(this.path){
this.$refs.compModel.view(this.formData);
this.$refs.compModel.open(this.formData)
}
}, 200)
},