Init project

This commit is contained in:
lifizer
2023-09-20 21:49:33 +08:00
parent 85a5989c96
commit c9ceac9f37
710 changed files with 125705 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import request from "@/utils/request";
// 文玩店铺列表
export function fetchStore(page, cityName, name) {
return request.get("/api/hotelMain/wenwanList", {
limit: 10,
page,
cityName,
name
}, {login: true})
}
/**
* 获取商品城市列表
* @param type 类型:0、特产;1、文玩;2、七彩云上;3、定制礼品;4、康养食材;5、千县名品;6、景点门票
* */
export function fetchCity(type) {
return request.get(`/wenwan/cityList/${type}`, {}, {
login: true
})
}