fix(dashboard): 区域转移概率表头改为"特码/区域",更直观表达行列含义

This commit is contained in:
2026-04-25 23:10:56 +08:00
parent ae6dcc228b
commit 26d20dbd7c
+1 -1
View File
@@ -92,7 +92,7 @@ define(['jquery'], function ($) {
// 区域转移概率
if (zt && zt.matrix && zt.matrix.length > 0) {
html += '<div class="dash-section"><h4>🔄 区域转移概率</h4><div style="font-size:12px;color:#999;margin-bottom:8px;">当前共 ' + zt.total_transitions + ' 次区域转移 | 行=上一期特码所在区域,列=下一期特码所在区域</div>';
html += '<table class="table table-bordered table-condensed text-center" style="max-width:600px;margin:0 auto;"><thead><tr><th>区域</th>';
html += '<table class="table table-bordered table-condensed text-center" style="max-width:600px;margin:0 auto;"><thead><tr><th>特码/区域</th>';
for (var z = 0; z < zt.zones.length; z++) {
html += '<th>' + zt.zones[z] + '</th>';
}