|
@@ -18,7 +18,7 @@ |
|
@@ -18,7 +18,7 @@ |
18
|
<div class="search-img" @click="goSearch()"></div>
|
18
|
<div class="search-img" @click="goSearch()"></div>
|
19
|
</div>
|
19
|
</div>
|
20
|
</div>
|
20
|
</div>
|
21
|
- <Scroll class="product-list" v-show="!productList.isEmpty"
|
21
|
+ <Scroll ref="scroll" class="product-list" v-show="!productList.isEmpty"
|
22
|
:options="scrollOptions"
|
22
|
:options="scrollOptions"
|
23
|
:data="productList.list"
|
23
|
:data="productList.list"
|
24
|
@pulling-up="onPullingUp">
|
24
|
@pulling-up="onPullingUp">
|
|
@@ -201,6 +201,7 @@ export default { |
|
@@ -201,6 +201,7 @@ export default { |
201
|
}
|
201
|
}
|
202
|
params.isReset = true;
|
202
|
params.isReset = true;
|
203
|
this.fetchList(params);
|
203
|
this.fetchList(params);
|
|
|
204
|
+ this.$refs.scroll.scrollTo(0, 0, 300)
|
204
|
this.changeArrow();
|
205
|
this.changeArrow();
|
205
|
},
|
206
|
},
|
206
|
goSearch() {
|
207
|
goSearch() {
|