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

@@ -81,7 +81,6 @@ async function handleBrokerageEnabledChange(
const text = row.brokerageEnabled ? '开通' : '关闭';
const loadingInstance = ElLoading.service({
text: `正在${text}"${row.nickname}"的推广资格...`,
fullscreen: true,
});
try {
await updateBrokerageEnabled({

View File

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

View File

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

View File

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