Authored by 郝肖肖

Merge branch 'hotfix/codeCheck' into feature/newBindMobile

... ... @@ -123,14 +123,21 @@ const processFun = {
imageSrc = '';
for (let key in item) {
if (!item[key]) {
continue;
}
if (key === 'floorTitle') {
floorTitle = (_.has(item[key], 'text') && (item[key].text !== '')) ? item[key].text : '';
continue;
}
if (!item.encrypt) {
item.couponID = crypto.encryption('yoho9646abcdefgh', item.couponID);
item.encrypt = true;
}
imageSrc = helpers.image(item.image.src, 0, 0);
item.image.src = imageSrc;
... ...