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
// 宽带与通信管理页面接口
import request from "@/utils/request";
 
// 分页查询
export function broadbandListPage(query) {
  return request({
    url: "/broadband/listPage",
    method: "get",
    params: query,
  });
}
 
// 查询详情
export function getBroadbandDetail(query) {
  return request({
    url: "/broadband/getDetail",
    method: "get",
    params: query,
  });
}
 
// 新增、修改
export function addOrUpdateBroadband(data) {
  return request({
    url: "/broadband/addOrUpdate",
    method: "post",
    data,
  });
}
 
// 删除
export function delBroadband(data) {
  return request({
    url: "/broadband/del",
    method: "delete",
    data,
  });
}