From 0dd41bd8cee430d3a948b89c664cb511c400993c Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Fri, 12 Aug 2022 19:11:46 +0800
Subject: [PATCH] 新增链接添加按钮,优化Dplayer播放

---
 src/components/group/MyMessage.vue |   28 +++++++++++++++++++---------
 1 files changed, 19 insertions(+), 9 deletions(-)

diff --git a/src/components/group/MyMessage.vue b/src/components/group/MyMessage.vue
index 680198b..67fe22a 100644
--- a/src/components/group/MyMessage.vue
+++ b/src/components/group/MyMessage.vue
@@ -24,7 +24,8 @@
 							</template>
 							<template #title>
 								在
-								<router-link to="/comment" v-if="item.commentType==1" @click.native="handleCancel()">碎碎念
+								<router-link to="/comment" @click.native="handleCancel()" v-if="item.commentType==1">
+									{{item.articleTitle}}
 								</router-link>
 								<router-link :to="{path:'/mdDetail',query:{id:item.articleId}}"
 									:title="item.articleTitle" @click.native="handleCancel()" v-else>
@@ -47,6 +48,11 @@
 						<a-button disabled v-else>
 							更多记录就不展示啦..
 						</a-button>
+						<span style="margin: 20px;">
+							<a-button @click="reload" :disabled="refresh">
+								<a-icon type="redo" />
+							</a-button>
+						</span>
 					</div>
 				</template>
 			</a-list>
@@ -68,19 +74,29 @@
 				visible: false,
 				loading: false,
 				pageNo: 1,
-				pageSize: 5,
+				pageSize: 4,
 				showButton: true,
 				refresh: false,
 			}
 		},
 		beforeMount() {},
 		mounted() {
-			this.loadData()
+			this.loadMore()
 		},
 		methods: {
 			loadMore() {
 				this.$message.info("拉取信息中..")
 				this.loadData()
+			},
+			reload() {
+				this.$message.info("重新拉取信息..")
+				this.pageNo = 1;
+				this.pageSize = 4;
+				this.showButton = true;
+				this.dataList = [];
+				setTimeout(() => {
+					this.loadData()
+				}, 100);
 			},
 			loadData() {
 				this.refresh = true;
@@ -127,12 +143,6 @@
 
 	}
 
-	.myhiden {
-		display: -webkit-container;
-		-webkit-line-clamp: 3;
-		text-overflow: ellipsis;
-		overflow: hidden;
-	}
 
 	a {
 		color: black;

--
Gitblit v1.9.1