index.js 554 Bytes
Newer Older
潘际乾 committed
1 2 3 4
import Api from "~/service/Api"

export function all(data) {
    return Api.post("/report/task/all", data)
wangren committed
5 6 7 8 9 10 11 12
}

export function my(data)  {
    return Api.post("/report/task/my",data)
}

export function ins(data) {
    return Api.post("/report/task/ins", data)
13 14 15 16 17 18 19 20 21 22 23 24 25
}
export function busvolume(data) {
    return Api.post("/report/customer/businessVolume", data)
}
export function finamount(data) {
    return Api.post("/report/customer/financedAmount", data)
}

export function expincome(data) {
    return Api.post("/report/customer/expenseIncome", data)
}