Authored by 鲁尚清

vue-press在线操作手册首页布局更新 #2

@@ -36,6 +36,7 @@ module.exports = { @@ -36,6 +36,7 @@ module.exports = {
36 {title: '发布', path: '/version520/20220617'}, 36 {title: '发布', path: '/version520/20220617'},
37 {title: '乙方运维', path: '/version520/operationsMaintenance'}, 37 {title: '乙方运维', path: '/version520/operationsMaintenance'},
38 {title: '首页布局', path: '/version520/indexLayout'}, 38 {title: '首页布局', path: '/version520/indexLayout'},
  39 + {title: '故障管理', path: '/version520/faultDiagnosis'},
39 ] 40 ]
40 } 41 }
41 ] 42 ]
  1 +::: tip 故障管理
  2 +故障诊断配置:<br/>
  3 +故障列表:
  4 +:::
  5 +故障诊断配置:
  6 +![img](../picture/520/fault/fault_set.png) <br/>
  7 +故障列表:
  8 +![img](../picture/520/fault/fault_list.png) <br/>
  9 +
  10 +
  11 +::: tip 功能数据来源
  12 +菜单功能:`user-center`.`sys_menu`<br/>
  13 +:::
  14 +
  15 +
  16 +
  17 +
  18 +
  19 +
@@ -15,6 +15,9 @@ layout-nx: @@ -15,6 +15,9 @@ layout-nx:
15 ::: tip 菜单信息 15 ::: tip 菜单信息
16 菜单接口:/api-user/menus/current?type=1 </br> 16 菜单接口:/api-user/menus/current?type=1 </br>
17 ::: 17 :::
  18 +::: tip 首页功能概述
  19 +首页功能主要实现了对业务、资源及告警数量的总览,它展现的是由一个个卡片组成的页面,卡片的嵌套说明了资源与业务的归属关系,每个按钮分别支持下探查看详情,方便用户对业务资源信息的查看
  20 +:::
18 ::: tip 主体卡片信息 21 ::: tip 主体卡片信息
19 业务卡片及业务统计:/api-web/home/business/getBusHealthResultByAlarm?filter=2&layout=layout <br/> 22 业务卡片及业务统计:/api-web/home/business/getBusHealthResultByAlarm?filter=2&layout=layout <br/>
20 资源卡片及资源统计:/api-web/home/restype/getResTypeHealthResult <br/> 23 资源卡片及资源统计:/api-web/home/restype/getResTypeHealthResult <br/>
@@ -23,6 +26,9 @@ layout-nx主体应用信息:/api-web/home/restype/getResTypeHealthResult <br/> @@ -23,6 +26,9 @@ layout-nx主体应用信息:/api-web/home/restype/getResTypeHealthResult <br/>
23 ::: tip 告警统计信息 26 ::: tip 告警统计信息
24 获取告警统计信息:/api-web/home/alarm/countByAlarmLevel <br/> 27 获取告警统计信息:/api-web/home/alarm/countByAlarmLevel <br/>
25 ::: 28 :::
  29 +::: tip 登录用户信息功能概述
  30 +修改密码:更新用户的登录密码。
  31 +:::
26 ::: tip 登录用户信息来源 32 ::: tip 登录用户信息来源
27 个人信息接口:/api-user/users/1<br/> 33 个人信息接口:/api-user/users/1<br/>
28 扩展信息接口:/api-web/manage/ddic/findSucDdics/user_property <br/> 34 扩展信息接口:/api-web/manage/ddic/findSucDdics/user_property <br/>
@@ -41,13 +47,21 @@ INSERT INTO `cloud_backend_monitor`.`sys_ddic`(`ddicId`, `ddicCode`, `ddicName`, @@ -41,13 +47,21 @@ INSERT INTO `cloud_backend_monitor`.`sys_ddic`(`ddicId`, `ddicCode`, `ddicName`,
41 INSERT INTO `cloud_backend_monitor`.`sys_ddic`(`ddicId`, `ddicCode`, `ddicName`, `ddicDesc`, `ddicSort`, `ddicCategory`, `createTime`) VALUES ('d057168ed5e946c69713d7394f5b7eec', 'stationTime', '驻场时间', '驻场时间,如:长期', 2, 'user_property', '2021-08-19 11:06:47'); 47 INSERT INTO `cloud_backend_monitor`.`sys_ddic`(`ddicId`, `ddicCode`, `ddicName`, `ddicDesc`, `ddicSort`, `ddicCategory`, `createTime`) VALUES ('d057168ed5e946c69713d7394f5b7eec', 'stationTime', '驻场时间', '驻场时间,如:长期', 2, 'user_property', '2021-08-19 11:06:47');
42 48
43 ``` 49 ```
44 -  
45 ::: 50 :::
46 -::: tip 搜索条件来源  
47 -字典:<br/>  
48 -逻辑关系: 51 +::: tip 全局搜索功能概述
  52 +通过关键字对资源、业务、资源类型、告警等进行全局模糊搜索,并可以通过搜索到的数据进行下探,跳转至对应的详情列表信息;
49 ::: 53 :::
50 - 54 +![img](../picture/520/indexLayout/globalSearch.png) <br/>
  55 +::: tip 全局搜索条件来源
  56 +接口:/api-web/home/hasResult?keywords=keywords <br/>
  57 +资源信息:/api-web/home/res-list/all?page=1&limit=7&resName=keywords <br/>
  58 +业务类型信息:/api-web/manage/bustype/page?page=1&limit=7&busTypeName=keywords <br/>
  59 +告警信息:/api-web/home/alarm/alarmListPage?page=1&limit=7&kpiName=keywords <br/>
  60 +:::
  61 +::: tip 消息推送功能概述
  62 +系统中有新的告警产生或者是自动消除的告警时,页面上会进行弹窗提示;
  63 +:::
  64 +![img](../picture/520/indexLayout/message.png) <br/>
51 65
52 66
53 67