Authored by 李奇

修正eslint rules违背

@@ -165,7 +165,7 @@ export default { @@ -165,7 +165,7 @@ export default {
165 modal.confirm('确定清空"' + name + '"下的浏览记录', '确定清空?', function() { 165 modal.confirm('确定清空"' + name + '"下的浏览记录', '确定清空?', function() {
166 let skn = []; 166 let skn = [];
167 167
168 - for (let i in that.list) { 168 + for (let i in that.list) { // eslint-disable-line
169 skn.push(that.list[i].product_skn); 169 skn.push(that.list[i].product_skn);
170 } 170 }
171 171
@@ -79,11 +79,11 @@ @@ -79,11 +79,11 @@
79 }, 79 },
80 methods: { 80 methods: {
81 reload() { 81 reload() {
82 - this.page= 0; 82 + this.page = 0;
83 this.pageTotal = 1; 83 this.pageTotal = 1;
84 - this.orderList= [];  
85 - this.busy= false;  
86 - this.emptybox= 'hide'; 84 + this.orderList = [];
  85 + this.busy = false;
  86 + this.emptybox = 'hide';
87 87
88 this.getRefundData(); 88 this.getRefundData();
89 89