提交内容

special-20250331
dshclm 4 days ago
parent d3067acc73
commit c7160234ae

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

Loading…
Cancel
Save