|
@@ -614,7 +614,7 @@ export default {
|
|
|
remoteEvent(query) {
|
|
|
this.eventList.data = []
|
|
|
this.eventList.queryParams.current = 1
|
|
|
- this.eventList.name = query
|
|
|
+ this.eventList.name = query.trim()
|
|
|
this.getEventList(1)
|
|
|
},
|
|
|
//获取事件列表
|
|
@@ -650,6 +650,7 @@ export default {
|
|
|
this.form.scenarioIds = []
|
|
|
this.show = false
|
|
|
this.form.matterIds = []
|
|
|
+ this.remoteEvent('')
|
|
|
return
|
|
|
}
|
|
|
var obj = this.eventList.data.find(item => {
|
|
@@ -687,8 +688,9 @@ export default {
|
|
|
this.form = JSON.parse(JSON.stringify(form))
|
|
|
this.eventList.data = []
|
|
|
this.eventList.name = ''
|
|
|
+ this.$set(this.form,'signProjectIds',this.form.signPatentNo || this.form.signProjectId)
|
|
|
if (this.form.id) {
|
|
|
- this.$set(this.form,'signProjectIds',this.form.signPatentNo || this.form.signProjectId)
|
|
|
+
|
|
|
if (this.form.eventIds && this.form.eventIds.length>0) {
|
|
|
this.form.eventId = this.form.eventIds[0]
|
|
|
this.show = true
|
|
@@ -772,7 +774,6 @@ export default {
|
|
|
this.getPatentNo()
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
// this.getEventList()
|
|
|
this.showDialog = true
|
|
|
},
|