smh.js 337 Bytes
Newer Older
潘际乾 committed
1 2 3
import Api from "~/service/Api"

export function queryByPage(data) {
xionglin committed
4
    return Api.post("/service/smh/queryByPage", data)
潘际乾 committed
5 6 7
}

export function queryOwnrefDetail(ownref) {
xionglin committed
8
    return Api.post(`/service/smh/queryOwnrefDetail?ownref=${ownref}`)
潘际乾 committed
9
}
xionglin committed
10 11 12 13 14

export function queryById(inr) {
    return Api.post(`/service/smh/queryById?inr=${inr}`)
}