Lou
2024-04-07 b9ebc3c70a2f1c0c40b0d71b497e19ca764ac15f
1
2
3
4
5
6
7
8
9
import http from '@/http/api.js'
 
export const addCheckIn = (params) => {
    return http.request({
        url: '/blade-checkInRecords/checkInRecords/save',
        method: 'POST',
        data: params
    })
}