7 lines
372 B
JavaScript
7 lines
372 B
JavaScript
import { get } from './api'
|
|
|
|
export const getCompanyList = () => get('/business/OdfRooms/getcompany')
|
|
export const getDictUnitType = () => get('/system/dict/data/type/odf_ports_unit_type')
|
|
export const getDictBusinessType = () => get('/system/dict/data/type/odf_ports_business_type')
|
|
export const checkAppVersion = (version) => get('/webapi/CheckAppVersion', { version })
|