1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| import request from '@/utils/request'
| import { parseStrEmpty } from "@/utils/ruoyi";
|
| // 计量器具档案-配电室管理-分页列表
| export function listDistributionRoom(query) {
| return request({
| url: '/powerDistribution/pageList',
| method: 'get',
| params: query
| })
| }
| // 计量器具档案-配电室管理-全部列表
| export function listDistributionRoomList(query) {
| return request({
| url: '/powerDistribution/list',
| method: 'get',
| params: query
| })
| }
| // 计量器具档案-配电室管理-新增
| export function addDistributionRoom(data) {
| return request({
| url: '/powerDistribution/add',
| method: 'post',
| data: data
| })
| }
| // 计量器具档案-配电室管理-查看
| export function getDistributionRoom(query) {
| return request({
| url: '/powerDistribution/getDetail',
| method: 'get',
| params: query
| })
| }
| // 计量器具档案-配电室管理-编辑
| export function updateDistributionRoom(data) {
| return request({
| url: '/powerDistribution/edit',
| method: 'post',
| data: data
| })
| }
| // 计量器具档案-配电室管理-删除
| export function delDistributionRoom(query) {
| return request({
| url: '/powerDistribution/remove',
| method: 'delete',
| params: query
| })
| }
|
|