123456789101112131415161718192021 |
- import { defHttp } from '/@/utils/http/axios'
- import { ErrorMessageMode } from '/@/utils/http/axios/types'
- enum Api {
- SectionAll = '/contract/section/all'
- }
- /**
- * @description: 获取设计表树结构
- */
- export function sectionAllApi(mode: ErrorMessageMode = 'message') {
- return defHttp.get<LoginResultModel>(
- {
- url: Api.SectionAll
- },
- {
- errorMessageMode: mode
- }
- )
- }
|