|
@@ -63,13 +63,13 @@ export default withLayout((props) => {
|
63
|
63
|
<text className='Title'>{data.newsName}</text>
|
64
|
64
|
<view>
|
65
|
65
|
<text>阅读:{data.pvNum || 0}</text>
|
66
|
|
- <text>点赞{data.favorNum || 0}</text>
|
|
66
|
+ {/* <text>点赞{data.favorNum || 0}</text> */}
|
67
|
67
|
<text>收藏{data.saveNum || 0}</text>
|
68
|
68
|
</view>
|
69
|
69
|
<text className='Time'>
|
70
|
70
|
{`时间:${formatDate(data.createDate, 'yyyy-M-d')} `}
|
71
|
71
|
</text>
|
72
|
|
- <text className='Share'>分享好友</text>
|
|
72
|
+ <button open-type='share' className='Share'>分享好友</button>
|
73
|
73
|
</view>
|
74
|
74
|
</view>
|
75
|
75
|
|