👍 增加地图 增加拼多多
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
export function getFishIndex(param) {
|
||||
return request.post("/fish/index", param, {
|
||||
login: false
|
||||
});
|
||||
}
|
||||
|
||||
export function getFishPlaceInfo(id) {
|
||||
return request.get("/fish/info?id="+id,null,{
|
||||
login: false
|
||||
})
|
||||
}
|
||||
+22
-6
@@ -18,6 +18,22 @@ export function getProductDetail(id, data) {
|
||||
});
|
||||
}
|
||||
|
||||
export function pddLink(goodSign) {
|
||||
return request.get("/product/pddLink", {
|
||||
"goodSign": goodSign
|
||||
}, {
|
||||
login: true
|
||||
});
|
||||
}
|
||||
|
||||
export function pddDetail(goodSign) {
|
||||
return request.get("product/pddDetail", {
|
||||
"goodSign": goodSign
|
||||
}, {
|
||||
login: true
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
* 商品分销二维码
|
||||
* */
|
||||
@@ -64,11 +80,11 @@ export function toCollect(id, category) {
|
||||
export function getHostProducts(page, limit) {
|
||||
return request.get(
|
||||
"/product/hot", {
|
||||
page: page,
|
||||
limit: limit
|
||||
}, {
|
||||
login: false
|
||||
}
|
||||
page: page,
|
||||
limit: limit
|
||||
}, {
|
||||
login: false
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
@@ -180,4 +196,4 @@ export function storeListApi(data) {
|
||||
return request.get("store_list", data, {
|
||||
login: false
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user