1234567891011121314151617181920212223242526272829 |
- const request = uni.$u.http
- // 酒店列表
- export function drawRecord(data){
- return request.post(
- `v1/draw/drawRecord`,
- data
- )
- }
- // 酒店分类列表
- export function luckyDraw(data){
- return request.post(
- `v1/draw/luckyDraw`,
- data
- )
- }
- // 酒店详情
- export function drawInfo(data){
- return request.post(
- `v1/draw/drawInfo`,
- data
- )
- }
- export default {
- drawRecord,
- luckyDraw,
- drawInfo
- }
|