15 lines
355 B
TypeScript
15 lines
355 B
TypeScript
|
|
import createAxios from '@/utils/request'
|
||
|
|
|
||
|
|
export const deleteStatistical = (id) => {
|
||
|
|
let form = new FormData()
|
||
|
|
form.append('id', id)
|
||
|
|
return createAxios({
|
||
|
|
url: '/system-boot/dic/delete',
|
||
|
|
method: 'DELETE',
|
||
|
|
headers: {
|
||
|
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||
|
|
},
|
||
|
|
data: form
|
||
|
|
})
|
||
|
|
}
|