Authored by yoho-js001

Fix bug on new arrival.

... ... @@ -304,12 +304,15 @@ class NewArrivalContainer extends Component {
shop_name,
shops_id,
brand_id,
shop_template_type,
} = data.toJS();
if (!shops_id||!shop_name) {
return;
}
let url = `http://m.yohobuy.com?openby:yohobuy={"action":"go.shop","params":{"shop_id":"${shops_id}","shop_template_type":"1","shop_name":"${shop_name}"}}`;
console.log('aaaaaaaaa');
console.log(data.toJS());
let url = `http://m.yohobuy.com?openby:yohobuy={"action":"go.shop","params":{"shop_id":"${shops_id}","shop_template_type":"${shop_template_type}","shop_name":"${shop_name}"}}`;
ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
let I_INDEX = parseInt(index) + 1;
... ...