指标列表
This commit is contained in:
14
src/api/system-boot/dic.ts
Normal file
14
src/api/system-boot/dic.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user