Files
cmgd-mini-app/api/index.ts
2026-01-10 20:23:59 +08:00

19 lines
240 B
TypeScript

import { request } from "./request";
// export function fetchNavList () {
// return request({
// url:'/index/nav_list'
// })
// }
// 获取店铺配置
export function fetchGoods () {
return request({
url:'/index/goods',
})
}