From 5fbb442ff50e5492cb9b27e5b219a4a689d38b7b Mon Sep 17 00:00:00 2001 From: huxuejian Date: Fri, 27 Feb 2026 10:36:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/archive/edit-archive.vue | 2 +- pages/login/redirect-page.vue | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/pages/archive/edit-archive.vue b/pages/archive/edit-archive.vue index 0cb1707..7f89514 100644 --- a/pages/archive/edit-archive.vue +++ b/pages/archive/edit-archive.vue @@ -189,7 +189,7 @@ async function init() { } async function getArchives() { - const res = await api('getUnbindMiniAppCustomers', { corpId: corpId.value, mobile: '13456900981' || account.value.mobile }); + const res = await api('getUnbindMiniAppCustomers', { corpId: corpId.value, mobile: account.value.mobile }); if (res && res.success) { corpName.value = res.corpName; customers.value = Array.isArray(res.data) ? res.data : []; diff --git a/pages/login/redirect-page.vue b/pages/login/redirect-page.vue index 384a60b..5f213e1 100644 --- a/pages/login/redirect-page.vue +++ b/pages/login/redirect-page.vue @@ -19,6 +19,13 @@ const { account } = storeToRefs(useAccountStore()); const loading = ref(false); const team = ref(null); +const opts = ref(''); + +function copy(){ + uni.setClipboardData({ + data:opts.value || '暂无内容' + }) +} async function changeTeam({ teamId, corpId }) { loading.value = true; @@ -69,6 +76,7 @@ async function bindTeam() { } onLoad((options) => { + opts.value = JSON.stringify(options) const href = typeof options.q === "string" ? decodeURIComponent(options.q) : ""; const [, url = ""] = href.split("?");