...
|
...
|
@@ -2,14 +2,14 @@ |
|
|
var $ = require('yoho-jquery');
|
|
|
const brand_tmp = require('hbs/material/brand.hbs');
|
|
|
|
|
|
$('#filter').on('change', () => {
|
|
|
$('#filter').on('change', function() {
|
|
|
if ($('#filter').find('option:selected').attr('value') == 3) {
|
|
|
$('.date').show();
|
|
|
}
|
|
|
});
|
|
|
|
|
|
/* 品牌点击*/
|
|
|
$('#brand label').on('click', () => {
|
|
|
$('#brand label').on('click', function() {
|
|
|
if ($('#brand_container').css('display') == 'none') {
|
|
|
$('#brand_container').css('display', 'block');
|
|
|
} else {
|
...
|
...
|
@@ -38,7 +38,7 @@ function getBrandList(_index, yh_channel) { |
|
|
getBrandList(1, 1);
|
|
|
|
|
|
/* 获取品类数据*/
|
|
|
$.get('/material/getCategory', data => {
|
|
|
$.get('/material/getCategory', function(data) {
|
|
|
console.log(data);
|
|
|
});
|
|
|
/* eslint-enable */ |
...
|
...
|
|