|
|
|
@ -93,8 +93,8 @@ |
|
|
|
|
onLoad(o) { |
|
|
|
|
this.form = JSON.parse(o.item) |
|
|
|
|
this.send_name = this.modeList[this.form.send_type].text; |
|
|
|
|
this.transferList = this.form.transfer_image_ids; |
|
|
|
|
this.chatList = this.form.chat_image_ids; |
|
|
|
|
this.transferList = this.form.transfer_image_ids? this.form.transfer_image_ids:[]; |
|
|
|
|
this.chatList = this.form.chat_image_ids?this.form.chat_image_ids:[]; |
|
|
|
|
this.type = o.type |
|
|
|
|
if (this.form.transfer_image_ids) { |
|
|
|
|
let list = this.form.transfer_image_ids |
|
|
|
@ -143,14 +143,14 @@ |
|
|
|
|
const that = this; |
|
|
|
|
// 转账记录 |
|
|
|
|
let trList = [] |
|
|
|
|
this.transferList = this.transferList?this.transferList.concat(this.handleList):this.handleList; |
|
|
|
|
this.transferList = this.transferList.concat(this.handleList); |
|
|
|
|
this.transferList.forEach(item => { |
|
|
|
|
trList.push(item.file_id) |
|
|
|
|
}); |
|
|
|
|
this.form.transfer_image_id = trList.join(','); |
|
|
|
|
// 聊天记录 |
|
|
|
|
let atList = [] |
|
|
|
|
this.chatList = this.chatList?this.chatList.concat(this.handleList):this.handChatList; |
|
|
|
|
this.chatList = this.chatList.concat(this.handleList); |
|
|
|
|
this.chatList.forEach(item => { |
|
|
|
|
atList.push(item.file_id) |
|
|
|
|
}); |
|
|
|
|