Lou
2024-03-22 9f6b35252a6a7e097c6e2b8d6bbb34fdd3a18eba
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
    })
}