123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * @Author: your name
- * @Date: 2020-06-28 13:41:05
- * @LastEditTime: 2020-07-06 11:43:33
- * @LastEditors: your name
- * @Description: In User Settings Edit
- * @FilePath: \wanda-bm-guide\src\api\room.js
- */
- import httputils from '@/api/httputils'
- // 机房-机房布置图
- export function xx({ getParams }) {
- return httputils.getJson(`/data/sms_zhsxjl/query`, getParams)
- }
- // 机房-配电室低压柜及出线明细表
- export function queryDygjcxline({ getParams }) {
- return httputils.getJson(
- `/data/sms_dygjcxline
- /query`,
- getParams
- )
- }
- // 机房-机房内核心设备
- export function queryHxsb({ data, postParams }) {
- return httputils.fetchJson(`/data/sms_asset/queryStatistics`, data, postParams)
- }
- // 机房-机房内核心设备钻取表
- export function queryHxsbDetail({ data, postParams }) {
- return httputils.fetchJson(`/data/sms_asset/query`, data, postParams)
- }
- // 机房-维修记录
- export function queryWxjf({ getParams }) {
- return httputils.getJson(`/data/sms_wx/query`, getParams)
- }
- // 机房-维保记录
- export function queryWb({ data, postParams }) {
- return httputils.fetchJson(`/data/sms_wbzy/query`, data, postParams)
- }
- // 查询位置属于哪个系统
- export function querySystem({ getParams }) {
- return httputils.getJson(`/data/t_system_wzfl/querySystem`, getParams)
- }
|