Commit c50a943d by agan

xg

parent 6af641c0
Showing with 31 additions and 1 deletions
......@@ -469,6 +469,7 @@
isHis1: false,
isHis2: false,
isHis3: false,
canTab: true,
}
},
methods: {
......@@ -616,6 +617,10 @@
},
changeTab1(a) {
if (!this.canTab) {
return
}
this.canTab = false;
app.tab1 = a;
app.langShow = false;
if (a < 3) {
......@@ -637,6 +642,10 @@
},
changeTab2(a) {
if (!this.canTab) {
return
}
this.canTab = false;
this.langShow = false;
if (a == this.tab2) {
this.showHisTab = true;
......@@ -895,12 +904,15 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true;
});
} else {
that.rankLists = []
that.rankOther = [];
that.canTab = true;
}
}
})
},
......@@ -930,10 +942,12 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.rankOther = []
that.rankLists = []
that.canTab = true
}
}
})
......@@ -967,8 +981,10 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.canTab = true
that.rankOther = []
that.rankLists = []
}
......@@ -1005,8 +1021,10 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.canTab = true
that.rankOther = []
that.rankLists = []
}
......@@ -1043,8 +1061,10 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.canTab = true
that.rankOther = []
that.rankLists = []
}
......@@ -1078,9 +1098,11 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.rankOther = []
that.canTab = true
that.rankLists = []
}
}
......@@ -1115,9 +1137,11 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.canTab = true
that.rankOther = []
that.rankLists = []
}
......@@ -1153,8 +1177,10 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.canTab = true
that.rankOther = []
that.rankLists = []
}
......@@ -1189,8 +1215,10 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.canTab = true
that.rankOther = []
that.rankLists = []
}
......@@ -1223,8 +1251,10 @@
that.$forceUpdate();
that.$nextTick(function () {
// console.log(1);
that.canTab = true
});
} else {
that.canTab = true
that.rankLists = []
that.rankOther = []
......@@ -1290,7 +1320,7 @@
}
},
mounted: function () {
FastClick.attach(document.body);
// FastClick.attach(document.body);
this.langSelectValue = this.langList[this.langType].lang5;
this.getLangType();
this.hideBack();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment