锶源昆仑商城

This commit is contained in:
2023-07-22 19:01:37 +08:00
commit 4ba3377084
223 changed files with 10557 additions and 0 deletions

35
api/index.js Normal file
View File

@@ -0,0 +1,35 @@
/*
* 手太欠
* 愿这世界都如故事里一样 美好而动人~
*/
// 授权登录
import auth from "./interfaces/auth"
// 图片上传
import file from "./interfaces/file"
// 首页
import index from "./interfaces/index"
// 商城
import mall from "./interfaces/mall"
// 会员
import member from "./interfaces/member"
// 库存
import stock from "./interfaces/stock"
// 我的
import user from "./interfaces/user"
export default {
auth,
file,
index,
mall,
member,
stock,
user
}