|
|
// import $ from 'yoho-jquery';
|
|
|
import $ from 'yoho-jquery';
|
|
|
import Page from 'yoho-page';
|
|
|
|
|
|
class SelectCouponController extends Page {
|
...
|
...
|
@@ -61,8 +61,10 @@ class SelectCouponController extends Page { |
|
|
showFilter() {
|
|
|
if (this.view.filterItem.hasClass('hide')) {
|
|
|
this.view.filterItem.removeClass('hide');
|
|
|
this.view.showFilterBtn.removeClass('icon-down').addClass('icon-up');
|
|
|
} else {
|
|
|
this.view.filterItem.addClass('hide');
|
|
|
this.view.showFilterBtn.removeClass('icon-up').addClass('icon-down');
|
|
|
}
|
|
|
}
|
|
|
}
|
...
|
...
|
|