消息修改 会议新增权限修改 消息权限添加
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user