diff --git a/src/store/modules/user.ts b/src/store/modules/user.ts index 321be45f..3b6c05f6 100644 --- a/src/store/modules/user.ts +++ b/src/store/modules/user.ts @@ -46,6 +46,9 @@ export const useUserStore = defineStore( if (cookie.value.stoken && cookie.value.stoken !== "") { res += `stoken=${cookie.value.stoken};`; } + if (cookie.value.stuid && cookie.value.stuid !== "") { + res += `stuid=${cookie.value.stuid};`; + } if (cookie.value.account_id && cookie.value.account_id !== "") { res += `account_id=${cookie.value.account_id};`; }