From 0facb02fcf534a7d5d75c92574fec9bffad73240 Mon Sep 17 00:00:00 2001 From: "java_cuibaocheng@163.com" Date: Thu, 16 Nov 2023 16:59:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=BA=E5=8F=A3=E5=9F=BA=E6=9C=AC=E4=BF=A1?= =?UTF-8?q?=E6=81=AF-=E6=88=BF=E5=B1=8B=E4=B8=AD=E5=90=8C=E4=BD=8F?= =?UTF-8?q?=E4=BA=BA=E7=9A=84=E6=96=B0=E5=A2=9E=E4=B8=8E=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=20=E4=BA=BA=E5=8F=A3=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF-?= =?UTF-8?q?=E4=BA=BA=E5=8F=A3=E9=80=89=E6=8B=A9=E9=A1=B5=E9=9D=A2=E7=9A=84?= =?UTF-8?q?=E5=8E=BB=E8=84=B1=E6=95=8FBug=E4=BF=AE=E6=94=B9=20=E4=BA=BA?= =?UTF-8?q?=E5=8F=A3=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF-=E4=BA=BA?= =?UTF-8?q?=E5=8F=A3=E9=80=89=E6=8B=A9=E9=A1=B5=E9=9D=A2=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BA=BA=E5=91=98=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 2 +- .../resources/templates/populationinfo/bind.html | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index a1c5cfd..7b197db 100644 --- a/readme.md +++ b/readme.md @@ -4,7 +4,7 @@ ### 人口 -- +- 增加人员归属功能 2023年11月16日 ### 房屋 diff --git a/src/main/resources/templates/populationinfo/bind.html b/src/main/resources/templates/populationinfo/bind.html index 00369b6..39a1476 100644 --- a/src/main/resources/templates/populationinfo/bind.html +++ b/src/main/resources/templates/populationinfo/bind.html @@ -46,6 +46,9 @@ + @@ -80,6 +83,16 @@ var resizeTimeout = null; var tableUrl = 'api/populationinfo/listpage'; + var opacity = 1; + setInterval(function() { + $("#help").css({opacity:opacity}); + if (opacity == 1) { + opacity = 0.5; + }else { + opacity = 1; + } + }, 500); + // 初始化证件类型下拉选择 function initIdcardTypeSelect() { top.restAjax.get(top.restAjax.path('api/datadictionary/listdictionarybyparentid/76c5044f-805a-4313-b1e8-79e966b97c0d', []), {}, null, function(code, data, args) { @@ -238,6 +251,8 @@ } } }); + + });