devicesmgt/sgzb-screen/src/api/dialog.js

18 lines
665 B
JavaScript
Raw Normal View History

2024-04-24 10:14:36 +08:00
import { POST, GET } from './index.js'
const URL_TYPE_LIST = '/screen/material/returnOfMaterialsInfo/getTypeList'
const URL_DETAILS = '/screen/base/largeScreen/home/getMaterialReqData/details'
const URL_UNIT_LIST = '/screen/material/agreementInfo/getUnitList'
const URL_PROJECT_LIST = '/screen/material/agreementInfo/getProjectList'
// 设备类型
export const getTypeList = params => GET(URL_TYPE_LIST, params)
// 详情
export const getDetails = data => POST(URL_DETAILS, data)
// 往来单位-下拉
export const getUnitList = params => GET(URL_UNIT_LIST, params)
// 工程名称-下拉
export const getProjectList = params => GET(URL_PROJECT_LIST, params)