diff --git a/src/views/dashboard/modules/FriendLinkCard.vue b/src/views/dashboard/modules/FriendLinkCard.vue index 643cf946..43c7b9a3 100644 --- a/src/views/dashboard/modules/FriendLinkCard.vue +++ b/src/views/dashboard/modules/FriendLinkCard.vue @@ -6,7 +6,7 @@ 更多链接
-
+
{{ item.name }}
@@ -49,6 +49,11 @@ export default { this.$router.push({ path: '/isystem/friendshipLink' }) + }, + // 点击链接 + clickLink (record) { + const href = record.link + window.open(href) } } } @@ -75,5 +80,6 @@ export default { color: @primary-color; text-align: center; background-image: url('../../../assets/image/dashboardLinkBack.png'); + cursor: pointer; }