|
|
|
|
|
|
|
|
// mask: true |
|
|
// mask: true |
|
|
// }) |
|
|
// }) |
|
|
let item = e.currentTarget.dataset.item; |
|
|
let item = e.currentTarget.dataset.item; |
|
|
let customerId = item.businessCommunicationCustomerVO.customerId; |
|
|
|
|
|
|
|
|
let customerId = item.customerId; |
|
|
let lastChatRecordCode = item.lastChatRecordCode; |
|
|
let lastChatRecordCode = item.lastChatRecordCode; |
|
|
let msgData = this.data.msgData; |
|
|
let msgData = this.data.msgData; |
|
|
msgData.forEach((el, inx) => { |
|
|
msgData.forEach((el, inx) => { |
|
|
if (el.businessCommunicationCustomerVO.customerId == customerId) { |
|
|
|
|
|
|
|
|
if (el.customerId == customerId) { |
|
|
msgData.splice(inx, 1); |
|
|
msgData.splice(inx, 1); |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |