diff --git a/business/jxstore/cms/store.go b/business/jxstore/cms/store.go index c33f5d84d..6c4adf249 100644 --- a/business/jxstore/cms/store.go +++ b/business/jxstore/cms/store.go @@ -92,8 +92,8 @@ func (x Store4UserList) Len() int { } func (x Store4UserList) Less(i, j int) bool { - if x[i].WalkDistance != x[j].Distance { - return x[i].WalkDistance < x[j].Distance + if x[i].WalkDistance != x[j].WalkDistance { + return x[i].WalkDistance < x[j].WalkDistance } return x[i].Distance < x[j].Distance }