12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /*
- * @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 queryWb2({ data, postParams }) {
- // return httputils.fetchJson(`/data/sms_wbzy/query`, data, postParams)
- // }
- //设备设施-日常维保
- export function queryWb({ getParams }) {
- return httputils.getJson(`/data/sms_wbzy/query`, getParams)
- }
- // 查询位置属于哪个系统
- export function querySystem({ getParams }) {
- return httputils.getJson(`/data/t_system_wzfl/querySystem`, getParams)
- }
|