123456789101112131415161718192021222324252627282930 |
- import request from "@/tools/request.js";
- // 查询综合指标所有指标
- export function getComprehensiveTargets(data) {
- return request({
- url: `/comprehensive/targets?type=${data.type}`,
- method: "get",
- });
- }
- // 查询综合指标列表
- export function getComprehensiveList(data) {
- return request({
- url: `comprehensive/listing?company=${data.company}&targets=${data.targets}&type=${data.type}`,
- method: "get",
- });
- }
- // 查询状态监视列表
- export function getStatusDatas(data) {
- return request({
- url: `status/monitor?company=${data.company}&type=${data.type}`,
- method: "get",
- });
- }
- // 查询agc监视列表
- export function getAgcDatas(data) {
- return request({
- url: `agc/monitor?company=${data.company}&type=${data.type}`,
- method: "get",
- });
- }
|