页面优化
This commit is contained in:
@@ -279,6 +279,7 @@
|
||||
info: {},
|
||||
count:'0',
|
||||
use_count:'0',
|
||||
all_data:'',
|
||||
},
|
||||
computed: {
|
||||
|
||||
@@ -406,7 +407,17 @@
|
||||
use_count = res.use_count;
|
||||
}
|
||||
});
|
||||
this.table_data = datalist;
|
||||
|
||||
if (ProductId == 0){
|
||||
this.all_data = datalist;
|
||||
let now_data = [];
|
||||
for (let i = 0;i<50;i++){
|
||||
now_data[i] = datalist[i];
|
||||
}
|
||||
this.table_data = now_data;
|
||||
} else {
|
||||
this.table_data = datalist;
|
||||
}
|
||||
this.count = count;
|
||||
this.use_count = use_count;
|
||||
},
|
||||
@@ -507,6 +518,7 @@
|
||||
}
|
||||
},
|
||||
detail(r){
|
||||
|
||||
$(".layerTable").show();
|
||||
this.info= r;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user