Commit 340101d8 authored by Hsinli's avatar Hsinli

fix price 0

parent 87e094d3
Pipeline #14934 passed with stage
in 36 seconds
...@@ -36,7 +36,7 @@ class AbroadHouseService extends Service { ...@@ -36,7 +36,7 @@ class AbroadHouseService extends Service {
name: list[i].name || '', name: list[i].name || '',
images: list[i].images ? JSON.parse(list[i].images) : [], images: list[i].images ? JSON.parse(list[i].images) : [],
tags: list[i].tags ? JSON.parse(list[i].tags) : [], tags: list[i].tags ? JSON.parse(list[i].tags) : [],
total_price: list[i].total_price || '--', total_price: list[i].total_price === '0.00' ? '--' : list[i].total_price,
url: list[i].url || '', url: list[i].url || '',
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment