Huanyuyuehui/api/shop.js

14 lines
245 B
JavaScript
Raw Normal View History

2024-03-25 16:25:29 +08:00
import request from "@/utils/request.js";
/**
* 公共接口 获取商家列表定位信息
*
*/
/**
* 获取主页数据 无需授权
*
*/
export function getIndexData()
{
return request.get("common/home",{},{ noAuth : true});
}