Initial commit, repo migration

This commit is contained in:
unknown
2024-05-14 22:19:14 +07:00
commit b51b940ac4
137 changed files with 19393 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import axios from '../../lib/axios'
const headers = {
headers: { 'Content-Type': 'multipart/form-data' },
}
export const SPMList = async (data) => {
const response = await axios.post('verifikasi/list-spm', data, headers)
return response.data
}
+35
View File
@@ -0,0 +1,35 @@
import axios from '../../lib/axios'
const headers = {
headers: { 'Content-Type': 'multipart/form-data' },
}
export const VerifikasiList = async (data) => {
const response = await axios.post('verifikasi/list', data, headers)
return response.data
}
export const VerifikasiGetOne = async (data) => {
const response = await axios.post('verifikasi/get', data, headers)
return response.data
}
export const VerifikasiUpdate = async (data) => {
const response = await axios.post('verifikasi/update', data, headers)
return response.data
}
export const VerifikasiDelete = async (data) => {
const response = await axios.post('verifikasi/delete', data, headers)
return response.data
}
export const TagihanGet = async (data) => {
const response = await axios.post('tagihan/get', data, headers)
return response.data
}
export const VerifikasiSave = async (data) => {
const response = await axios.post('verifikasi/save', data, { headers: { 'Content-Type': 'Application/json' } })
return response.data
}