|
@@ -781,12 +781,20 @@ export default {
|
|
|
idap: this.bug.assigner
|
|
|
}
|
|
|
this.assignerOptions.push(assignerItem)
|
|
|
- const currentHandlerItem = {
|
|
|
- idapName: null,
|
|
|
- name: this.bug.currentHandlerList,
|
|
|
- idap: this.bug.currentHandler
|
|
|
+ for (const i in this.bug.currentHandlerList.split(',')) {
|
|
|
+ const assignerItem = {}
|
|
|
+ assignerItem.idapName = ''
|
|
|
+ assignerItem.name = this.bug.currentHandlerList.split(',')[i]
|
|
|
+ assignerItem.idap = this.bug.currentHandler.split(',')[i]
|
|
|
+ this.currentHandlerOptions.push(assignerItem)
|
|
|
}
|
|
|
- this.currentHandlerOptions.push(currentHandlerItem)
|
|
|
+ console.log(this.currentHandlerOptions, 'mouned')
|
|
|
+ // const currentHandlerItem = {
|
|
|
+ // idapName: null,
|
|
|
+ // name: this.bug.currentHandlerList,
|
|
|
+ // idap: this.bug.currentHandler
|
|
|
+ // }
|
|
|
+ // this.currentHandlerOptions.push(currentHandlerItem)
|
|
|
this.changeWidthOnBlur()
|
|
|
releaseList().then(res => {
|
|
|
this.appClientList = res.data.appClient // 客户端
|
|
@@ -816,12 +824,20 @@ export default {
|
|
|
idap: this.bug.assigner
|
|
|
}
|
|
|
this.assignerOptions.push(assignerItem)
|
|
|
- const currentHandlerItem = {
|
|
|
- idapName: null,
|
|
|
- name: this.bug.currentHandlerList,
|
|
|
- idap: this.bug.currentHandler
|
|
|
+ for (const i in this.bug.currentHandlerList.split(',')) {
|
|
|
+ const assignerItem = {}
|
|
|
+ assignerItem.idapName = ''
|
|
|
+ assignerItem.name = this.bug.currentHandlerList.split(',')[i]
|
|
|
+ assignerItem.idap = this.bug.currentHandler.split(',')[i]
|
|
|
+ this.currentHandlerOptions.push(assignerItem)
|
|
|
}
|
|
|
- this.currentHandlerOptions.push(currentHandlerItem)
|
|
|
+ console.log(this.currentHandlerOptions, 'mouned')
|
|
|
+ // const currentHandlerItem = {
|
|
|
+ // idapName: null,
|
|
|
+ // name: this.bug.currentHandlerList,
|
|
|
+ // idap: this.bug.currentHandler
|
|
|
+ // }
|
|
|
+ // this.currentHandlerOptions.push(currentHandlerItem)
|
|
|
this.changeWidthOnBlur()
|
|
|
this.getCommentList()
|
|
|
releaseList().then(res => {
|