Explorar o código

查指数问题修改

zou.yingbin %!s(int64=4) %!d(string=hai) anos
pai
achega
89923cb7bd
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      models/wrTrade2.go

+ 6 - 0
models/wrTrade2.go

@@ -3795,10 +3795,16 @@ func (r *WrSpotGroupTradeSum) calc() {
 
 	if r.LASTAVGPRICE < 1e-8 {
 		r.LASTAVGPRICE2 = "-"
+	} else {
+		r.LASTAVGPRICE2 = r.LASTAVGPRICE.string()
 	}
+
 	if r.TODAYAVGPRICE < 1e-8 {
 		r.TODAYAVGPRICE2 = "-"
+	} else {
+		r.TODAYAVGPRICE2 = r.TODAYAVGPRICE.string()
 	}
+
 	if r.TODAYAVGPRICE > 1e-8 && r.LASTAVGPRICE > 1e-8 {
 		r.LASTAVGPRICE2 = r.LASTAVGPRICE.string()
 		r.TODAYAVGPRICE2 = r.TODAYAVGPRICE.string()