From 55cbafd4971ea4ea8adcf60b199608cc49945b87 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 27 十月 2025 15:52:41 +0800
Subject: [PATCH] fix: s
---
src/views/Reward/components/BatchRegisterDialog.vue | 6 +++++-
src/services/api/typings.d.ts | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/services/api/typings.d.ts b/src/services/api/typings.d.ts
index d5768e6..7e5461e 100644
--- a/src/services/api/typings.d.ts
+++ b/src/services/api/typings.d.ts
@@ -6423,7 +6423,7 @@
fileId?: string;
}
- type FinanceStatusEnum = 1 | 2 | 3;
+ type FinanceStatusEnum = 1 | 2 | 3 | -1;
type FinanceTypeEnum = 10 | 20 | 30;
diff --git a/src/views/Reward/components/BatchRegisterDialog.vue b/src/views/Reward/components/BatchRegisterDialog.vue
index 872ed88..8ed6086 100644
--- a/src/views/Reward/components/BatchRegisterDialog.vue
+++ b/src/views/Reward/components/BatchRegisterDialog.vue
@@ -130,8 +130,12 @@
const deleteList = ref<string[]>([]);
watch(visible, (value, oldValue) => {
- if (value && !oldValue) {
+ if (value && !oldValue && !form.value.incomeType) {
getParkBountyApplyBatchFinanceEnterprise();
+ } else {
+ form.value.companyList = [];
+ form.value.parkBountyApplyDetailIds = [];
+ deleteList.value = [];
}
});
--
Gitblit v1.9.1