|
|
@ -139,17 +139,18 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 提交信息 |
|
|
|
// 提交信息 |
|
|
|
async onSubmit() { |
|
|
|
async onSubmit() { |
|
|
|
|
|
|
|
console.log(this.transferList) |
|
|
|
const that = this; |
|
|
|
const that = this; |
|
|
|
// 转账记录 |
|
|
|
// 转账记录 |
|
|
|
let trList = [] |
|
|
|
let trList = [] |
|
|
|
this.transferList = this.transferList.concat(this.handleList); |
|
|
|
this.transferList = this.transferList?this.transferList.concat(this.handleList):this.handleList; |
|
|
|
this.transferList.forEach(item => { |
|
|
|
this.transferList.forEach(item => { |
|
|
|
trList.push(item.file_id) |
|
|
|
trList.push(item.file_id) |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.form.transfer_image_id = trList.join(','); |
|
|
|
this.form.transfer_image_id = trList.join(','); |
|
|
|
// 聊天记录 |
|
|
|
// 聊天记录 |
|
|
|
let atList = [] |
|
|
|
let atList = [] |
|
|
|
this.chatList = this.chatList.concat(this.handChatList); |
|
|
|
this.chatList = this.chatList?this.chatList.concat(this.handleList):this.handChatList; |
|
|
|
this.chatList.forEach(item => { |
|
|
|
this.chatList.forEach(item => { |
|
|
|
atList.push(item.file_id) |
|
|
|
atList.push(item.file_id) |
|
|
|
}); |
|
|
|
}); |
|
|
|