usrorg.js 261 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11
import Api from "~/service/Api"

// 列表查询关联机构信息
export function queryList(data) {
    return Api.post("/uro/listInfo", data);
}

// 批量更新关联机构信息
export function updateBatch(data){
    return Api.post("/uro/saveInfo",data);
}