fix: #306. At MainContainer, use cookie to determine instead of using pinia state

This commit is contained in:
Cindy Chang
2024-07-01 08:52:38 +08:00
parent 2a8826c962
commit 69a3f27cb2
4 changed files with 15 additions and 14 deletions

View File

@@ -26,7 +26,7 @@
:data-max="tUnits[unit].max"
:data-min="tUnits[unit].min"
:maxlength="tUnits[unit].dsp === 'd' ? 3 : 2"
:value="tUnits[unit].val.toString().padStart(2, '0')"
@focus="onFocus"
@change="onChange"
@keyup="onKeyUp"
@@ -39,6 +39,7 @@
</template>
<script>
//:value="tUnits[unit].val.toString().padStart(2, '0')"
import { mapActions, } from 'pinia';
import ConformanceInputStore from '@/stores/conformanceInput';

View File

@@ -2,7 +2,7 @@ import { createApp, markRaw } from "vue";
import App from "./App.vue";
import router from "./router";
import pinia from '@/stores/main.js'
import pinia from '@/stores/main.js';
import axios from 'axios';
import VueAxios from 'vue-axios';
import moment from 'moment';

View File

@@ -48,17 +48,17 @@ const routes = [
name: "Files",
component: Files,
},
// {
// path: "/account",
// name: "Account Management",
// children: [
// {
// path: "/account/account-admin",
// name: "AcctAdmin",
// component: AccountAdmin,
// },
// ]
// },
{
path: "/account",
name: "Account Management",
children: [
{
path: "/account/account-admin",
name: "AcctAdmin",
component: AccountAdmin,
},
]
},
{
path: "/upload", // router.push({ replace: true }) 路徑不添進歷史紀錄
name: "Upload",

View File

@@ -110,7 +110,7 @@ export default {
async beforeRouteEnter(to, from, next) {
const loginStore = LoginStore();
if (!loginStore.isLoggedIn) {
if (!getCookie("isLuciaLoggedIn")) {
if (getCookie('luciaRefreshToken')) {
await loginStore.refreshToken();
loginStore.setIsLoggedIn(true);