reactor:element-plus 移除 loading 的 fullscreen = true(默认就是 true)
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user