提交内容

special-20250331
dshclm 4 days ago
parent d3067acc73
commit c7160234ae

@ -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)

Loading…
Cancel
Save