wfe.js 301 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import Api from "~/service/Api"

export function queryByTrnId(data) {
    return Api.post("/manager/wfe/queryByTrnId", data)
}

export function editVo(data) {
    return Api.post("/manager/wfe/editVo", data)
}

export function queryByInr(data) {
    return Api.post("/manager/wfe/queryByInr", data)
}