index.js 795 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import Api from "~/service/Api"

export function asset(data) {
    return Api.post("/elec/hall/asset", data)
}

export function assetpub(data) {
    return Api.post("/elec/hall/assetpub", data)
}

export function fund(data) {
    return Api.post("/elec/hall/fund", data)
}
export function assInfo(data) {
    return Api.post("/elec/hall/assInfo", data)
}
export function assPubInfo(data) {
    return Api.post("/elec/hall/assPubInfo", data)
}
zhoutian committed
20 21 22 23 24

export function fundInfo(data) {
    return Api.post("/elec/hall/fundInfo", data)
}

25 26 27 28
export function assQueryId(data) {
    return Api.post("/elec/hall/assQueryId",data)
}

zhoutian committed
29 30 31 32 33 34 35 36
export function assPubQuery(data) {
    return Api.post("/elec/hall/assPubQuery",data)
}

export function fundQuery(data) {
    return Api.post("/elec/hall/fundQuery",data)
}

37 38