refactor(ui): 重命名ReviewPopup为CreateReviewPopup并更新相关引用
将ReviewPopup组件重命名为CreateReviewPopup,以更清晰地表达其功能,并更新了所有相关引用。此更改旨在提高代码的可读性和一致性。
Showing
3 changed files
with
2 additions
and
1 deletions
| ... | @@ -16,6 +16,7 @@ declare module 'vue' { | ... | @@ -16,6 +16,7 @@ declare module 'vue' { |
| 16 | ConfirmDialog: typeof import('./components/ui/ConfirmDialog.vue')['default'] | 16 | ConfirmDialog: typeof import('./components/ui/ConfirmDialog.vue')['default'] |
| 17 | CourseCard: typeof import('./components/ui/CourseCard.vue')['default'] | 17 | CourseCard: typeof import('./components/ui/CourseCard.vue')['default'] |
| 18 | CourseList: typeof import('./components/courses/CourseList.vue')['default'] | 18 | CourseList: typeof import('./components/courses/CourseList.vue')['default'] |
| 19 | + CreateReviewPopup: typeof import('./components/ui/CreateReviewPopup.vue')['default'] | ||
| 19 | FrostedGlass: typeof import('./components/ui/FrostedGlass.vue')['default'] | 20 | FrostedGlass: typeof import('./components/ui/FrostedGlass.vue')['default'] |
| 20 | GradientHeader: typeof import('./components/ui/GradientHeader.vue')['default'] | 21 | GradientHeader: typeof import('./components/ui/GradientHeader.vue')['default'] |
| 21 | LiveStreamCard: typeof import('./components/ui/LiveStreamCard.vue')['default'] | 22 | LiveStreamCard: typeof import('./components/ui/LiveStreamCard.vue')['default'] | ... | ... |
| ... | @@ -227,7 +227,7 @@ import { formatDate } from '@/utils/tools' | ... | @@ -227,7 +227,7 @@ import { formatDate } from '@/utils/tools' |
| 227 | 227 | ||
| 228 | import AppLayout from '@/components/layout/AppLayout.vue' | 228 | import AppLayout from '@/components/layout/AppLayout.vue' |
| 229 | import FrostedGlass from '@/components/ui/FrostedGlass.vue' | 229 | import FrostedGlass from '@/components/ui/FrostedGlass.vue' |
| 230 | -import ReviewPopup from '@/components/ui/ReviewPopup.vue' | 230 | +import CreateReviewPopup from '@/components/ui/CreateReviewPopup.vue' |
| 231 | 231 | ||
| 232 | // 导入接口 | 232 | // 导入接口 |
| 233 | import { getCourseDetailAPI, getGroupCommentListAPI, addGroupCommentAPI } from "@/api/course"; | 233 | import { getCourseDetailAPI, getGroupCommentListAPI, addGroupCommentAPI } from "@/api/course"; | ... | ... |
-
Please register or login to post a comment