同步修改manager的请求方式为post

pull/2/head
若寒若冰 2 years ago
parent a057e822a8
commit f8c4da16d2

@ -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'
})
};

Loading…
Cancel
Save