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
| import request from '@/utils/request'
|
| // 考勤列表
| export function attendancerecordslist(data) {
| return request({
| url: '/project/attendancerecords/list',
| method: 'post',
| data: data
| })
| }
| // 考勤修改
| export function attendancerecordsedit(data) {
| return request({
| url: '/project/attendancerecords/edit',
| method: 'post',
| data: data
| })
| }
| // 考勤修改
| export function attendancerecordsadd(data) {
| return request({
| url: '/project/attendancerecords/add',
| method: 'post',
| data: data
| })
| }
| // 考勤详情
| export function attendancerecordsInfo(id) {
| return request({
| url: '/project/attendancerecords/getInfo/' + id,
| method: 'get'
| })
| }
| // 删除
| export function attendancerecordsDel(id) {
| return request({
| url: '/project/attendancerecords/remove/' + id,
| method: 'get'
| })
| }
|
|