Authored by xuqi

标签页点击链接

... ... @@ -595,7 +595,7 @@ module.exports = function(flag) {
isSale: true,
isFew: true,
isNew: false,
url: ''
url: '',
likeUrl: ''
},
{
... ... @@ -608,7 +608,7 @@ module.exports = function(flag) {
isSale: false,
isFew: false,
isNew: true,
url: ''
url: '',
likeUrl: ''
}
]
... ... @@ -624,7 +624,7 @@ module.exports = function(flag) {
pageView: 3445,
like: 23,
share: true,
url: ''
url: '',
likeUrl: ''
},
{
... ... @@ -637,7 +637,7 @@ module.exports = function(flag) {
pageView: 3445,
like: 23,
share: true,
url: ''
url: '',
likeUrl: ''
}
]
... ... @@ -843,7 +843,7 @@ module.exports = function(flag) {
isSale: true,
isFew: true,
isNew: false,
url: ''
url: '',
likeUrl: ''
},
{
... ...
... ... @@ -35,7 +35,12 @@
.tag-article {
margin: 32rem / $pxConvertRem 0 0 0;
padding: 0 40rem / $pxConvertRem 0 30rem / $pxConvertRem;
.tag-title-container {
text-decoration: none;
color: #000;
}
.tag-title{
line-height: 44rem / $pxConvertRem;
color: #000;
... ...
<div class="tag-content" data-id="{{id}}">
<div class="tag-img">
<a href="javascript:;" class="tag-match">搭配</a>
<img src="{{img}}" alt="{{alt}}">
<a href="{{url}}">
<img src="{{img}}" alt="{{alt}}">
</a>
</div>
<div class="tag-article">
<h2 class="tag-title">{{title}}</h2>
<a class="tag-title-container" href="{{url}}">
<h2 class="tag-title">{{title}}</h2>
</a>
<p class="tag-text">{{text}}</p>
{{> common/time_view_like_share}}
</div>
... ...