Authored by hongyong.zhao

添加@你

... ... @@ -21,7 +21,19 @@ export default class ContentLikedListCell extends Component {
let imageUrl = YH_Image.getSlicedUrl(picItem.src, 50 * DEVICE_HEIGHT_RATIO, 50 * DEVICE_HEIGHT_RATIO, 2);
let userName = rowData.userName;
let subName = rowData.businessType === 1000 ? '赞了你' : '收藏了你';
let subName = ''
switch (rowData.businessType) {
case 1000:
subName = '赞了你'
break
case 1001:
subName = '收藏了你'
break
case 1007:
subName = '@了你'
break
}
// rowData.businessType === 1000 ? '赞了你' : '收藏了你';
let showIcon = (rowData.authGroupId === 3 || rowData.authGroupId === 5 || rowData.authGroupId === 7) ? true : false;
let source;
switch (rowData.authGroupId) {
... ...