Commit 634c9c3c3b658bdde81baf319e78c582c2cf670d
1 parent
0960e5ee
update...
Showing
1 changed file
with
9 additions
and
1 deletions
src/main/resources/static/real_control_v2/js/home/layout.js
| ... | ... | @@ -41,7 +41,7 @@ var gb_home_layout = (function () { |
| 41 | 41 | |
| 42 | 42 | //右下角说明icon |
| 43 | 43 | function initRbDxplain() { |
| 44 | - $(document).on('mouseenter', '.home-rb-explain-icon', function() { | |
| 44 | + $(document).on('mouseenter', '.home-rb-explain-icon>.uk-icon-question-circle', function() { | |
| 45 | 45 | $(this).qtip({ |
| 46 | 46 | show: { |
| 47 | 47 | ready: true, |
| ... | ... | @@ -72,6 +72,14 @@ var gb_home_layout = (function () { |
| 72 | 72 | }); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | + //.home-rb-explain-icon .home_alone_page | |
| 76 | + /** | |
| 77 | + * 单屏打开主页 | |
| 78 | + */ | |
| 79 | + $('.home-rb-explain-icon .home_alone_page').on('click', function () { | |
| 80 | + | |
| 81 | + }); | |
| 82 | + | |
| 75 | 83 | //click svg edit icon |
| 76 | 84 | $(document).on('click', '.home-svg-edit-icon', function () { |
| 77 | 85 | open_modal('/real_control_v2/fragments/home/svg_edit.html', {lineCode: $(this).data('line-code')}); | ... | ... |