前端-胡立永 1 week ago
parent
commit
137a0d40f4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      pages/manager/inspect-result.vue

+ 2
- 2
pages/manager/inspect-result.vue View File

@ -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)


Loading…
Cancel
Save