From 5b0401fea3c339aa45feb0d165f36b1b7a76fdaf Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 20 十一月 2025 16:49:01 +0800
Subject: [PATCH] feat: 页面

---
 src/views/EnterpriseInfo/EnterpriseInfo.vue |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diff --git a/src/views/EnterpriseInfo/EnterpriseInfo.vue b/src/views/EnterpriseInfo/EnterpriseInfo.vue
index 46bd33c..8de223a 100644
--- a/src/views/EnterpriseInfo/EnterpriseInfo.vue
+++ b/src/views/EnterpriseInfo/EnterpriseInfo.vue
@@ -3,6 +3,17 @@
     <AppContainer>
       <ProTableQueryFilterBar @on-reset="reset">
         <template #query>
+          <QueryFilterItem>
+            <FieldSelect
+              v-model="extraParamState.industrialParkId"
+              placeholder="璇烽�夋嫨鍥尯"
+              :value-enum="fourStreamsIndustrialParkList"
+              enumLabelKey="parkName"
+              enum-value-key="id"
+              clearable
+              @change="getList()"
+            />
+          </QueryFilterItem>
           <QueryFilterItem tip-content="鏈�杩戠敵鎶ユ棩鏈�">
             <FieldDatePicker
               v-model="extraParamState.lastApplyTime"
@@ -65,6 +76,7 @@
   SearchInput,
   QueryFilterItem,
   FieldDatePicker,
+  FieldSelect,
 } from '@bole-core/components';
 import { OrderInputType } from '@bole-core/core';
 import { format } from '@/utils';
@@ -72,7 +84,7 @@
 import _ from 'lodash';
 import { ModelValueType } from 'element-plus';
 import { EnterpriseTypeText } from '@/constants';
-import { useAccess } from '@/hooks';
+import { useAccess, useIndustrialParkDropDownList } from '@/hooks';
 
 defineOptions({
   name: 'EnterpriseInfo',
@@ -92,6 +104,8 @@
 };
 
 const state = reactive({ ...BaseState });
+
+const { fourStreamsIndustrialParkList } = useIndustrialParkDropDownList();
 
 onMounted(async () => {
   await getList();
@@ -123,6 +137,7 @@
           'YYYY-MM-DD 00:00:00'
         ),
         lastSettleEndTime: format(extraParamState.lastSettleTime?.[1] ?? '', 'YYYY-MM-DD 23:59:59'),
+        industrialParkId: extraParamState.industrialParkId,
       };
       let res = await parkBountyApplyServices.getParkCustomerManagePage(params, {
         showLoading: !state.loading,
@@ -137,6 +152,7 @@
       lastPayTime: [] as unknown as ModelValueType,
       lastSettleTime: [] as unknown as ModelValueType,
       orderInput: [{ property: 'id', order: OrderInputType.Desc }],
+      industrialParkId: '',
     },
     columnsRenderProps: {
       lastApplyTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' },

--
Gitblit v1.9.1