暂存代码
This commit is contained in:
@@ -62,4 +62,41 @@ export function checkAppVersion(data) {
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 查询分享海报
|
||||
* @param {Object} data
|
||||
*/
|
||||
export function getSharePoster(data) {
|
||||
return request({
|
||||
url: "/common/getSharePoster",
|
||||
method: "get",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 生成分享海报
|
||||
* @param {Object} data
|
||||
*/
|
||||
export function generateSharePoster(data) {
|
||||
return request({
|
||||
url: "/common/generateSharePoster",
|
||||
method: "get",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询APP轮播图
|
||||
* @param {Object} data
|
||||
*/
|
||||
export function getCarouselImage(data) {
|
||||
return request({
|
||||
url: "/common/getCarouselImage",
|
||||
method: "get",
|
||||
data,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user