Authored by yyq

author recomend flag

... ... @@ -149,6 +149,7 @@ export default {
clear() {
this.clearTimestamp = new Date().getTime();
this.noMore = false;
this.listHeight = 0;
for (let i = 0; i < this.cols; i++) {
this.visibleItems[i].length = 0;
... ...
... ... @@ -110,7 +110,7 @@ export default {
display: block;
width: 230px;
height: 230px;
background-image: url('~statics/image/userpage/follow-empty.jpg');
background-image: url('~statics/image/userpage/follow-empty.png');
background-size: 100% 100%;
margin: 0 auto 10px;
}
... ...
... ... @@ -23,6 +23,7 @@
</div>
</div>
</div>
<div v-if="data.recommendFlag" class="rec-flag"></div>
</div>
</template>
... ... @@ -97,14 +98,26 @@ export default {
width: 100%;
padding: 5px;
font-size: 24px;
position: relative;
.wf-item-mid {
border-radius: 2PX;
overflow: hidden;
position: relative;
overflow: hidden;
background-color: #fff;
}
.rec-flag {
width: 70px;
height: 28px;
position: absolute;
right: 0;
top: 10px;
z-index: 1;
background-image: url('~statics/image/userpage/rec-flg.png');
background-size: contain;
}
.action-article {
position: absolute;
top: 0;
... ...