chore: 修复 auth 和 admin 视图导入路径

- 修复 AdminLoginView 使用 features/admin
- 修复 LoginView, MobileLoginView, MobileRegisterView 使用 features/auth
- 修复 MobileProfileView, MobileRealnameView 使用正确路径
- 修复 useSmsCountdown 导入到 shared/composables

类型错误:79 → ?
模块错误:38 → 31
This commit is contained in:
yml2213
2026-06-04 10:07:39 +08:00
parent 360ebb85e6
commit b00049de2d
6 changed files with 7 additions and 7 deletions
@@ -4,7 +4,7 @@ import { Lock, User } from "@element-plus/icons-vue";
import { onMounted, reactive, ref } from "vue";
import { useRouter } from "vue-router";
import { fetchAdminCaptcha, type AdminCaptcha } from "@/api/adminAuth";
import { fetchAdminCaptcha, type AdminCaptcha } from "@/features/admin";
import { useAdminSessionStore } from "@/stores/adminSession";
const router = useRouter();