diff --git a/src/views/mall/product/comment/CommentForm.vue b/src/views/mall/product/comment/CommentForm.vue
index 85458c3d..f4180f45 100644
--- a/src/views/mall/product/comment/CommentForm.vue
+++ b/src/views/mall/product/comment/CommentForm.vue
@@ -36,6 +36,7 @@
+
diff --git a/src/views/mall/product/comment/components/SkuTableSelect.vue b/src/views/mall/product/comment/components/SkuTableSelect.vue
index 8bbc50cf..f72870e4 100644
--- a/src/views/mall/product/comment/components/SkuTableSelect.vue
+++ b/src/views/mall/product/comment/components/SkuTableSelect.vue
@@ -37,6 +37,7 @@ import { ElTable } from 'element-plus'
import * as ProductSpuApi from '@/api/mall/product/spu'
import { propTypes } from '@/utils/propTypes'
+// TODO @疯狂:是不是挪到 spu 的 components 下哈
defineOptions({ name: 'SkuTableSelect' })
const props = defineProps({
diff --git a/src/views/mall/product/comment/components/SpuTableSelect.vue b/src/views/mall/product/comment/components/SpuTableSelect.vue
index f8560aa3..2a62a2fa 100644
--- a/src/views/mall/product/comment/components/SpuTableSelect.vue
+++ b/src/views/mall/product/comment/components/SpuTableSelect.vue
@@ -86,6 +86,7 @@ import { defaultProps, handleTree } from '@/utils/tree'
import * as ProductCategoryApi from '@/api/mall/product/category'
import * as ProductSpuApi from '@/api/mall/product/spu'
+// TODO @疯狂:是不是挪到 spu 的 components 下哈
defineOptions({ name: 'SpuTableSelect' })
const message = useMessage() // 消息弹窗
diff --git a/src/views/mall/product/comment/index.vue b/src/views/mall/product/comment/index.vue
index ecb519c9..7647aff1 100644
--- a/src/views/mall/product/comment/index.vue
+++ b/src/views/mall/product/comment/index.vue
@@ -60,6 +60,7 @@
+
@@ -210,7 +211,7 @@ const getList = async () => {
loading.value = true
try {
const data = await CommentApi.getCommentPage(queryParams)
- // visible 如果为 null,会导致刷新的时候触发e-switch的change事件
+ // visible 如果为 null,会导致刷新的时候触发 e-switch 的 change 事件
data.list.forEach((item) => {
if (!item.visible) {
item.visible = false
@@ -241,6 +242,7 @@ const openForm = (type: string, id?: number) => {
formRef.value.open(type, id)
}
+// TODO @疯狂:要不回复,也搞一个组件出去?
/** 回复 **/
const replyFormRef = ref()
const replyDialog = reactive({
diff --git a/src/views/mall/product/spu/addForm.vue b/src/views/mall/product/spu/addForm.vue
index b577ece9..a536ba35 100644
--- a/src/views/mall/product/spu/addForm.vue
+++ b/src/views/mall/product/spu/addForm.vue
@@ -44,6 +44,8 @@ import { BasicInfoForm, DescriptionForm, OtherSettingsForm } from './components'
import * as ProductSpuApi from '@/api/mall/product/spu'
import { convertToInteger, formatToFraction } from '@/utils'
+// TODO @芋艿:后续稍微调整下;
+
defineOptions({ name: 'ProductSpuForm' })
const { t } = useI18n() // 国际化