project/api/home.js

17 lines
299 B
JavaScript

import {
get,
post,
} from '../utils/request.js';
//黄历接口
function getHuangLi(data) {
return get("/hl/getHuangLi", data)
}
//日运接口
function getOpenDayYuChengOpen(data) {
return get("/hl/getOpenDayYuChengOpen", data)
}
module.exports = {
getHuangLi,
getOpenDayYuChengOpen
}