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 | 41 +++++++++++++++++++++++------------------ 1 files changed, 23 insertions(+), 18 deletions(-) diff --git a/src/components/commonView/DeclareEnterpriseTableView.vue b/src/components/commonView/DeclareEnterpriseTableView.vue index d05884c..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', @@ -53,32 +53,37 @@ { id: '1', enCode: 'accDateTime', - name: '浜ゆ槗鏃堕棿', + name: '甯愬彿', }, { id: '2', - enCode: 'income', - name: '鏀跺叆', + enCode: 'enterpriseName', + name: '浼佷笟鍚嶇О', }, { id: '3', - enCode: 'outcome', - name: '鏀嚭', + enCode: 'societyCreditCode', + name: '淇$敤浠g爜', }, { id: '4', - enCode: 'acctBalance', - name: '璐︽埛浣欓', + enCode: 'contactPhone', + name: '鐢佃瘽', }, { id: '5', - enCode: 'counterpartyAcctNoAndName', - name: '瀵规柟璐﹀彿/鎴峰悕', + enCode: 'authType', + name: '浼佷笟绫诲瀷', }, { id: '6', - enCode: 'purpose', - name: '鐢ㄩ��', + enCode: 'licenseUrl', + name: '钀ヤ笟鎵х収', + }, + { + id: '7', + enCode: 'bankAccountInfo', + name: '鍩烘湰鎴蜂俊鎭�', }, ]); @@ -103,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: '', }, } ); @@ -129,7 +134,7 @@ }, }); -function openDialog(row?: API.IncentivePaymentsManageListOutput) { +function openDialog(row?: API.ParkBountyApplyDetailInfo) { handleEdit({ list: [], }); -- Gitblit v1.9.1