refactor(web):改造成vue工程

This commit is contained in:
kubbo
2025-09-30 17:43:06 +08:00
parent f140c92ddd
commit 39f7598b02
1777 changed files with 878 additions and 2238 deletions

9
public/static/index.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
header("Access-Control-Allow-Origin: *");
header('Content-type: application/json');
$json = array(
"code"=>0,
"msg"=>"succ"
);
exit(json_encode($json,JSON_UNESCAPED_UNICODE));
?>