huangjiajun 1 주 전
부모
커밋
d094a105af
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      app/db/db_store.go

+ 1
- 1
app/db/db_store.go 파일 보기

@@ -49,7 +49,7 @@ func GetStore(eg *xorm.Engine, arg map[string]string) []map[string]string {
if utils.StrToFloat64(arg["km"]) > 0 {
where += " and " + str + "<=" + utils.Float64ToStr(utils.StrToFloat64(arg["km"])/1000)
} else {
if utils.StrToFloat64(arg["lat"]) == 0 {
if utils.StrToFloat64(arg["lat"]) > 0 && arg["city_id"] == "" {
where += " and " + str + "<=1000"
}
}


불러오는 중...
취소
저장