From c04598460d0e8deb2d3f4216d79d37fe45078e64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E4=B8=80=E5=98=89?= Date: Tue, 15 Jul 2025 15:29:54 +0800 Subject: [PATCH] update --- src/components/WXOfficialAccount.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/WXOfficialAccount.vue b/src/components/WXOfficialAccount.vue index 7b6fe54..c9a0eac 100644 --- a/src/components/WXOfficialAccount.vue +++ b/src/components/WXOfficialAccount.vue @@ -7,9 +7,8 @@ import Api from "../api/index.js"; const show = defineModel('show'); const detail = reactive({}); onMounted(() => { - Api.system.getQrcode(1).then(({data}) => { + Api.system.getQrcode(2).then(({data}) => { Object.assign(detail, data); - console.log('我坎坎坷坷', detail) }); });