listenPage () {
window.onbeforeunload = function (e) {
e = e || window.event;
if (e) {
e.returnValue = '关闭提示';
}
return '关闭提示';
};
},
11-29