...
|
...
|
@@ -555,7 +555,11 @@ $(document).on("keyup", "#brandsearch", function () { |
|
|
Bll.Brands.forEach(function (brands) {
|
|
|
brands.items.forEach(function (item) {
|
|
|
if (regex.test(item.brand_name)) {
|
|
|
bs.push('<a class="btn"><input type="checkbox" value="' + item.id + '" name="brandCheckBox"><label>' + item.brand_name + '</label></a>');
|
|
|
if (item.brand_ico && item.brand_ico != '') {
|
|
|
bs.push('<a class="btn"><input type="checkbox" value="' + item.id + '" name="brandCheckBox"><label>' + item.brand_name + '</label></a>');
|
|
|
} else {
|
|
|
bs.push('<a class="btn"><input type="checkbox" value="' + item.id + '" name="brandCheckBox" disabled="disabled" title="品牌没有维护LOG,无法选择"><label>' + item.brand_name + '</label></a>');
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
});
|
...
|
...
|
|