...
|
...
|
@@ -307,14 +307,18 @@ const _getHotGoodsFloorData = (args, type) => { |
|
|
* @return {Object}
|
|
|
*/
|
|
|
const _getJacketData = (arg) => {
|
|
|
|
|
|
return {
|
|
|
let resData = {
|
|
|
tpltopic: {
|
|
|
title: arg.title,
|
|
|
bigPic: arg.big_image[0],
|
|
|
types: arg.list
|
|
|
}
|
|
|
};
|
|
|
|
|
|
if(arg.title.title !== '') {
|
|
|
resData.tpltopic.title = arg.title;
|
|
|
}
|
|
|
|
|
|
return resData;
|
|
|
};
|
|
|
|
|
|
/**
|
...
|
...
|
|