Showing
2 changed files
with
2 additions
and
2 deletions
| @@ -40,7 +40,7 @@ export struct SearchResultComponent { | @@ -40,7 +40,7 @@ export struct SearchResultComponent { | ||
| 40 | 40 | ||
| 41 | SearcherAboutDataModel.getSearchSuggestData(request, getContext(this)).then((value) => { | 41 | SearcherAboutDataModel.getSearchSuggestData(request, getContext(this)).then((value) => { |
| 42 | value.forEach((item) => { | 42 | value.forEach((item) => { |
| 43 | - if(item.appStyle != "13"){ | 43 | + if(item.objectType != "13"){ |
| 44 | this.data.push(item) | 44 | this.data.push(item) |
| 45 | } | 45 | } |
| 46 | }) | 46 | }) |
| @@ -185,7 +185,7 @@ export struct SearchResultContentComponent { | @@ -185,7 +185,7 @@ export struct SearchResultContentComponent { | ||
| 185 | } | 185 | } |
| 186 | 186 | ||
| 187 | let contentDTO = this.dataTransform(value, photos); | 187 | let contentDTO = this.dataTransform(value, photos); |
| 188 | - if (contentDTO.appStyle != "13") { | 188 | + if(value.data.type != "13"){ |
| 189 | this.data.push(contentDTO) | 189 | this.data.push(contentDTO) |
| 190 | } | 190 | } |
| 191 | 191 |
-
Please register or login to post a comment