1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import { httpGET, httpPOST } from './common/httpFetch'
|
| export const getAttendanceRuler = body => {
| return httpGET('/data/api-a/rule/query', {
| body
| })
| }
|
| export const addAttendRuler = body => {
| return httpPOST('data/api-a/rule/save', {
| body
| })
| }
|
| export const updateRuler = body => {
| return httpPOST('data/api-a/rule/update', {
| body
| })
| }
|
|