mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 03:49:37 +08:00
19 lines
349 B
JavaScript
19 lines
349 B
JavaScript
import {
|
|
request
|
|
} from '../selfRequest';
|
|
|
|
// 轮播图
|
|
export function visitorCarouselRq() {
|
|
return request({
|
|
url: '/api/visitor/carousel',
|
|
method: "get",
|
|
});
|
|
}
|
|
|
|
// 根据园区查询轮播图
|
|
export function getParkRq(id) {
|
|
return request({
|
|
url: '/api/admin/park/get/' + id,
|
|
method: "get",
|
|
});
|
|
} |