diff --git a/src/api/system-boot/dictType.ts b/src/api/system-boot/dictType.ts new file mode 100644 index 0000000..9293790 --- /dev/null +++ b/src/api/system-boot/dictType.ts @@ -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 + }) +} \ No newline at end of file diff --git a/src/components/table/header/index.vue b/src/components/table/header/index.vue index 11a46ba..1a9b172 100644 --- a/src/components/table/header/index.vue +++ b/src/components/table/header/index.vue @@ -25,8 +25,8 @@