Procházet zdrojové kódy

添加弹框关闭事件

lulihong před 6 roky
rodič
revize
0b955ee96e

+ 1 - 0
page/bigData/css/alert.css

@ -125,4 +125,5 @@
  height: 50px;
  margin: 88px auto 0;
  display: block;
  cursor: pointer;
}

+ 1 - 1
page/bigData/html/alert.html

@ -101,7 +101,7 @@
                    </div>
                </div>
            </div>
            <div class="alert_close"></div>
            <div class="alert_close" @click="closeAlertClick"></div>
        </div>
    </div>
    <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=1W9gqPiqc7C9TDliPP8S9Rj9"></script>

+ 3 - 0
page/bigData/js/alert.js

@ -101,6 +101,9 @@ new Vue({
            var type = this.alertType;
            this.alertTime = time;
            this.setAlertChart5(type,time);
        },
        closeAlertClick:function(){
        	parent.layer.closeAll();
        }
    }
});