From fc6bbae5805da6c95fd675210999a03802cd62ad Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 23 十月 2025 15:39:12 +0800
Subject: [PATCH] fix: 数据看板

---
 src/views/Reward/components/BatchRegisterDialog.vue |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/views/Reward/components/BatchRegisterDialog.vue b/src/views/Reward/components/BatchRegisterDialog.vue
index 9d1e70a..872ed88 100644
--- a/src/views/Reward/components/BatchRegisterDialog.vue
+++ b/src/views/Reward/components/BatchRegisterDialog.vue
@@ -22,7 +22,12 @@
           />
         </div>
       </ProFormItemV2>
-      <ProFormItemV2 label="鐧昏绫诲瀷:" prop="incomeType" required>
+      <ProFormItemV2
+        label="鐧昏绫诲瀷:"
+        prop="incomeType"
+        required
+        :check-rules="[{ message: '璇烽�夋嫨鐧昏绫诲瀷' }]"
+      >
         <ProFormRadio
           v-model="form.incomeType"
           :value-enum="incomeTypeEnum"
@@ -102,6 +107,7 @@
   incomeType: IncomeTypeEnum;
   parkBountyApplyId: string;
   showSuportPlatRecharge: boolean;
+  showSuportFiscalRecharge: boolean;
 
   fileUrl: UploadUserFile[];
 };
@@ -110,7 +116,7 @@
 
 const incomeTypeEnum = computed(() => {
   return [
-    {
+    form.value.showSuportFiscalRecharge && {
       label: IncomeTypeEnumText[IncomeTypeEnum.Fiscal],
       value: IncomeTypeEnum.Fiscal,
     },
@@ -131,7 +137,7 @@
 
 async function getParkBountyApplyBatchTransferEnterprise() {
   try {
-    let res = await parkBountyApplyServices.getParkBountyApplyBatchTransferEnterprise({
+    let res = await parkBountyApplyServices.getParkBountyApplyBatchTransferRegEnterprise({
       parkBountyApplyId: form.value.parkBountyApplyId,
     });
     if (res) {
@@ -144,7 +150,7 @@
 
 async function getParkBountyApplyBatchFinanceEnterprise() {
   try {
-    let res = await parkBountyApplyServices.getParkBountyApplyBatchFinanceEnterprise({
+    let res = await parkBountyApplyServices.getParkBountyApplyBatchFinanceRegEnterprise({
       parkBountyApplyId: form.value.parkBountyApplyId,
     });
     if (res) {

--
Gitblit v1.9.1