|
@@ -67,10 +67,10 @@ const publishMessageHandle = async() => {
|
|
|
old_report_id: research_report_info ? props.info.research_report_type_list[0].ResearchReportId : research_report_type_info ? research_report_type_info.research_report_id : 0,
|
|
|
old_report_chapter_id: research_report_type_info ? research_report_type_info.research_report_type_id : 0,
|
|
|
content: message_content.value,
|
|
|
- is_show_name: isHideRealName.value ? 0 : 1
|
|
|
+ is_show_name: isHideRealName.value ? 0 : 1,
|
|
|
})
|
|
|
if( code !== 200) return
|
|
|
- Toast('发布成功')
|
|
|
+ Toast('已留言')
|
|
|
message_content.value = ''
|
|
|
isShowMessagebox.value = false
|
|
|
setTimeout(() => {
|
|
@@ -160,8 +160,10 @@ const delMessageHandle = ({ comment_id }) => {
|
|
|
let index_my = myMessageList.value.findIndex(_ => _.comment_id === comment_id);
|
|
|
let index_hot = hotMessageList.value.findIndex(_ => _.comment_id === comment_id);
|
|
|
|
|
|
- myMessageList.value.splice(index_my, 1)
|
|
|
- hotMessageList.value.splice(index_hot, 1)
|
|
|
+ console.log(comment_id,index_my,index_hot)
|
|
|
+
|
|
|
+ index_my !== -1 && myMessageList.value.splice(index_my, 1)
|
|
|
+ index_hot !== -1 && hotMessageList.value.splice(index_hot, 1)
|
|
|
realMyList.value = isSlideMyMsg.value ? myMessageList.value : myMessageList.value.slice(0,3);
|
|
|
}
|
|
|
}
|