From a12b0be844b87f9a11573f4807a256307a9c4bb1 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期二, 12 三月 2024 18:24:50 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0 --- cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupRecords.js | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupRecords.js b/cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupRecords.js index 2ec1f9e..f2b5ab1 100644 --- a/cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupRecords.js +++ b/cloud-server-management/src/main/webapp/static/modular/system/worldCupRecords/worldCupRecords.js @@ -59,7 +59,7 @@ WorldCupRecords.exportUserStatistics = function (){ let phone = $("#phone").val(); - let name =$("#name").val(); + let name =$("#userName").val(); let idcard =$("#idcard").val(); window.location.href = Feng.ctxPath + '/worldCupRecords/exportUserStatistics?phone=' + phone + "&name=" + name + "&idcard=" + idcard } @@ -100,14 +100,15 @@ WorldCupRecords.search3 = function () { var queryData = {}; queryData['phone'] = $("#phone").val(); - queryData['name'] =$("#name").val(); + queryData['name'] =$("#userName").val(); queryData['idcard'] =$("#idcard").val(); WorldCupRecords.table3.refresh({query: queryData}); }; WorldCupRecords.resetSearch3 = function () { - $("#province").val(""); - $("#city").val(""); + $("#phone").val(""); + $("#userName").val(""); + $("#idcard").val(""); WorldCupRecords.search3(); }; -- Gitblit v1.7.1