|
|
|
@ -413,12 +413,11 @@
|
|
|
|
|
success: function(res) {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
this.rightList = res.data.map(function(item) {
|
|
|
|
|
return {
|
|
|
|
|
...item,
|
|
|
|
|
return Object.assign({}, item, {
|
|
|
|
|
isExpanded: false,
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
itemsPerPage: 5
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}.bind(this)
|
|
|
|
@ -435,12 +434,11 @@
|
|
|
|
|
success: function(res) {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
this.rightList = res.data.map(function(item) {
|
|
|
|
|
return {
|
|
|
|
|
...item,
|
|
|
|
|
return Object.assign({}, item, {
|
|
|
|
|
isExpanded: false,
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
itemsPerPage: 5
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}.bind(this)
|
|
|
|
|