From 137a0d40f41234ff5e1b57e7029af4cae2528ae8 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Sat, 30 Aug 2025 20:27:03 +0800 Subject: [PATCH] 1 --- pages/manager/inspect-result.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/manager/inspect-result.vue b/pages/manager/inspect-result.vue index a21fb3c..3af7a28 100644 --- a/pages/manager/inspect-result.vue +++ b/pages/manager/inspect-result.vue @@ -696,7 +696,7 @@ export default { getStylePriceInfo(item) { // 优先显示款式价格信息 - if (item.styleMinPrice && item.styleMaxPrice) { + if (item.styleMinPrice || item.styleMaxPrice) { const minPrice = parseFloat(item.styleMinPrice) const maxPrice = parseFloat(item.styleMaxPrice) @@ -708,7 +708,7 @@ export default { } // 如果没有款式价格,显示商品本身的价格 - if (item.productMinPrice && item.productMaxPrice) { + if (item.productMinPrice || item.productMaxPrice) { const minPrice = parseFloat(item.productMinPrice) const maxPrice = parseFloat(item.productMaxPrice)