人口基本信息-房屋中同住人的新增与修改

人口基本信息-人口选择页面的去脱敏Bug修改
人口基本信息-人口选择页面增加新增人员功能
This commit is contained in:
java_cuibaocheng@163.com 2023-11-16 16:59:45 +08:00
parent f57fbc4d55
commit 0facb02fcf
2 changed files with 16 additions and 1 deletions

View File

@ -4,7 +4,7 @@
### 人口 ### 人口
- - 增加人员归属功能 2023年11月16日
### 房屋 ### 房屋

View File

@ -46,6 +46,9 @@
<button type="button" class="layui-btn layui-btn-sm" lay-event="saveEvent"> <button type="button" class="layui-btn layui-btn-sm" lay-event="saveEvent">
<i class="fa fa-lg fa-check"></i> 认领选择的人员 <i class="fa fa-lg fa-check"></i> 认领选择的人员
</button> </button>
<button type="button" id="help" class="layui-btn layui-btn-sm" style="background-color: #FFFFFF;color: #CD5C5C">
<i class="fa fa-lg fa-star"></i> 认领该人员后,后续归属及维护将由您来负责。
</button>
</div> </div>
</script> </script>
</div> </div>
@ -80,6 +83,16 @@
var resizeTimeout = null; var resizeTimeout = null;
var tableUrl = 'api/populationinfo/listpage'; 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() { function initIdcardTypeSelect() {
top.restAjax.get(top.restAjax.path('api/datadictionary/listdictionarybyparentid/76c5044f-805a-4313-b1e8-79e966b97c0d', []), {}, null, function(code, data, args) { top.restAjax.get(top.restAjax.path('api/datadictionary/listdictionarybyparentid/76c5044f-805a-4313-b1e8-79e966b97c0d', []), {}, null, function(code, data, args) {
@ -238,6 +251,8 @@
} }
} }
}); });
}); });
</script> </script>
</body> </body>