From 1b0bbe7fbe3d62779356f0729f086ceb3901e17b Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 09 四月 2025 16:39:18 +0800 Subject: [PATCH] feat: 接口 --- src/components/commonView/DeclareEnterpriseTableView.vue | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/commonView/DeclareEnterpriseTableView.vue b/src/components/commonView/DeclareEnterpriseTableView.vue index 3347562..d067305 100644 --- a/src/components/commonView/DeclareEnterpriseTableView.vue +++ b/src/components/commonView/DeclareEnterpriseTableView.vue @@ -3,7 +3,7 @@ <template #query> <QueryFilterItem> <SearchInput - v-model="extraParamState.title" + v-model="extraParamState.searchKeyWord" style="width: 250px" placeholder="浼佷笟鍚�/淇$敤浠g爜" @on-click-search="getList" @@ -39,7 +39,7 @@ import MateriaDetailDialog from './MateriaDetailDialog.vue'; import { FourStreamsMaterialFileTableItem } from './types'; import { OrderInputType } from '@bole-core/core'; -import * as informationServices from '@/services/api/Information'; +import * as parkBountyApplyServices from '@/services/api/ParkBountyApply'; defineOptions({ name: 'DeclareEnterpriseTableView', @@ -108,22 +108,22 @@ } = useTable( async ({ pageIndex, pageSize }, extraParamState) => { try { - let params: API.GetInformationForManageInput = { + let params: API.GetParkBountyApplyInfoInput = { pageModel: { rows: pageSize, page: pageIndex, orderInput: extraParamState.orderInput, }, - title: extraParamState.title, + searchKeyWord: extraParamState.searchKeyWord, }; - let res = await informationServices.getInformationForManage(params); + let res = await parkBountyApplyServices.getParkBountyApplyDetailList(params); return res; } catch (error) {} }, { defaultExtraParams: { orderInput: [{ property: 'creationTime', order: OrderInputType.Desc }], - title: '', + searchKeyWord: '', }, } ); @@ -134,7 +134,7 @@ }, }); -function openDialog(row?: API.IncentivePaymentsManageListOutput) { +function openDialog(row?: API.ParkBountyApplyDetailInfo) { handleEdit({ list: [], }); -- Gitblit v1.9.1