涉黄、赌、打架斗殴警情研判日报 ({{ report_date }})
一、当日警情概况
(一)总体情况
全市共接报涉黄、赌、打架斗殴类警情 {{ total_count }} 起。其中:{{ type_summary_str }}
(二)分类警情统计表
{{ srr_table_start_date }}至{{ srr_table_end_date }}打架斗殴警情统计
| 序号 |
单位 |
本期数 |
同比值 |
同比 |
环比值 |
环比 |
{% if srr_rows_by_cat.fight|length == 0 %}
| 无数据 |
{% else %}
{% for row in srr_rows_by_cat.fight %}
{% set is_total = (row.name == '合计') %}
| {{ loop.index }} |
{{ row.name or '' }} |
{{ row.presentCycle or 0 }} |
{{ row.upperY2yCycle or 0 }} |
{{ row.y2yProportion or '持平' }} |
{{ row.upperM2mCycle or 0 }} |
{{ row.m2mProportion or '持平' }} |
{% endfor %}
{% endif %}
{{ srr_table_start_date }}至{{ srr_table_end_date }}涉黄警情统计
| 序号 |
单位 |
本期数 |
同比值 |
同比 |
环比值 |
环比 |
{% if srr_rows_by_cat.yellow|length == 0 %}
| 无数据 |
{% else %}
{% for row in srr_rows_by_cat.yellow %}
{% set is_total = (row.name == '合计') %}
| {{ loop.index }} |
{{ row.name or '' }} |
{{ row.presentCycle or 0 }} |
{{ row.upperY2yCycle or 0 }} |
{{ row.y2yProportion or '持平' }} |
{{ row.upperM2mCycle or 0 }} |
{{ row.m2mProportion or '持平' }} |
{% endfor %}
{% endif %}
{{ srr_table_start_date }}至{{ srr_table_end_date }}赌博警情统计
| 序号 |
单位 |
本期数 |
同比值 |
同比 |
环比值 |
环比 |
{% if srr_rows_by_cat.gamble|length == 0 %}
| 无数据 |
{% else %}
{% for row in srr_rows_by_cat.gamble %}
{% set is_total = (row.name == '合计') %}
| {{ loop.index }} |
{{ row.name or '' }} |
{{ row.presentCycle or 0 }} |
{{ row.upperY2yCycle or 0 }} |
{{ row.y2yProportion or '持平' }} |
{{ row.upperM2mCycle or 0 }} |
{{ row.m2mProportion or '持平' }} |
{% endfor %}
{% endif %}
(三)打架斗殴类警情
{% if fight_list|length == 0 %}
无相关警情。
{% else %}
{% for region in fight_list %}
{{ region.cmdname }}
{% for station in region.stations %}
{{ station.name }}({{ station.count }})起:{{ station.summary_text }}
{% endfor %}
{% endfor %}
{% endif %}
(四)赌博类警情
{% if gamble_list|length == 0 %}
无相关警情。
{% else %}
{% for region in gamble_list %}
{{ region.cmdname }}
{% for station in region.stations %}
{{ station.name }}({{ station.count }})起:
{% for case in station.cases %}
{{ loop.index }}. {{ case }}
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
(五)涉黄类警情
{% if sex_list|length == 0 %}
无相关警情。
{% else %}
{% for region in sex_list %}
{{ region.cmdname }}
{% for station in region.stations %}
{{ station.name }}({{ station.count }})起:{{ station.summary_text }}
{% endfor %}
{% endfor %}
{% endif %}
二、重复报警电话({{ repeat_min_count }}次及以上)
(一)打架斗殴
{% if repeat_fight|length == 0 %}
无重复报警电话。
{% else %}
{% for it in repeat_fight %}
{{ it.phone }}({{ it.count }}次):
{{ it.html }}
{% endfor %}
{% endif %}
(二)赌博
{% if repeat_gamble|length == 0 %}
无重复报警电话。
{% else %}
{% for it in repeat_gamble %}
{{ it.phone }}({{ it.count }}次):
{{ it.html }}
{% endfor %}
{% endif %}
(三)涉黄
{% if repeat_yellow|length == 0 %}
无重复报警电话。
{% else %}
{% for it in repeat_yellow %}
{{ it.phone }}({{ it.count }}次):
{{ it.html }}
{% endfor %}
{% endif %}
三、多次报警地址(近3个月半径50米)
(一)打架斗殴
{% if multi_addr_fight|length == 0 %}
无多次报警地址。
{% else %}
{% for it in multi_addr_fight %}
{{ it.occurAddress }}({{ it.count }}次):{{ it.examples|join(';') }}
{% endfor %}
{% endif %}
(二)赌博
{% if multi_addr_gamble|length == 0 %}
无多次报警地址。
{% else %}
{% for it in multi_addr_gamble %}
{{ it.occurAddress }}({{ it.count }}次):{{ it.examples|join(';') }}
{% endfor %}
{% endif %}
(三)涉黄
{% if multi_addr_yellow|length == 0 %}
无多次报警地址。
{% else %}
{% for it in multi_addr_yellow %}
{{ it.occurAddress }}({{ it.count }}次):{{ it.examples|join(';') }}
{% endfor %}
{% endif %}
四、重点问题
{{ llm_analysis_problems }}
五、下一步措施
{{ llm_analysis_measures }}