function showContent(item, content) {
$('.js-showContent').on('click', function () {
$(this).toggleClass('active');
$(this).parents(item).find(content).slideToggle();
});
}
showContent('.order-item','.order-item-content');
showContent('.discuss-item','.discuss-item-content');