瀏覽代碼

删除留言bug

Karsa 2 年之前
父節點
當前提交
d27816021c
共有 1 個文件被更改,包括 6 次插入4 次删除
  1. 6 4
      src/views/hzyb/components/leaveMessage/index.vue

+ 6 - 4
src/views/hzyb/components/leaveMessage/index.vue

@@ -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);
 	}
 }