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

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

View File

@@ -48,7 +48,6 @@ function handlePay(row: DemoOrderApi.Order) {
async function handleRefund(row: DemoOrderApi.Order) {
const loadingInstance = ElLoading.service({
text: '退款中,请稍后...',
fullscreen: true,
});
try {
await refundDemoOrder(row.id as number);

View File

@@ -36,7 +36,6 @@ function handleCreate() {
async function handleTransfer(row: DemoWithdrawApi.Withdraw) {
const loadingInstance = ElLoading.service({
text: '转账中,请稍后...',
fullscreen: true,
});
try {
const payTransferId = await transferDemoWithdraw(row.id as number);

View File

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