红人店铺筛选,review by Redding
Showing
1 changed file
with
11 additions
and
2 deletions
@@ -30,7 +30,7 @@ import CouponCell from '../../../brandStore/components/brandStore/brandStoreSubV | @@ -30,7 +30,7 @@ import CouponCell from '../../../brandStore/components/brandStore/brandStoreSubV | ||
30 | import Prompt from '../../../coupon/components/coupon/Prompt'; | 30 | import Prompt from '../../../coupon/components/coupon/Prompt'; |
31 | import FourImages from './FourImages'; | 31 | import FourImages from './FourImages'; |
32 | import GoodsGroupList from './GoodsGroupList'; | 32 | import GoodsGroupList from './GoodsGroupList'; |
33 | - | 33 | +import BrandProductMoreFilter from './BrandProductMoreFilter'; |
34 | 34 | ||
35 | export default class RedBrand extends Component { | 35 | export default class RedBrand extends Component { |
36 | constructor(props) { | 36 | constructor(props) { |
@@ -99,6 +99,7 @@ export default class RedBrand extends Component { | @@ -99,6 +99,7 @@ export default class RedBrand extends Component { | ||
99 | lastSelected={this.props.productList.isFilter} | 99 | lastSelected={this.props.productList.isFilter} |
100 | moreFilter={this.props.productList.isMoreFilter} | 100 | moreFilter={this.props.productList.isMoreFilter} |
101 | selectOrder={this.props.productList.order} | 101 | selectOrder={this.props.productList.order} |
102 | + moreFilterSelectOrder={this.props.moreFilterSelectOrder} | ||
102 | /> | 103 | /> |
103 | :null | 104 | :null |
104 | } | 105 | } |
@@ -257,13 +258,21 @@ export default class RedBrand extends Component { | @@ -257,13 +258,21 @@ export default class RedBrand extends Component { | ||
257 | filterNameFactors={filterNameFactors} | 258 | filterNameFactors={filterNameFactors} |
258 | onPressProductFilterRightItem={this.props.onPressProductFilterRightItem} | 259 | onPressProductFilterRightItem={this.props.onPressProductFilterRightItem} |
259 | onPressCloseMoreFilter={this.props.onPressCloseMoreFilter} | 260 | onPressCloseMoreFilter={this.props.onPressCloseMoreFilter} |
260 | - onPressMoreFilter={this.props.onPressMoreFilter}/> : null} | 261 | + onPressMoreFilter={this.props.onPressMoreFilter} |
262 | + moreFilterSelectOrder={this.props.moreFilterSelectOrder}/> : null} | ||
261 | {needShowToast ? <Prompt | 263 | {needShowToast ? <Prompt |
262 | text={showToastMessage} | 264 | text={showToastMessage} |
263 | duration={1000} | 265 | duration={1000} |
264 | onPromptHidden={this.props.resetReceiveCouponResult} | 266 | onPromptHidden={this.props.resetReceiveCouponResult} |
265 | /> : null} | 267 | /> : null} |
266 | 268 | ||
269 | + {productList.isMoreFilter ? | ||
270 | + <BrandProductMoreFilter | ||
271 | + productList={productList} | ||
272 | + onPressCloseMoreFilter={this.props.onPressCloseMoreFilter} | ||
273 | + onPressMoreFilter={this.props.onPressMoreFilter} | ||
274 | + moreFilterSelectOrder={this.props.moreFilterSelectOrder}/> : null} | ||
275 | + | ||
267 | <LoadingIndicator | 276 | <LoadingIndicator |
268 | isVisible={isFetching} | 277 | isVisible={isFetching} |
269 | /> | 278 | /> |
-
Please register or login to post a comment