From e1c4c857b03e28e224ce6dbb94d957b4d6fddcc3 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期一, 11 三月 2024 16:53:38 +0800 Subject: [PATCH] 修改bug --- cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupGameStatisticsListInfo.js | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupGameStatisticsListInfo.js b/cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupGameStatisticsListInfo.js index eec2c24..812cae9 100644 --- a/cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupGameStatisticsListInfo.js +++ b/cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupGameStatisticsListInfo.js @@ -111,7 +111,8 @@ WorldCupGameStatisticsListInfo.search = function () { var queryData = {}; - queryData['id'] = $("#id").val(); + queryData['participantId'] = $("#participantId").val(); + queryData['participantType'] = $("#participantType").val(); queryData['name'] = $("#name").val(); WorldCupGameStatisticsListInfo.table.refresh({query: queryData}); }; @@ -126,7 +127,8 @@ var table = new BSTable(WorldCupGameStatisticsListInfo.id, "/worldCupRecords/worldCupGameStatisticsListInfo", defaultColunms); table.setPaginationType("server"); table.setQueryParams({ - 'id': $('#id').val() + 'participantId': $('#participantId').val(), + 'participantType': $('#participantType').val() }) WorldCupGameStatisticsListInfo.table = table.init(); -- Gitblit v1.7.1