|
|
|
@ -56,7 +56,7 @@
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script type="text/html" id="fill-progress">
|
|
|
|
|
<span style="cursor: pointer;" onclick='fill_progress("{{= d.target_type_id }}","{{= d.job_id }}","{{= d.child_count }}","{{= d.child_reply_count }}","{{= d.job_type }}")'>{{= d.child_reply_count }} / {{= d.child_count }}</span>
|
|
|
|
|
<span style="cursor: pointer;" onclick='fill_progress("{{= d.status_code }}","{{= d.self_or_next }}","{{= d.job_id }}","{{= d.child_count }}","{{= d.child_reply_count }}","{{= d.job_type }}")'>{{= d.child_reply_count }} / {{= d.child_count }}</span>
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script type="text/html" id="status-Templet">
|
|
|
|
@ -204,9 +204,8 @@
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.fill_progress = function (target_type_id, job_id, total_count, finish_count, job_type) {
|
|
|
|
|
if (target_type_id == 1) {
|
|
|
|
|
|
|
|
|
|
window.fill_progress = function (status_code, self_or_next, job_id, total_count, finish_count, job_type) {
|
|
|
|
|
if (status_code[2] == "3") {
|
|
|
|
|
layer.open({
|
|
|
|
|
type: 2,
|
|
|
|
|
title: '填报进度( <span style="color: #16BAAA;font-weight: bolder;">已填报 ' + finish_count + '</span> / 应填报 ' + total_count + ' )',
|
|
|
|
@ -215,7 +214,7 @@
|
|
|
|
|
maxmin: false,
|
|
|
|
|
move: false,
|
|
|
|
|
area: ['100%', '100%'],
|
|
|
|
|
content: "./task_view.html?job_id=" + job_id + "&job_type=" + job_type
|
|
|
|
|
content: "./task_view_p.html?job_id=" + job_id + "&job_type=" + job_type + "&self_or_next=1"
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
layer.open({
|
|
|
|
@ -226,7 +225,7 @@
|
|
|
|
|
maxmin: false,
|
|
|
|
|
move: false,
|
|
|
|
|
area: ['100%', '100%'],
|
|
|
|
|
content: "./task_view_p.html?job_id=" + job_id + "&job_type=" + job_type + "&self_or_next=1"
|
|
|
|
|
content: "./task_view.html?job_id=" + job_id + "&job_type=" + job_type
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|