diff --git a/src/pages/ChatMain/ChatLongAnswer/ParsedValueView.vue b/src/pages/ChatMain/ChatLongAnswer/ParsedValueView.vue
index 97018e0..502c64e 100644
--- a/src/pages/ChatMain/ChatLongAnswer/ParsedValueView.vue
+++ b/src/pages/ChatMain/ChatLongAnswer/ParsedValueView.vue
@@ -19,11 +19,11 @@
继续追问
-
+
{{ question }}
-
+
@@ -35,6 +35,7 @@
v-for="commodity in commodityItems"
:key="commodity.commodity_id || commodity.commodity_name"
class="detail-product-card"
+ :class="{ 'detail-product-card--full': isSingleCommodity }"
>
{
};
const commodityItems = computed(() => getCommodityItems(displayValue.value));
+const isSingleCommodity = computed(() => commodityItems.value.length === 1);
const getPhotoItems = (value) => {
if (!isArrayValue(value)) return [];
diff --git a/src/pages/ChatMain/ChatLongAnswer/index.vue b/src/pages/ChatMain/ChatLongAnswer/index.vue
index dc4783e..9b29ea0 100644
--- a/src/pages/ChatMain/ChatLongAnswer/index.vue
+++ b/src/pages/ChatMain/ChatLongAnswer/index.vue
@@ -7,7 +7,7 @@
-
+