Authored by 陈林

Merge branch 'V6.9.7' into V6.9.8

... ... @@ -30,8 +30,8 @@ export default class NewArrivalCell extends Component {
shouldComponentUpdate(nextProps){
if (Immutable.is(nextProps.rowData, this.props.rowData)
&& nextProps.index, this.props.index
&& nextProps.similarIndex, this.props.similarIndex) {
&& nextProps.index == this.props.index
&& nextProps.similarIndex == this.props.similarIndex) {
return false;
} else {
return true;
... ...