This commit is contained in:
dylanmay
2025-11-27 12:17:53 +08:00
55 changed files with 5319 additions and 503 deletions

View File

@@ -76,9 +76,8 @@ const [Grid, gridApi] = useVbenVxeGrid({
});
}
});
// TODO @jaweArticle 类型,报错;
return {
list: res.list as unknown as Article[],
list: res.list as unknown as MpFreePublishApi.FreePublish[],
total: res.total,
};
},
@@ -92,7 +91,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
refresh: true,
search: true,
},
} as VxeTableGridOptions<Article>,
} as VxeTableGridOptions<MpFreePublishApi.FreePublish>,
});
</script>