Showing
4 changed files
with
5 additions
and
3 deletions
@@ -27,8 +27,10 @@ export default { | @@ -27,8 +27,10 @@ export default { | ||
27 | 27 | ||
28 | .product-list { | 28 | .product-list { |
29 | width: 100%; | 29 | width: 100%; |
30 | - overflow: scroll; | 30 | + overflow-x: scroll; |
31 | + overflow-y: hidden; | ||
31 | white-space: nowrap; | 32 | white-space: nowrap; |
33 | + display: flex; | ||
32 | } | 34 | } |
33 | 35 | ||
34 | .item + .item { | 36 | .item + .item { |
1 | <template> | 1 | <template> |
2 | <div class="flex"> | 2 | <div class="flex"> |
3 | <WidgetAvatarGroup :avatars="praiseHeadIco"></WidgetAvatarGroup> | 3 | <WidgetAvatarGroup :avatars="praiseHeadIco"></WidgetAvatarGroup> |
4 | - <span class="v-center">{{praiseCount}}人喜欢</span> | 4 | + <span class="v-center" v-if="praiseCount">{{praiseCount}}人喜欢</span> |
5 | <span class="time v-center text-right">{{publish_time | formatTime}}</span> | 5 | <span class="time v-center text-right">{{publish_time | formatTime}}</span> |
6 | </div> | 6 | </div> |
7 | </template> | 7 | </template> |
@@ -113,6 +113,7 @@ module.exports = { | @@ -113,6 +113,7 @@ module.exports = { | ||
113 | }, | 113 | }, |
114 | '/api/guang/article/queryGoods': { | 114 | '/api/guang/article/queryGoods': { |
115 | api: 'app.search.recomandLi', | 115 | api: 'app.search.recomandLi', |
116 | + cache: true, | ||
116 | params: { | 117 | params: { |
117 | query: {type: String, require: false}, | 118 | query: {type: String, require: false}, |
118 | order: {type: String, require: false}, | 119 | order: {type: String, require: false}, |
-
Please register or login to post a comment