fix wechat token

This commit is contained in:
weichengwu 2025-11-20 10:44:04 +08:00
parent d3cebfd2b8
commit 89255a09ce
2 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ function getNumber() {
const initWechatConfig = async () => { const initWechatConfig = async () => {
try { try {
const response = await wechatConfig({ const response = await wechatConfig({
url: currentUrl.value, url: decodeURIComponent(currentUrl.value),
}); });
// const config = await response.json(); // const config = await response.json();
if (response.code == 200) { if (response.code == 200) {

View File

@ -202,7 +202,7 @@ function getNumber() {
const initWechatConfig = async () => { const initWechatConfig = async () => {
try { try {
const response = await wechatConfig({ const response = await wechatConfig({
url: currentUrl.value, url: decodeURIComponent(currentUrl.value),
}); });
// const config = await response.json(); // const config = await response.json();
if (response.code == 200) { if (response.code == 200) {