From 6426e0238ac96bc87be231f3d2729ed49e182403 Mon Sep 17 00:00:00 2001 From: kuaifan Date: Mon, 14 Jul 2025 22:57:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=BA=94=E7=94=A8=20{?= =?UTF-8?q?system=5Ftheme}=20=E5=8F=82=E6=95=B0=E6=97=A0=E6=95=88=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/assets/js/store/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/js/store/actions.js b/resources/assets/js/store/actions.js index a5a9a1c60..d4634e02a 100644 --- a/resources/assets/js/store/actions.js +++ b/resources/assets/js/store/actions.js @@ -4714,7 +4714,7 @@ export default { .replace(/\{user_email}/g, encodeURIComponent(state.userInfo.email)) .replace(/\{user_avatar}/g, encodeURIComponent(state.userInfo.userimg)) .replace(/\{user_token}/g, encodeURIComponent(state.userToken)) - .replace(/\{system_theme}/g, state.systemConfig.themeName) + .replace(/\{system_theme}/g, state.themeName) .replace(/\{system_lang}/g, languageName); emitter.emit('observeMicroApp:open', config); },