WholeProcessPlatform/frontend/src/api/home/index.ts

11 lines
286 B
TypeScript
Raw Normal View History

import request from '@/utils/request';
2026-05-18 09:09:30 +08:00
// import { SERVICE_URLS } from '../config'; // 引入配置
// 基本情况介绍
export function getBaseWbsb(data: any) {
return request({
2026-05-18 09:09:30 +08:00
url: '/api/dec-lygk-base-server/base/wbsb/GetKendoList',
method: 'post',
data: data
});
}