fix: lint

This commit is contained in:
xingyu4j
2025-10-20 10:49:08 +08:00
parent 30c7727361
commit 496a808b86
23 changed files with 86 additions and 45 deletions

View File

@@ -99,7 +99,11 @@ onMounted(() => {
<Grid>
<template #top>
<ElTabs v-model="statusTab" class="-mt-11" @tab-change="handleChangeStatus">
<ElTabs
v-model="statusTab"
class="-mt-11"
@tab-change="handleChangeStatus"
>
<ElTabs.TabPane
v-for="tab in statusTabs"
:key="tab.value"

View File

@@ -228,4 +228,4 @@ defineExpose({
/>
</template>
</Grid>
</template>
</template>

View File

@@ -199,4 +199,4 @@ defineExpose({
/>
</template>
</Grid>
</template>
</template>

View File

@@ -167,7 +167,9 @@ async function submit(channelCode: string) {
// 打开轮询任务
createQueryInterval();
} finally {}
} finally {
//
}
}
/** 构建提交支付的额外参数 */

View File

@@ -62,4 +62,4 @@ const [Modal, modalApi] = useVbenModal({
<Grid />
</Page>
</Modal>
</template>
</template>

View File

@@ -37,7 +37,9 @@ function handleEdit(row: WalletRechargePackageApi.WalletRechargePackage) {
}
/** 删除套餐 */
async function handleDelete(row: WalletRechargePackageApi.WalletRechargePackage) {
async function handleDelete(
row: WalletRechargePackageApi.WalletRechargePackage,
) {
const loadingInstance = ElLoading.service({
text: $t('ui.actionMessage.deleting', [row.name]),
});