123456789101112131415161718192021222324 |
- /*
- * @Author: liangxvying 1615026511@qq.com
- * @Date: 2024-12-09 16:02:16
- * @LastEditors: liangxvying 1615026511@qq.com
- * @LastEditTime: 2024-12-09 16:02:19
- * @FilePath: /zj_dierketang/library/layouts/VabLayoutVertical/api/index.ts
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- import request from '@/utils/request'
- export function getSetting(data: any) {
- return request({
- url: '/base/settings/configs',
- method: 'post',
- data,
- })
- }
- //字典参数列表
- export function getDictList(data: any) {
- return request({
- url: '/base/dicts/configs',
- method: 'post',
- data,
- })
- }
|