fix: add result_appeal badge CSS and export label

This commit is contained in:
2026-07-12 17:34:58 +08:00
parent 7bd23b6bcf
commit 93382773e6
2 changed files with 2 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ const { authenticate, requireRole } = require('../middleware/auth');
const router = express.Router();
const SL = { pending:'待处理', processing:'处理中', awaiting_info:'待补充', resolved:'已解决', rejected:'已驳回', closed:'已关闭' };
const TL = { report:'举报', suggestion:'建议', appeal:'申诉' };
const TL = { report:'举报', suggestion:'建议', appeal:'申诉', result_appeal:'结果申诉' };
function toCSV(headers, rows, filename) {
let csv = '\uFEFF' + headers.join(',') + '\r\n';

View File

@@ -190,6 +190,7 @@ tbody tr:last-child td{border-bottom:none}
.bg-report{background:#fce7f3;color:#9d174d}
.bg-suggestion{background:#dbeafe;color:#1e40af}
.bg-appeal{background:#fef3c7;color:#92400e}
.bg-result_appeal{background:#fce7f3;color:#9d174d}
.bg-low{background:#e0f2fe;color:#0369a1}
.bg-medium{background:#fef9c3;color:#854d0e}
.bg-high{background:#fee2e2;color:#991b1b}