Authored by 于良

删除log review by 草莓

... ... @@ -93,11 +93,9 @@ export default class HomeService {
}
})
.then((json) => {
console.log(json);
return json;
})
.catch((error) => {
console.log(error);
throw(error);
});
}
... ...
... ... @@ -366,14 +366,11 @@ export function getMineUnreadMsg() {
let {isFetching, open} = mine;
let funGetMineUnreadMsg = () => {
console.log('----getMineUnreadMsg-----');
return new MineService(app.singleHost).getMineUnreadMsg()
.then(json => {
console.log(json);
dispatch(getMineUnReadMsgSuccess(json));
})
.catch(error => {
console.log(error);
dispatch(getMineUnReadMsgFailure());
});
};
... ...
... ... @@ -91,7 +91,7 @@ class NewArrivalContainer extends Component {
}
_onPressDislike() {
console.log('dislike....');
}
_onEndReached() {
... ...
... ... @@ -355,19 +355,14 @@ function processScanString(url,scanType) {
break;
case ScanTypeInfo.YHScanType_Default: {
if (url.indexOf('skn:') !== -1) {
console.log('skn');
alertInfo = scanSkn(url);
} else if (url.indexOf('booth:') !== -1) {
console.log('booth');
alertInfo = scanBooth(url);
} else if (url.indexOf('bear:') !== -1) {
console.log('bear');
alertInfo = scanBear(url);
} else if (url.indexOf('yohobuy:') !== -1 || url.indexOf('yohobuy=') !== -1 || url.indexOf('yohobuy=') !== -1) {
console.log('yohobuy');
alertInfo = scanYohoBuy(url);
} else if (url.indexOf('http://') !== -1 || url.indexOf('https://') !== -1) {
console.log('http&s');
alertInfo = scanAddressLink(url);
} else {
alertInfo = {
... ... @@ -415,7 +410,6 @@ export function processURL(scanString) {
export function jumpWithUrl(url, JumpType) {
if (!url) {
console.log('Illegal url');
return;
}
... ...