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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
| /*
| * @Author: elkers
| * @Date: 2024-08-09 14:29:49
| * @LastEditors: Liuyi candymxq888@outlook.com
| * @LastEditTime: 2024-08-15 16:10:59
| * @FilePath: \water-qinghe-web\src\api\system\user.js
| * @Description: 水表api
| */
|
| import {publicRequest} from '@/utils/request'
|
| export default function waterMeterApi() {
| return {
| //添加水表信息
| create: (data) => {
| return publicRequest({
| url: '/waterMeterInventory/create',
| method: 'post',
| data,
| });
| },
| //修改
| modify: (data) => {
| return publicRequest({
| url: '/waterMeterInventory/modify',
| method: 'post',
| data,
| });
| },
| //删除
| remove: (data) => {
| return publicRequest({
| url: `/waterMeterInventory/remove?id=${data}`,
| method: 'post',
| data,
| });
| },
| //停用
| stop: (data) => {
| return publicRequest({
| url: `/waterMeterInventory/stop?id=${data}`,
| method: 'post',
| data,
| });
| },
| //启用
| enable: (data) => {
| return publicRequest({
| url: `/waterMeterInventory/enable?id=${data}`,
| method: 'post',
| data,
| });
| },
| //分页查询
| search: (data) => {
| return publicRequest({
| url: '/waterMeterInventory/search',
| method: 'post',
| data,
| });
| },
| //获取水表信息
| get: (data) => {
| return publicRequest({
| url: `/waterMeterInventory/get?id=${data}`,
| method: 'get',
| data,
| });
| },
| //获取水表信息,0未使用,1已使用
| getIsUse: (isUse) => {
| return publicRequest({
| url: `/waterMeterInventory/getMeterByIsUse?isUse=${isUse}`,
| method: 'get',
| });
| },
| //根据用户获取所有水表
| getByUser: (id) => {
| return publicRequest({
| url: `/useWaterMeter/list4User/${id}`,
| method: 'get',
| });
| },
| };
| }
|
|