red-shop.js 618 Bytes
/*
 * @Author: Targaryen
 * @Date: 2017-03-23 11:31:51
 * @Last Modified by: Targaryen
 * @Last Modified time: 2017-03-23 14:32:21
 */
/* 红人店铺首页 */

let $shopIntroFolder = $('.shop-intro-folder');
let $shortIntro = $('#shortIntro');
let $shopIntro = $('#shopIntro');
let $shopIntrArrw = $('#shopIntrArrw');

/**
 * 店铺介绍展开收起
 */
$shopIntroFolder.on('click', function() {
    $shortIntro.toggleClass('hide');
    $shopIntro.toggleClass('active');

    if ($shopIntro.hasClass('active')) {
        $shopIntrArrw.html('');
    } else {
        $shopIntrArrw.html('');
    }
});