47 lines
792 B
JavaScript
47 lines
792 B
JavaScript
/*
|
|
* 手太欠
|
|
* 愿这世界都如故事里一样 美好而动人~
|
|
*/
|
|
|
|
// 授权登录
|
|
import auth from "./interfaces/auth"
|
|
|
|
// 图片上传
|
|
import file from "./interfaces/file"
|
|
|
|
// 皮肤健康知识
|
|
import health from "./interfaces/health"
|
|
|
|
// 首页
|
|
import index from "./interfaces/index"
|
|
|
|
// 产品
|
|
import mall from "./interfaces/mall"
|
|
|
|
// 订单
|
|
import order from "./interfaces/order"
|
|
|
|
// 体验官
|
|
import recruit from "./interfaces/recruit"
|
|
|
|
// 地址管理
|
|
import site from "./interfaces/site"
|
|
|
|
// 个人中心
|
|
import user from "./interfaces/user"
|
|
|
|
// 发现
|
|
import found from "./interfaces/found"
|
|
|
|
export default {
|
|
auth,
|
|
file,
|
|
health,
|
|
index,
|
|
mall,
|
|
order,
|
|
recruit,
|
|
site,
|
|
user,
|
|
found
|
|
} |