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"
}
}


正在加载...
取消
保存