快速查看网上申请营业执照进度
.
.
.header
.status-
.status-table
.status-table tr:nth-child(1) {
font-weight: bold;
padding: 10px;
}
.status-table tr:nth-child(3) {
font-weight: bold;
padding: 10px;
}
.status-table tr:nth-child(4) {
font-weight: bold;
padding: 10px;
}
.status-table tr:nth-child(5) {
font-weight: bold;
padding: 10px;
}
.status-table tr:nth-child(6) {
font-weight: bold;
padding: 10px;
}
.status-table tr:nth-child(7) {
font-weight: bold;
padding: 10px;
}
.status-table tr:nth-child(8) {
font-weight: bold;
padding: 10px;
}
.status-table tr:nth-child(9) {
font-weight: bold;
padding: 10px;
}
.status-table tr:nth-child(10) {
font-weight: bold;
padding: 10px;
}
快速查看网上申请营业执照进度
申请编号
申请人名称
审批部门
审批结果
审批时间
状态
操作
{% for application in applications %}
{{ application.id }}
{{ application.name }}
{{ application.department }}
{% if application.status == \’通过\’ %}
通过
{% else %}
未通过
{% endif %}
{{ application.apply_time }}
{{ application.status }}
{% if application.status == \’通过\’ %}
通过
{% else %}
未通过
{% endif %}
{% endfor %}
function submitApplicationStatus(id, status) {
let url = https://example.com/api/check_status/${id};
fetch(url)
.then(response => response.json())
.then(data => {
if (data.status === status) {
alert(${status}成功);
} else {
alert(${status}失败);
}
})
.catch(error => {
console.error(error);
});
}