人口基本信息-房屋中同住人的新增与修改
人口基本信息-人口选择页面的去脱敏Bug修改 人口基本信息-人口选择页面增加新增人员功能
This commit is contained in:
parent
f57fbc4d55
commit
0facb02fcf
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user