zhengyiming
9 天以前 55cbafd4971ea4ea8adcf60b199608cc49945b87
fix: s
2个文件已修改
8 ■■■■ 已修改文件
src/services/api/typings.d.ts 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/components/BatchRegisterDialog.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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;
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 = [];
  }
});