视图路径修改

This commit is contained in:
2025-10-27 17:29:25 +08:00
parent 5fa4e1cd42
commit 0033ac10ec
69 changed files with 162 additions and 1199 deletions

View File

@@ -70,7 +70,7 @@ import { ElButton, ElInput, ElTable, ElTableColumn, ElTag, ElPagination, ElMessa
import { useRouter } from 'vue-router';
import { resourceApi, resourceTagApi } from '@/apis/resource'
import type { PageParam, ResourceSearchParams, Resource, Tag } from '@/types';
import { ArticleShowView } from '@/views/article';
import { ArticleShowView } from '@/views/public/article';
import { ArticleStatus } from '@/types/enums';
const router = useRouter();

View File

@@ -16,7 +16,7 @@
<script setup lang="ts">
import { ref } from 'vue';
import { CourseList, CourseAdd } from '@/views/course/components';
import { CourseList, CourseAdd } from '@/views/public/course/components';
import type { Course } from '@/types/study';
type ViewType = 'list' | 'add' | 'edit';

View File

@@ -16,7 +16,7 @@
<script setup lang="ts">
import { ref } from 'vue';
import { LearningTaskList, LearningTaskAdd } from '@/views/task';
import { LearningTaskList, LearningTaskAdd } from '@/views/public/task';
import type { LearningTask } from '@/types/study';
defineOptions({