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 @@ } } }); + + });