feat(rvw): deliver tenant portal v4 flow and config foundation

Implement RVW V4.0 tenant-aware backend/frontend flow with tenant routing, config APIs, and full portal UX updates. Sync system/RVW/deployment docs to capture verified upload-review-report workflow and next-step admin configuration work.

Made-with: Cursor
This commit is contained in:
2026-03-14 22:29:40 +08:00
parent ba464082cb
commit 16179e16ca
45 changed files with 4753 additions and 93 deletions

View File

@@ -0,0 +1,10 @@
-- 修复 jtim 测试用户密码Test@1234 的 bcrypt $2a$10$ hash
UPDATE platform_schema.users
SET password = '$2a$10$OzlvWo.N5FKeU9BgBVuZ1e1DPonG7bF/WVO6PVW5d5di.fK7oxUnW',
is_default_password = false
WHERE id = 'user-jtim-reviewer-001';
-- 验证
SELECT id, name, phone, LEFT(password, 7) AS hash_prefix, is_default_password
FROM platform_schema.users
WHERE id = 'user-jtim-reviewer-001';