字典树修改

This commit is contained in:
仲么了
2024-01-24 15:42:54 +08:00
parent bd5102da61
commit bdc5a452f3
9 changed files with 442 additions and 10 deletions

View File

@@ -0,0 +1,33 @@
import request from '@/utils/request'
export function dictTypeList(data: any) {
return request({
url: '/system-boot/dictType/list',
method: 'post',
data: data
})
}
export function dictTypeUpdate(data: any) {
return request({
url: '/system-boot/dictType/update',
method: 'post',
data: data
})
}
export function dictTypeAdd(data: any) {
return request({
url: '/system-boot/dictType/add',
method: 'post',
data: data
})
}
export function dictTypeDelete(data: any) {
return request({
url: '/system-boot/dictType/delete',
method: 'post',
data: data
})
}