|
@@ -636,8 +636,8 @@ func SearchList(operator Operator) (int64, *[]map[string]interface{}, int64) {
|
|
|
//价格处理
|
|
|
if operator.Price != "" {
|
|
|
priceArr := strings.Split(operator.Price, "_")
|
|
|
- minPrice := gconv.Int64(priceArr[0])
|
|
|
- maxPrice := gconv.Int64(priceArr[1])
|
|
|
+ minPrice := gconv.Int64(priceArr[0]) * 10000
|
|
|
+ maxPrice := gconv.Int64(priceArr[1]) * 10000
|
|
|
bidamountArr := []string{`
|
|
|
{
|
|
|
"exists": {
|