Showing
7 changed files
with
53 additions
and
11 deletions
doc/功能优化记录/【负责人】说明1.md
0 → 100644
@@ -20,6 +20,8 @@ url: | @@ -20,6 +20,8 @@ url: | ||
20 | bigScreen: http://127.0.0.1:8081 | 20 | bigScreen: http://127.0.0.1:8081 |
21 | # 一体化视图 | 21 | # 一体化视图 |
22 | ythView: http://192.168.0.69:18089 | 22 | ythView: http://192.168.0.69:18089 |
23 | + # 业务健康度 | ||
24 | + ywHealth: http://80.12.92.117:83 | ||
23 | #流程系统路径,当ssl.enabled=true时,http要改为https,并修改流程nginx的conf文件 | 25 | #流程系统路径,当ssl.enabled=true时,http要改为https,并修改流程nginx的conf文件 |
24 | workflow: http://192.168.0.248:8002 | 26 | workflow: http://192.168.0.248:8002 |
25 | # 积木报表工具 | 27 | # 积木报表工具 |
@@ -658,6 +658,11 @@ layui.define(['view'], function(exports){ | @@ -658,6 +658,11 @@ layui.define(['view'], function(exports){ | ||
658 | }) | 658 | }) |
659 | 659 | ||
660 | } | 660 | } |
661 | + //xwx add 首页增加业务健康度入口 2021-10-25 --start | ||
662 | + , toBiZhEalZhSYS: function () { | ||
663 | + window.open(sessionStorage.getItem("ywHealth") + '/ezsonar/app/ssoLogin/ssoAuth?access_token=' + localStorage.getItem("access_token")); | ||
664 | + } | ||
665 | + //xwx add 首页增加业务健康度入口 2021-10-25 --end | ||
661 | , toBigScreen: function () { | 666 | , toBigScreen: function () { |
662 | //window.open(sessionStorage.getItem("bigScreen") + '?access_token=' + localStorage.getItem("access_token")); | 667 | //window.open(sessionStorage.getItem("bigScreen") + '?access_token=' + localStorage.getItem("access_token")); |
663 | window.open(window.location.origin + '/vue3/index.html#/daping?access_token=' + localStorage.getItem("access_token")); | 668 | window.open(window.location.origin + '/vue3/index.html#/daping?access_token=' + localStorage.getItem("access_token")); |

377 Bytes

456 Bytes
@@ -58,18 +58,38 @@ | @@ -58,18 +58,38 @@ | ||
58 | <li class="layui-nav-item layui-hide-xs" lay-tips="全局搜索"> | 58 | <li class="layui-nav-item layui-hide-xs" lay-tips="全局搜索"> |
59 | <a href="javascript:;" layadmin-event="globalSearch"><i class="layui-icon layui-icon-search"></i></a> | 59 | <a href="javascript:;" layadmin-event="globalSearch"><i class="layui-icon layui-icon-search"></i></a> |
60 | </li> | 60 | </li> |
61 | - <li class="layui-nav-item" lay-tips="一体化视图"> | ||
62 | - <!-- <a href="javascript:;" layadmin-event="toYTHViewScreen"><i class="layui-icon layui-icon-chart-screen"></i></a>--> | ||
63 | - <a href="javascript:;" layadmin-event="toYTHViewScreen" ><img src="/src/style/img/icon-yitihuadaping.png" style="width: 16px;height: 16px"></a> | ||
64 | - </li> | ||
65 | - <li class="layui-nav-item" lay-tips="大屏"> | ||
66 | - <!-- <a href="javascript:;" layadmin-event="toBigScreen"><i class="layui-icon layui-icon-chart-screen"></i></a>--> | ||
67 | - <a href="javascript:;" layadmin-event="toBigScreen" ><img src="/src/style/img/icon-daping.png" style="width: 16px;height: 16px"></a> | ||
68 | - </li> | ||
69 | - <li class="layui-nav-item" lay-tips="电子税务局"> | ||
70 | - <!-- <a href="javascript:;" layadmin-event="toBigScreen"><i class="layui-icon layui-icon-chart-screen"></i></a>--> | ||
71 | - <a href="javascript:;" layadmin-event="toDZSWJScreen" ><img src="/src/style/img/icon-dianzishuiwuju.png" style="width: 16px;height: 16px"></a> | 61 | +<!-- xwx add 首页增加业务健康度入口 2021-10-25 start--> |
62 | + <li class="layui-nav-item" lay-unselect> | ||
63 | + <script type="text/html" template lay-url="{{sessionStorage.getItem('domainName')}}/api-user/users/getUserByToken"> | ||
64 | + <a href="javascript:;"><img src="/src/style/img/icon-1.png" style="width: 16px;height: 16px;"></a> | ||
65 | + {{# | ||
66 | + var roles = ''; | ||
67 | + layui.each(d.object.sysRoles, function(idx, role){ | ||
68 | + roles += role.code+","; | ||
69 | + }); | ||
70 | + }} | ||
71 | + <li><input type="hidden" id="hq_entrance" value="{{roles}}"></li> | ||
72 | + <dl class="layui-nav-child"> | ||
73 | + <dd layadmin-event="toBigScreen" style="text-align: left;"><a><img src="/src/style/img/icon-daping.png" style="width: 16px;height: 16px"> 大屏</a></dd> | ||
74 | + <dd layadmin-event="toDZSWJScreen" style="text-align: left;"><a><img src="/src/style/img/icon-dianzishuiwuju.png" style="width: 16px;height: 16px"> 电子税务大屏</a></dd> | ||
75 | + <dd layadmin-event="toYTHViewScreen" style="text-align: left;"><a><img src="/src/style/img/icon-yitihuadaping.png" style="width: 16px;height: 16px"> 一体化视图</a></dd> | ||
76 | + <dd layadmin-event="toBiZhEalZhSYS" style="text-align: left;"><a><img src="/src/style/img/icon-YWJKD.png" style="width: 16px;height: 16px"> 业务健康度</a></dd> | ||
77 | + </dl> | ||
78 | + </script> | ||
72 | </li> | 79 | </li> |
80 | +<!-- xwx add 首页增加业务健康度入口 2021-10-25 end--> | ||
81 | +<!-- <li class="layui-nav-item" lay-tips="一体化视图">--> | ||
82 | +<!-- <!– <a href="javascript:;" layadmin-event="toYTHViewScreen"><i class="layui-icon layui-icon-chart-screen"></i></a>–>--> | ||
83 | +<!-- <a href="javascript:;" layadmin-event="toYTHViewScreen" ><img src="/src/style/img/icon-yitihuadaping.png" style="width: 16px;height: 16px"></a>--> | ||
84 | +<!-- </li>--> | ||
85 | +<!-- <li class="layui-nav-item" lay-tips="大屏">--> | ||
86 | +<!-- <!– <a href="javascript:;" layadmin-event="toBigScreen"><i class="layui-icon layui-icon-chart-screen"></i></a>–>--> | ||
87 | +<!-- <a href="javascript:;" layadmin-event="toBigScreen" ><img src="/src/style/img/icon-daping.png" style="width: 16px;height: 16px"></a>--> | ||
88 | +<!-- </li>--> | ||
89 | +<!-- <li class="layui-nav-item" lay-tips="电子税务局">--> | ||
90 | +<!-- <!– <a href="javascript:;" layadmin-event="toBigScreen"><i class="layui-icon layui-icon-chart-screen"></i></a>–>--> | ||
91 | +<!-- <a href="javascript:;" layadmin-event="toDZSWJScreen" ><img src="/src/style/img/icon-dianzishuiwuju.png" style="width: 16px;height: 16px"></a>--> | ||
92 | +<!-- </li>--> | ||
73 | <li class="layui-nav-item layui-show-xs-inline-block layui-hide-sm" lay-unselect> | 93 | <li class="layui-nav-item layui-show-xs-inline-block layui-hide-sm" lay-unselect> |
74 | <a href="javascript:;" layadmin-event="more"><i class="layui-icon layui-icon-more-vertical"></i></a> | 94 | <a href="javascript:;" layadmin-event="more"><i class="layui-icon layui-icon-more-vertical"></i></a> |
75 | </li> | 95 | </li> |
@@ -40,6 +40,9 @@ | @@ -40,6 +40,9 @@ | ||
40 | sessionStorage.setItem('tingyun', res1[0].tingyun); | 40 | sessionStorage.setItem('tingyun', res1[0].tingyun); |
41 | sessionStorage.setItem('bigScreen', res1[0].bigScreen); | 41 | sessionStorage.setItem('bigScreen', res1[0].bigScreen); |
42 | sessionStorage.setItem('ythView', res1[0].ythView); | 42 | sessionStorage.setItem('ythView', res1[0].ythView); |
43 | + //xwx add 读取业务健康度页面IP地址 2021-10-25 start | ||
44 | + sessionStorage.setItem('ywHealth', res1[0].ywHealth); | ||
45 | + //xwx add 读取业务健康度页面IP地址 2021-10-25 end | ||
43 | sessionStorage.setItem('workflow', res1[0].workflow); | 46 | sessionStorage.setItem('workflow', res1[0].workflow); |
44 | sessionStorage.setItem('mp3', res2[0].mp3); | 47 | sessionStorage.setItem('mp3', res2[0].mp3); |
45 | sessionStorage.setItem('jimuReport', res1[0].jimuReport); | 48 | sessionStorage.setItem('jimuReport', res1[0].jimuReport); |
-
Please register or login to post a comment