...
|
...
|
@@ -85,7 +85,7 @@ export function pressCategoryBMore(category_id){ |
|
|
});
|
|
|
|
|
|
let all = {
|
|
|
category_name: "全部" + (category ? category.category_name : ""),
|
|
|
category_name: "全部" + (category ? category.get('category_name') : ""),
|
|
|
parent_id: category_id,
|
|
|
relation_parameter: category ? category.get('relation_parameter') : {},
|
|
|
node_count: category ? category.get('node_count') : 0,
|
...
|
...
|
@@ -94,7 +94,7 @@ export function pressCategoryBMore(category_id){ |
|
|
console.log("chenlin", JSON.stringify(all));
|
|
|
|
|
|
//设置当前的类别信息
|
|
|
dispatch(setCurrentCateB(category_id, category.category_name));
|
|
|
dispatch(setCurrentCateB(category_id, category.get('category_name')));
|
|
|
dispatch(jumpToCategory(all, 0, categoryB.currentChannelId));
|
|
|
|
|
|
};
|
...
|
...
|
|