Commit 0fe9738c7975bf2667562e1b2cad4ba38ef4667f

Authored by 徐烜
2 parents b45a226c 21467189

Merge branch 'minhang' of http://222.66.0.204:8090//panzhaov5/bsth_control into minhang

src/main/resources/static/pages/forms/export/import_Jdl.xls 0 → 100644
No preview for this file type
src/main/resources/static/real_control_v2/js/modal_extend.js
... ... @@ -7,6 +7,10 @@ $(document).on('hide.uk.modal', '.uk-modal', function () {
7 7 $(document).on('show.uk.modal', '.uk-modal', function () {
8 8 if($('.uk-modal-dialog', this).hasClass('uk-modal-dialog-blank'))
9 9 return;
  10 +
  11 + //临时放过g'ji轨迹回放
  12 + if($(this).attr('id')=='map-playback-modal')
  13 + return;
10 14 //计算居中位置
11 15 var win = $('body');
12 16 var Y = (win.width() - $('.uk-modal-dialog', this).width()) / 2 - 10;
... ...
src/main/resources/static/real_control_v2/mapmonitor/fragments/playback/main.html
1 1 <div class="uk-modal ct-form-modal" id="map-playback-modal">
2   - <div class="uk-modal-dialog" >
  2 + <div class="uk-modal-dialog" style="position: relative !important;margin: 50px auto !important;left: 0px !important;top: 0px !important;">
3 3 <a href="" class="uk-modal-close uk-close"></a>
4 4 <h1>轨迹回放</h1>
5 5 <div class="pb_modal_body"></div>
... ... @@ -22,7 +22,7 @@
22 22 $(this).css('min-width', '1280px');
23 23 });
24 24 $('.pb_modal_body', modal).load('/real_control_v2/mapmonitor/fragments/playback/run.html', function () {
25   - $('#playback_run_body', modal).trigger('init', data);
  25 + $('#playback_run_body', modal).trigger('init', data);
26 26 });
27 27 });
28 28 })();
... ...