mirror of
https://github.com/Cccc-owo/CheckInApp.git
synced 2026-06-17 14:06:28 +00:00
frontend: fix import
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
import { createRouter, createWebHistory } from 'vue-router'
|
import { createRouter, createWebHistory } from 'vue-router'
|
||||||
import { useAuthStore } from '@/stores/auth'
|
import { useAuthStore } from '@/stores/auth'
|
||||||
|
import { userAPI } from '@/api'
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
||||||
@@ -115,7 +116,6 @@ router.beforeEach(async (to, from, next) => {
|
|||||||
// 检查用户审批状态(除了待审批页面本身)
|
// 检查用户审批状态(除了待审批页面本身)
|
||||||
if (to.name !== 'PendingApproval') {
|
if (to.name !== 'PendingApproval') {
|
||||||
try {
|
try {
|
||||||
const { userAPI } = await import('@/api')
|
|
||||||
const status = await userAPI.getUserStatus()
|
const status = await userAPI.getUserStatus()
|
||||||
|
|
||||||
if (!status.is_approved) {
|
if (!status.is_approved) {
|
||||||
@@ -130,7 +130,6 @@ router.beforeEach(async (to, from, next) => {
|
|||||||
} else {
|
} else {
|
||||||
// 访问待审批页面时,检查是否已审批
|
// 访问待审批页面时,检查是否已审批
|
||||||
try {
|
try {
|
||||||
const { userAPI } = await import('@/api')
|
|
||||||
const status = await userAPI.getUserStatus()
|
const status = await userAPI.getUserStatus()
|
||||||
|
|
||||||
if (status.is_approved) {
|
if (status.is_approved) {
|
||||||
|
|||||||
Reference in New Issue
Block a user