|
|
@@ -284,7 +284,7 @@ export default {
|
|
|
},
|
|
|
formatPriceWithSymbol(price) {
|
|
|
if (price === null || price === undefined) return ''
|
|
|
- return '¥' + parseFloat(price).toFixed(2)
|
|
|
+ return '¥' + (Number(price) / 100).toFixed(2)
|
|
|
},
|
|
|
getImageUrl: function(path) {
|
|
|
return config.API_BASE_URL + path
|