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