Authored by yyq

异常处理

... ... @@ -204,9 +204,9 @@ exports.getOutletsSpecialData = (params, channel) => {
Object.assign(specialData, result[0]);
specialData.headerData.headType = 'outlets';
// 活动信息获取异常
if (result[1].code !== 200) {
// 活动信息获取异常
throw new Error('fail_to_get_special_info_with_ID:' + params.id);
throw new Error('outlets special info not found-(ID:' + params.id + ')');
}
Object.assign(specialData,
... ...