From f8c4da16d2736609b4039cf0a18811a90d960d1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=A5=E5=AF=92=E8=8B=A5=E5=86=B0?= <5433708@qq.com> Date: Sun, 27 Nov 2022 11:15:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E4=BF=AE=E6=94=B9manager?= =?UTF-8?q?=E7=9A=84=E8=AF=B7=E6=B1=82=E6=96=B9=E5=BC=8F=E4=B8=BApost?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/manager.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/api/manager.js b/src/api/manager.js index 16b5b6a..30eee70 100644 --- a/src/api/manager.js +++ b/src/api/manager.js @@ -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' }) };