14 lines
228 B
JavaScript
14 lines
228 B
JavaScript
|
|
|
||
|
|
|
||
|
|
|
||
|
|
import {httppost2} from "../utils/request";
|
||
|
|
import apiurl from "./apiurl";
|
||
|
|
|
||
|
|
//预警配置信息
|
||
|
|
|
||
|
|
export async function find(params = {}) {
|
||
|
|
const res = await httppost2(apiurl.warningObj.find,params) || {};
|
||
|
|
|
||
|
|
return res;
|
||
|
|
}
|