no message

This commit is contained in:
A1300399510
2025-11-04 01:57:07 +08:00
parent 671732d277
commit a7d803f633
8 changed files with 43 additions and 22 deletions

View File

@@ -100,12 +100,13 @@ export const itemBottom = defineComponent({
};
const copyLinkClick = () => {
copyForumUid(`http://14.22.79.19:9551/?tpl=forum/details&uniqid=${item.value.uniqid}`);
copyForumUid(`${location.origin}/details/${item.value.uniqid}`);
};
let QRcode = ref("");
const showQRcode = () => {
if (QRcode.value) return
ajaxget(`/v2/api/forum/getQrcode?token=${item.value.token}`).then((res) => {
ajaxGet(`/v2/api/forum/getQrcode?token=${item.value.token}`).then((res) => {
if (res.code != 200) return;
const data = res.data || {};
QRcode.value = data.url || "";