...
|
...
|
@@ -97,8 +97,8 @@ export default class CategoryBList extends Component { |
|
|
}
|
|
|
|
|
|
renderRow(rowData, sectionID, rowID, highlightRow) {
|
|
|
let selectText = rowData.get('category_name');
|
|
|
let selectId = rowData.get('category_id');
|
|
|
let selectText = rowData ? rowData.get('category_name') : "";
|
|
|
let selectId = rowData ? rowData.get('category_id') : "";
|
|
|
|
|
|
let selectBg = this.props.currentCateId == selectId ? {backgroundColor: '#ffffff'} : {backgroundColor: '#f0f0f0'};
|
|
|
|
...
|
...
|
|