Showing
4 changed files
with
6 additions
and
6 deletions
@@ -55,7 +55,7 @@ | @@ -55,7 +55,7 @@ | ||
55 | return this.page !== 0 && !this.productList.length; | 55 | return this.page !== 0 && !this.productList.length; |
56 | }, | 56 | }, |
57 | listState: function() { | 57 | listState: function() { |
58 | - let state = undefined; // 0: 全部加载完 1: 正在加载 | 58 | + let state; // 0: 全部加载完 1: 正在加载 |
59 | 59 | ||
60 | if (!this.page) { | 60 | if (!this.page) { |
61 | return; | 61 | return; |
@@ -108,7 +108,7 @@ | @@ -108,7 +108,7 @@ | ||
108 | } | 108 | } |
109 | } | 109 | } |
110 | }) | 110 | }) |
111 | - .fail(error => { | 111 | + .fail(error => { // eslint-disable-line |
112 | tip('网络出错~'); | 112 | tip('网络出错~'); |
113 | }) | 113 | }) |
114 | .always(() => { | 114 | .always(() => { |
@@ -47,7 +47,7 @@ | @@ -47,7 +47,7 @@ | ||
47 | }, | 47 | }, |
48 | computed: { | 48 | computed: { |
49 | listState: function() { | 49 | listState: function() { |
50 | - let state = undefined; // 0: 全部加载完 1: 正在加载 | 50 | + let state; // 0: 全部加载完 1: 正在加载 |
51 | 51 | ||
52 | if (!this.page) { | 52 | if (!this.page) { |
53 | return; | 53 | return; |
@@ -98,7 +98,7 @@ | @@ -98,7 +98,7 @@ | ||
98 | } | 98 | } |
99 | } | 99 | } |
100 | }) | 100 | }) |
101 | - .fail(error => { | 101 | + .fail(error => { // eslint-disable-line |
102 | tip('网络出错~'); | 102 | tip('网络出错~'); |
103 | }) | 103 | }) |
104 | .always(() => { | 104 | .always(() => { |
@@ -59,7 +59,7 @@ | @@ -59,7 +59,7 @@ | ||
59 | return this.page !== 0 && !this.productList.length; | 59 | return this.page !== 0 && !this.productList.length; |
60 | }, | 60 | }, |
61 | listState: function() { | 61 | listState: function() { |
62 | - let state = undefined; // 0: 全部加载完 1: 正在加载 | 62 | + let state; // 0: 全部加载完 1: 正在加载 |
63 | 63 | ||
64 | if (!this.page) { | 64 | if (!this.page) { |
65 | return; | 65 | return; |
-
Please register or login to post a comment