hklhai / dashboard

dashboard
0 stars 0 forks source link

visualize及dashboard更新、删除 #7

Closed hklhai closed 5 years ago

hklhai commented 5 years ago
  1. visualize及dashboard更新、删除
  2. visualizedashboard列表、更新、删除接口
hklhai commented 5 years ago

@aym19900825 以下接口测试均通过

visualize删除

DELETE http://192.168.1.140:8090/show/visualize/17

Return: { "code": 1, "message": "Delete Success!" }

visualize更新

PUT http://192.168.1.140:8090/show/visualize?vid=12 { "type": "line", "visualizename": "BNOP-line_echart", "ytype" : "double", "echarttitle" : "echarttitle", "legendShow" : true, "legendPos" : "legendPos", "legendOrient" : "legendOrient", "tooltipShow" : true }

Return: { "code": 1, "message": "Edit Success!" }

Tip: vid=12表示主键为12

dashboard删除

DELETE http://192.168.1.140:8090/show/dashboard/2

Return: { "code": 1, "message": "Delete Success!" }

dashboard更新

PUT http://192.168.1.140:8090/show/dashboard/?bid=3 { "dashboardname": "上映电影2-update", "dashboardshowname": "cpcc-上映电影2-update", "businesscategory": "市场分析2-update", "type": "update" }

Return: { "code": 1, "message": "Edit Success!" }

Tip: bid=3表示主键为3