|
@@ -123,7 +123,7 @@ type BidSearchExport struct {
|
|
|
|
|
|
func (this *BidSearchExport) PassBidSearchExport(Sysconfig map[string]interface{}) (returnData map[string]interface{}) {
|
|
|
defer util.Catch()
|
|
|
- areaSave, industrySave, citySave := []string{}, []string{}, []string{}
|
|
|
+ areaSave, industrySave, citySave, districtSave := []string{}, []string{}, []string{}, []string{}
|
|
|
winnerSave, buyerclassSave := []string{}, []string{}
|
|
|
publishtimeSave := this.Publishtime
|
|
|
if len(this.Area) > 0 {
|
|
@@ -132,6 +132,9 @@ func (this *BidSearchExport) PassBidSearchExport(Sysconfig map[string]interface{
|
|
|
if this.City != "" {
|
|
|
citySave = strings.Split(this.City, ",")
|
|
|
}
|
|
|
+ if this.District != "" {
|
|
|
+ districtSave = strings.Split(this.District, ",")
|
|
|
+ }
|
|
|
if len(this.Industry) > 0 {
|
|
|
industrySave = strings.Split(this.Industry, ",")
|
|
|
}
|
|
@@ -198,6 +201,7 @@ func (this *BidSearchExport) PassBidSearchExport(Sysconfig map[string]interface{
|
|
|
"publishtime": publishtimeSave,
|
|
|
"area": areaSave,
|
|
|
"city": citySave,
|
|
|
+ "district": districtSave,
|
|
|
"subtype": this.Subtype,
|
|
|
"minprice": this.Minprice,
|
|
|
"maxprice": this.Maxprice,
|