Browse Source

no message

featrue/v4.5
xpz2018 4 years ago
parent
commit
8f2bace794
1 changed files with 3 additions and 0 deletions
  1. 3
      pages/formate.wxs

3
pages/formate.wxs

@ -63,6 +63,9 @@ function formatePrice(value, kg) {
return '- -'
}
if (value || value !== 0) {
if(value < 0){
value = -value
}
if(kg){
return (parseFloat(value)).toFixed(3)
} else {

Loading…
Cancel
Save