lixuan
lixuan 2 years ago
parent d03ffc4850
commit 4279ac5dfd
  1. 8
      pages/stationDetail/openStationDetail.vue
  2. 9
      pages/stationDetail/stationDetail.vue

@ -566,8 +566,12 @@
},
numberFilter(value) {
value = value - 1 + 1
return value.toFixed(2)
if(value){
value = value - 1 + 1
return value.toFixed(2)
}else{
return '0.00'
}
},
payStateFormat(value) {
switch (parseInt(value)) {

@ -522,8 +522,13 @@
},
numberFilter(value) {
value = value - 1 + 1
return value.toFixed(2)
if(value){
value = value - 1 + 1
return value.toFixed(2)
}else{
return '0.00'
}
},
payStateFormat(value) {
switch (parseInt(value)) {

Loading…
Cancel
Save