|
@@ -54,6 +54,7 @@ new Vue({
|
|
|
methods: {
|
|
|
beforeLiberation: function () {
|
|
|
this.parent.pictureType = 0;
|
|
|
+ this.parent.page=1;
|
|
|
this.getajax();
|
|
|
$('.beforeLiberation').css("height", "1500px");
|
|
|
$('.afterLiberation').hide(2000);
|
|
@@ -70,6 +71,7 @@ new Vue({
|
|
|
},
|
|
|
afterLiberation: function () {
|
|
|
this.parent.pictureType = 1;
|
|
|
+ this.parent.page=1;
|
|
|
this.getajax();
|
|
|
$('.afterLiberation').css("height", "1500px");
|
|
|
$('.beforeLiberation').hide(2000);
|
|
@@ -87,6 +89,7 @@ new Vue({
|
|
|
},
|
|
|
eightyYears: function () {
|
|
|
this.parent.pictureType = 2;
|
|
|
+ this.parent.page=1;
|
|
|
this.getajax();
|
|
|
$('.eightyYears').css("height", "1500px");
|
|
|
$('.beforeLiberation').hide(2000);
|
|
@@ -104,6 +107,7 @@ new Vue({
|
|
|
},
|
|
|
newCentury: function () {
|
|
|
this.parent.pictureType = 3;
|
|
|
+ this.parent.page=1;
|
|
|
this.getajax();
|
|
|
$('.newCentury').css("height", "1500px");
|
|
|
$('.beforeLiberation').hide(2000);
|
|
@@ -403,7 +407,6 @@ new Vue({
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
-
|
|
|
},
|
|
|
mounted() {
|
|
|
window.addEventListener('scroll', this.handleScroll)
|