Authored by TaoHuang

fix size

... ... @@ -81,7 +81,6 @@ export default {
font-size: 20px;
color: #444;
/*height: 58px;*/
word-break: break-all;
white-space: normal;
}
}
... ...
... ... @@ -27,8 +27,10 @@ export default {
.product-list {
width: 100%;
overflow: scroll;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
display: flex;
}
.item + .item {
... ...
<template>
<div class="flex">
<WidgetAvatarGroup :avatars="praiseHeadIco"></WidgetAvatarGroup>
<span class="v-center">{{praiseCount}}人喜欢</span>
<span class="v-center" v-if="praiseCount">{{praiseCount}}人喜欢</span>
<span class="time v-center text-right">{{publish_time | formatTime}}</span>
</div>
</template>
... ...
... ... @@ -113,6 +113,7 @@ module.exports = {
},
'/api/guang/article/queryGoods': {
api: 'app.search.recomandLi',
cache: true,
params: {
query: {type: String, require: false},
order: {type: String, require: false},
... ...