|
|
<template>
|
|
|
<div>
|
|
|
<LayoutApp :show-back="true" title="全新瑕疵" class="list-wrapper">
|
|
|
<LayoutApp :show-back="true" :title="title" class="list-wrapper">
|
|
|
<div class="filter">
|
|
|
<div class="filter-tab">
|
|
|
<div class="tab-item" :class="selectedType === 2 && 'selected-tab'" @click="pressType(2)">推荐</div>
|
...
|
...
|
@@ -71,6 +71,7 @@ export default { |
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
title: '',
|
|
|
isFetch: true,
|
|
|
scrollY: 0,
|
|
|
isShowEmpty: false,
|
...
|
...
|
@@ -507,6 +508,8 @@ export default { |
|
|
|
|
|
this.$refs.second.yasShowEvent(this.scrollY);
|
|
|
this.yasShowPage();
|
|
|
|
|
|
this.title = this.$route.query.title ? this.$route.query.title : '';
|
|
|
},
|
|
|
deactivated() {
|
|
|
this.$refs.filtrate.hide();
|
...
|
...
|
|