|
|
|
@ -191,27 +191,27 @@ export const pointApi = {
|
|
|
|
|
export const dictionaryApi = {
|
|
|
|
|
driverDictionary: () => request({
|
|
|
|
|
url: 'manager_api/manager/dictionary/driver',
|
|
|
|
|
method: 'get'
|
|
|
|
|
method: 'post'
|
|
|
|
|
}),
|
|
|
|
|
profileDictionary: () => request({
|
|
|
|
|
url: 'manager_api/manager/dictionary/profile',
|
|
|
|
|
method: 'get'
|
|
|
|
|
method: 'post'
|
|
|
|
|
}),
|
|
|
|
|
driverAttributeDictionary: () => request({
|
|
|
|
|
url: 'manager_api/manager/dictionary/driver_attribute',
|
|
|
|
|
method: 'get'
|
|
|
|
|
method: 'post'
|
|
|
|
|
}),
|
|
|
|
|
pointAttributeDictionary: () => request({
|
|
|
|
|
url: 'manager_api/manager/dictionary/point_attribute',
|
|
|
|
|
method: 'get'
|
|
|
|
|
method: 'post'
|
|
|
|
|
}),
|
|
|
|
|
deviceDictionary: () => request({
|
|
|
|
|
url: 'manager_api/manager/dictionary/device',
|
|
|
|
|
method: 'get'
|
|
|
|
|
method: 'post'
|
|
|
|
|
}),
|
|
|
|
|
pointDictionary: (parent) => request({
|
|
|
|
|
url: 'manager_api/manager/dictionary/point/' + parent,
|
|
|
|
|
method: 'get'
|
|
|
|
|
method: 'post'
|
|
|
|
|
})
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|