diff --git a/ruoyi-admin/src/main/resources/templates/home/special_view.html b/ruoyi-admin/src/main/resources/templates/home/special_view.html index ef7c746..2a4594e 100644 --- a/ruoyi-admin/src/main/resources/templates/home/special_view.html +++ b/ruoyi-admin/src/main/resources/templates/home/special_view.html @@ -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)