Authored by 马力

资讯关联品牌时,如果品牌log没有维护则不能进行关联

... ... @@ -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>');
}
}
});
});
... ...