feat: initial commit

This commit is contained in:
root
2026-06-14 14:00:24 +08:00
commit 72d388f642
118 changed files with 39015 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
/**
* 二次风控页(原 page_666.php,依赖调用方 $logs 等变量)
*/
class RiskPageRenderer
{
/**
* @param array $ctx 需含 v_info、log_idwrite_log_db 返回值);可选 logs
*/
public static function render(array $ctx = [])
{
extract($ctx, EXTR_SKIP);
require dirname(__DIR__, 3) . '/page_666.php';
}
}