diff --git a/src/views/topic/KUNGalgameTopicPage.vue b/src/views/topic/KUNGalgameTopicPage.vue index bd1ccab7..10f7888e 100644 --- a/src/views/topic/KUNGalgameTopicPage.vue +++ b/src/views/topic/KUNGalgameTopicPage.vue @@ -291,8 +291,9 @@ onBeforeMount(() => { diff --git a/src/views/topic/components/Content.vue b/src/views/topic/components/Content.vue index 769cd7d0..314d1aad 100644 --- a/src/views/topic/components/Content.vue +++ b/src/views/topic/components/Content.vue @@ -105,6 +105,7 @@ defineProps<{ .kungalgame-topic-content { width: 100%; margin-top: 0; + padding: 17px 7px; } } diff --git a/src/views/topic/components/KUNGalgamerInfo.vue b/src/views/topic/components/KUNGalgamerInfo.vue index 6ec49226..e6d7d0c3 100644 --- a/src/views/topic/components/KUNGalgamerInfo.vue +++ b/src/views/topic/components/KUNGalgamerInfo.vue @@ -64,10 +64,18 @@ const props = defineProps<{ .kungalgamer { flex-direction: row; justify-content: center; - margin-top: 27px; + margin-top: 17px; padding-bottom: 10px; border-bottom: 1px solid var(--kungalgame-blue-1); } + .avatar { + /* 图像加载不出来时页面不塌陷 */ + width: 70px; + margin-top: 10px; + img { + width: 70px; + } + } .info { margin-left: 50px; display: flex; diff --git a/src/views/topic/components/footer/Footer.vue b/src/views/topic/components/footer/Footer.vue index d7580061..357c4f9b 100644 --- a/src/views/topic/components/footer/Footer.vue +++ b/src/views/topic/components/footer/Footer.vue @@ -13,8 +13,18 @@ import Reply from './Reply.vue' // 重新编辑组件 import Rewrite from './Rewrite.vue' +// 全局消息组件(顶部) +import message from '@/components/alert/Message' + // 导入用户的 store import { useKUNGalgameUserStore } from '@/store/modules/kungalgamer' +// 导入设置面板 store +import { useKUNGalgameSettingsStore } from '@/store/modules/settings' +import { storeToRefs } from 'pinia' + +// 使用设置面板的 store +const settingsStore = useKUNGalgameSettingsStore() +const { showKUNGalgameLanguage } = storeToRefs(settingsStore) // 接受父组件的传值 const props = defineProps<{ @@ -50,6 +60,35 @@ const toUser = computed(() => props.toUser) */ // 当前登录用户的 uid const currUserUid = useKUNGalgameUserStore().uid + +// 分享 +const handleClickShare = () => { + const shareLinkEN = computed( + () => + `Share Link from KUN Visual Novel Forum ~~~ +Title: ${props.content.title} +Link: https://www.kungal.com/topic/${props.info.tid}` + ) + + const shareLinkCN = computed( + () => + `来自鲲 Galgame 论坛的分享链接 ~~~ +标题: ${props.content.title} +链接: https://www.kungal.com/topic/${props.info.tid}` + ) + + const shareLink = + showKUNGalgameLanguage.value === 'en' ? shareLinkEN : shareLinkCN + + navigator.clipboard + .writeText(shareLink.value) + .then(() => { + message('Share Link copied successfully!', '分享链接复制成功', 'success') + }) + .catch((err) => { + message('Share Link copied failed!', '分享链接复制失败!', 'error') + }) +}