|
@@ -461,10 +461,13 @@ export default {
|
|
|
if (!val) {
|
|
|
this.form.scenarioIds = []
|
|
|
this.show = false
|
|
|
- this.form.matterIds = []
|
|
|
+ this.$set(this.form,'matterIds',[])
|
|
|
this.remoteEvent('')
|
|
|
return
|
|
|
}
|
|
|
+ if(!this.form.matterIds){
|
|
|
+ this.$set(this.form,'matterIds',[])
|
|
|
+ }
|
|
|
var obj = this.eventList.data.find(item => {
|
|
|
return item.id == val
|
|
|
})
|
|
@@ -730,6 +733,8 @@ export default {
|
|
|
this.getEventList()
|
|
|
}
|
|
|
|
|
|
+ }else{
|
|
|
+ this.getEventList()
|
|
|
}
|
|
|
this.getPermissionPersonnel()
|
|
|
this.dialogVisible = true
|