|
|
@@ -147,11 +147,15 @@
|
|
|
mounted() {
|
|
|
let that = this;
|
|
|
that.loadingState = false;
|
|
|
- if (!localStorage.Start) {
|
|
|
- localStorage.Start = 0;
|
|
|
- } else {
|
|
|
- // localStorage.Start = 0;
|
|
|
- }
|
|
|
+
|
|
|
+ localStorage.Start = 0;
|
|
|
+ //
|
|
|
+ // if (!localStorage.Start) {
|
|
|
+ // localStorage.Start = 0;
|
|
|
+ // } else {
|
|
|
+ // // localStorage.Start = parseInt(localStorage.Start);
|
|
|
+ // localStorage.Start = 0;
|
|
|
+ // }
|
|
|
|
|
|
// 获取数据
|
|
|
that.getDate();
|
|
|
@@ -274,7 +278,7 @@
|
|
|
let json = res;
|
|
|
if (json.Code == 0) {
|
|
|
that.historyRs = json;
|
|
|
- localStorage.Start = json.LastId;
|
|
|
+ // localStorage.Start = json.LastId;
|
|
|
} else {
|
|
|
that.$message.error(json.Memo);
|
|
|
}
|
|
|
@@ -287,7 +291,7 @@
|
|
|
let json = res;
|
|
|
if (json.Code == 0) {
|
|
|
that.historyRs = json;
|
|
|
- localStorage.Start = json.LastId;
|
|
|
+ // localStorage.Start = json.LastId;
|
|
|
} else {
|
|
|
that.$message.error(json.Memo);
|
|
|
}
|