btb.js 673 Bytes
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)
}