From 87e331767b3ce416c957b7336e94b9ba208f0efb Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期四, 16 四月 2026 18:08:31 +0800
Subject: [PATCH] 维护
---
src/api/officeManagementApi/checkingIn.js | 40 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 40 insertions(+), 0 deletions(-)
diff --git a/src/api/officeManagementApi/checkingIn.js b/src/api/officeManagementApi/checkingIn.js
new file mode 100644
index 0000000..e42e21d
--- /dev/null
+++ b/src/api/officeManagementApi/checkingIn.js
@@ -0,0 +1,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'
+ })
+}
--
Gitblit v1.9.3