index.js 199 Bytes
Newer Older
liu committed
1 2 3 4
import Api from "~/service/Api"

export function my(data) {
    return Api.post("/notice/task/my", data)
zhoutian committed
5 6 7 8
}

export function noticeQuery(data) {
    return Api.post("/notice/task/noticeQuery", data)
liu committed
9
}