no message
This commit is contained in:
@@ -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 || "";
|
||||
|
||||
Reference in New Issue
Block a user