| 123456789101112131415161718 |
- /**
- * Common / Base config API module
- * 通用常量配置等相关接口
- */
- import { http } from '~/utils/request'
- import type { ResultVOMapObjectObject } from '~/types/api'
- export const commonApi = {
- /**
- * 获取通用常量配置
- * 对应后端接口:POST /base/consts/config
- * 免登录,按后端要求使用 application/x-www-form-urlencoded
- */
- getBaseConstsConfig() {
- return http.post<ResultVOMapObjectObject>('/base/consts/config')
- },
- }
|