初始化端午项目

This commit is contained in:
梁泽军
2025-05-20 18:28:02 +08:00
parent d239b3f8fb
commit 749a61f00b
95 changed files with 1399 additions and 1387 deletions

View File

@@ -2,7 +2,7 @@ import http from './http'
// 获取code
export function authorize(data, authorization) {
return http.post("/h5/oauth/authorize",
return http.post("/h5/Oauth/authorize",
data,
true,
);
@@ -10,7 +10,7 @@ export function authorize(data, authorization) {
// 获取用户信息
export function getUserInfo(data, authorization) {
return http.post("/h5/oauth/getUserInfo",
return http.post("/h5/Oauth/getUserInfo",
data,
true,
);
@@ -54,7 +54,7 @@ export function exchangePrize(data, authorization) {
// 分享接口
export function getShareConfig(data, authorization) {
return http.post("/h5/oauth/getShareConfig",
return http.post("/h5/Oauth/getShareConfig",
data,
true,
);