指标列表

This commit is contained in:
仲么了
2024-01-15 16:15:24 +08:00
parent 646af778e9
commit 0feebcd5ba
12 changed files with 505 additions and 127 deletions

View 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
})
}