feat:自查自评检查导入实现

hangao
wangxy 3 days ago
parent cd4142ab1e
commit 09aaecec54

@ -318,12 +318,14 @@
$.table.init(options);
});
/**
* 导出明细
*/
function exportDetail(checkId) {
window.location.href = prefixTable + '/exportDetail?checkId=' + checkId;
$.modal.confirm("确定导出吗?", function() {
$.modal.loading("正在导出数据,请稍候...");
window.location.href = prefixTable + '/exportDetail?checkId=' + checkId;
setTimeout(function() {
$.modal.closeLoading();
}, 800);
});
}
</script>
</body>

@ -251,7 +251,13 @@
* 导出明细
*/
function exportDetail(checkId) {
window.location.href = prefix + '/exportDetail?checkId=' + checkId;
$.modal.confirm("确定导出吗?", function() {
$.modal.loading("正在导出数据,请稍候...");
window.location.href = prefix + '/exportDetail?checkId=' + checkId;
setTimeout(function() {
$.modal.closeLoading();
}, 800);
});
}
</script>

Loading…
Cancel
Save