增加帮助中心,删除测试文件代码

This commit is contained in:
2026-03-13 16:36:04 +08:00
parent 614fd15b81
commit 4431f29dff
13 changed files with 223 additions and 4201 deletions

12
http/api/system/help.js Normal file
View File

@@ -0,0 +1,12 @@
import http from "@/http/http.js";
const request = http.request;
const urlType = "system";
export function getHelp(data) {
return request({
url: urlType + '/user/getHelp',
method: "GET",
data: {
...data,
},
});
}