修复列表展示问题

This commit is contained in:
橙子
2022-10-16 16:09:45 +08:00
parent cf43dc8e70
commit 6d99539730
3 changed files with 3 additions and 3 deletions

View File

@@ -149,7 +149,7 @@ onMounted(() => {
const getList = () => {
articleApi.pageList(queryParams.value).then((response: any) => {
articleList.value.push(...(response.data.data));
articleList.value.unshift(...(response.data.data));
totol.value = response.data.totol;
});
};