feat:更新启动脚本 防止误杀进程

This commit is contained in:
2024-05-25 15:25:08 +08:00
parent 398f729991
commit eff85c91db
2 changed files with 112 additions and 79 deletions

View File

@@ -13,39 +13,39 @@
</head>
<body>
<h1>诈骗信息</h1>
<table>
<thead>
<tr>
<th>UUID</th>
<th>受害人号码</th>
<th>诈骗方式</th>
<th>诈骗类型</th>
<th>预警时间</th>
<th>预警等级</th>
<th>APP/URL名称</th>
<th>诈骗电话</th>
<th>通话时长</th>
<th>诈骗人账号</th>
<th>转账金额</th>
<th>机构授权码</th>
<th>学号</th>
</tr>
</thead>
<tbody>
{% for item in data %}
<tr class="odd gradeX">
{% for v in item %}
{% if v == None %}
<td>-</td>
{% else %}
<td>{{v}}</td>
{% endif %}
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
<h1>诈骗信息</h1>
<table>
<thead>
<tr>
<th>UUID</th>
<th>受害人号码</th>
<th>诈骗方式</th>
<th>诈骗类型</th>
<th>预警时间</th>
<th>预警等级</th>
<th>APP/URL名称</th>
<th>诈骗电话</th>
<th>通话时长</th>
<th>诈骗人账号</th>
<th>转账金额</th>
<th>机构授权码</th>
<th>学号</th>
</tr>
</thead>
<tbody>
{% for item in data %}
<tr class="odd gradeX">
{% for v in item %}
{% if v == None %}
<td>-</td>
{% else %}
<td>{{v}}</td>
{% endif %}
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>