From 97f7de30315866c15c1f903c9abec70933716ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=90=E6=B5=A9?= Date: Mon, 29 Jul 2019 10:02:57 +0800 Subject: [PATCH] =?UTF-8?q?Update=20nezha=E6=8E=A5=E5=8F=A3=E6=96=87?= =?UTF-8?q?=E6=A1=A3.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nezha接口文档.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/nezha接口文档.md b/nezha接口文档.md index b888632..7b46b0d 100644 --- a/nezha接口文档.md +++ b/nezha接口文档.md @@ -5020,6 +5020,50 @@ msg |string |R |  } ``` +##### 2.6.1.5 仪表盘位置及宽高修改 + +- **接口说明:** 仪表盘删除 +- **接口地址:** /dashboard/modifyShape +- **请求方式:** DELETE + +###### 请求参数 + +参数名称 |类型 |出现要求 |描述 +:---- |:--- |:------ |:--- +id |Integer |R |id +x |Integer |R |x轴 +y |Integer |R |y轴 +width |Integer |R |宽度 +height |Integer |R |高度 + +示例: + +``` +{ + "id": 35, + "x": 1, + "y": 3, + "width": 100, + "height":200, + +} +``` + +###### 返回结果 + +参数名称 |类型 |出现要求 |描述 +:---- |:--- |:------ |:--- +code |int |R |响应码,详见 附录A +msg |string |R |  + +示例: + +``` +{ + "code": 200, + "msg": "success" +} +``` ## 3 附录