Authored by 李奇

修正eslint rules违背

... ... @@ -165,7 +165,7 @@ export default {
modal.confirm('确定清空"' + name + '"下的浏览记录', '确定清空?', function() {
let skn = [];
for (let i in that.list) {
for (let i in that.list) { // eslint-disable-line
skn.push(that.list[i].product_skn);
}
... ...
... ... @@ -79,11 +79,11 @@
},
methods: {
reload() {
this.page= 0;
this.page = 0;
this.pageTotal = 1;
this.orderList= [];
this.busy= false;
this.emptybox= 'hide';
this.orderList = [];
this.busy = false;
this.emptybox = 'hide';
this.getRefundData();
... ...