zhanghua
2022-11-07 14f8b7b32ed9133152780eb072adbc32df2eb242
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import http from '@/http'
 
export default {
    // 获取列表
    getHandheldTerminalList: (params) => {
        return http.get('/sccg/equipment_handheld_terminal/query', params);
    },
    // 新增
    saveHandheldTerminal: (params) => {
        return http.post('/sccg/equipment_handheld_terminal/add', params);
    },
    // 编辑
    updateHandheldTerminal: (params) => {
        return http.put('/sccg/equipment_handheld_terminal/update', params);
    },
    // 删除
    deleteHandheldTerminal: (id) => {
        return http.delete('/sccg/equipment_handheld_terminal/delete/' + id);
    },
};