|
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
|
|
} |