reactor:element-plus 移除 loading 的 fullscreen = true(默认就是 true)

This commit is contained in:
YunaiV
2025-09-05 23:39:33 +08:00
parent 8d93c843ad
commit e81a759e0d
58 changed files with 34 additions and 117 deletions

View File

@@ -40,7 +40,6 @@ function handleEdit(row: MallArticleCategoryApi.ArticleCategory) {
async function handleDelete(row: MallArticleCategoryApi.ArticleCategory) {
const loadingInstance = ElLoading.service({
text: $t('ui.actionMessage.deleting', [row.name]),
fullscreen: true,
});
try {
await deleteArticleCategory(row.id as number);

View File

@@ -37,7 +37,6 @@ function handleEdit(row: MallArticleApi.Article) {
async function handleDelete(row: MallArticleApi.Article) {
const loadingInstance = ElLoading.service({
text: $t('ui.actionMessage.deleting', [row.title]),
fullscreen: true,
});
try {
await deleteArticle(row.id as number);