btb.js 673 Bytes
Newer Older
liaoxing committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
import Api from "~/service/Api"

export function queryByPage(data) {
    return Api.post("/service/btb/queryByPage", data)
}

export function queryByPage_Agent(data) {
    return Api.post("/service/btb/queryByPage_Agent",data)
}

export function queryByPageByInr(data) {
    return Api.post("/service/btb/queryByPageByInr",data)
}

export function queryDetailById(data) {
    return Api.post(`/service/btb/queryById`,data)
}

export function add(data) {
    return Api.post("/service/btb/add", data)
}

export function edit(data) {
    return Api.post("/service/btb/edit", data)
}

export function deleteById(data) {
    return Api.post(`/service/btb/deleteById`,data)
}