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 { ChatLineRound, Iphone } from "@element-plus/icons-vue";
import { onUnmounted, reactive, ref } from "vue";
import { useRouter } from "vue-router";
import { sendSmsCode } from "@/api/auth";
import { sendSmsCode } from "@/features/auth/api/auth";
import { useSessionStore } from "@/stores/session";
const router = useRouter();