新增帮助中心

This commit is contained in:
gyq
2026-03-13 16:30:56 +08:00
parent d30407b26f
commit 13890e3f8d
3 changed files with 237 additions and 4 deletions

15
src/api/system/index.js Normal file
View File

@@ -0,0 +1,15 @@
import request from "@/utils/request";
import {
Account_BaseUrl,
Product_BaseUrl,
Market_BaseUrl,
System_BaseUrl
} from "@/api/config";
// 帮助中心
export function getHelp() {
return request({
url: `${System_BaseUrl + "/user/getHelp"}`,
method: 'get'
});
}