123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- import httputils from '@/api/httputils'
- export function queryLegend({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/graphElement/query`, postParams)
- }
- export function createLegend({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/graphElement/create`, postParams)
- }
- export function updateLegend({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/graphElement/update`, postParams)
- }
- export function deleteLegend({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/graphElement/deleteByFlag`, postParams)
- }
- export function getLegendTree({
- getParams
- }) {
- return httputils.getJson(`/serve/topology-wanda/graphCategory/queryByGroup`, getParams)
- }
- export function queryRelation({
- data,
- postParams
- }) {
- return httputils.fetchJson(`/serve/topology-wanda/graphRelation/query`, data, postParams)
- }
- export function updateRelation({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/graphRelation/update`, postParams)
- }
- export function deleteRelation({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/graphRelation/delete`, postParams)
- }
- export function uploadImg({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/Picture/create`, postParams)
- }
- export function getTransfer({
- getParams
- }) {
- return httputils.getJson(`/serve/topology-wanda/graphElement/search`, getParams)
- }
- export function queryTypeId({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/graphElement/type/query`, postParams)
- }
- export function getVisualization({
- getParams
- }) {
- return httputils.getJson(`/serve/topology-wanda/graphElement/type/search`, getParams)
- }
- export function groupByCategory({
- getParams
- }) {
-
- return httputils.getJson(`/serve/topology-wanda/graphElement/groupByInfoSystem`, getParams)
- }
- export function graphElementSearch({
- postParams
- }) {
- return httputils.postJson(`/serve/topology-wanda/graphElement/search`, postParams)
- }
- export function queryDeviceAndPOsition({
- postParams
- }) {
- return httputils.postJson(`/data/data/t_system_wzfl/query`, postParams)
- }
|