Authored by yyq

颜色筛选handle

... ... @@ -634,8 +634,12 @@ exports.handleFilterData = (origin, params, total) => {
// 处理颜色选中数据
if (color.checked) {
color.href = handleFilterUrl(params, null, {color: value.color_id});
dest.checkedConditions.conditions.push(color);
let href = handleFilterUrl(params, null, {color: value.color_id});
dest.checkedConditions.conditions.push({
href: href,
color: color.rgb
});
}
dest.color.push(color);
... ...